Search found 14 matches

by geronika2004
Fri Sep 11, 2009 9:31 am
Forum: FAQs, Tutorials, Howtos, and external tool lists
Topic: SMART TUTORIAL
Replies: 8
Views: 9722

I have added my new smart tutorials :) ,
Later I will add new things :wink:
by geronika2004
Mon Jul 20, 2009 8:22 am
Forum: FAQs, Tutorials, Howtos, and external tool lists
Topic: SMART TUTORIAL
Replies: 8
Views: 9722

hybrid
Thank you for your comment.
Of course, if it is helpful I will extend examples set and will apply necessary correctings :)
[/quote]
by geronika2004
Mon Jul 20, 2009 6:36 am
Forum: FAQs, Tutorials, Howtos, and external tool lists
Topic: SMART TUTORIAL
Replies: 8
Views: 9722

SMART TUTORIAL

I have put everything together, maybe this smart tutorial will be helpful :) WRITE IMAGE TO FILE: IImage* image = Device.driver->createScreenShot(); if (image) { Device.driver->writeImageToFile(image, "c:\\images\\dump.jpeg"); Device.driver->writeImageToFile(image, "c:\\images\\dump.p...
by geronika2004
Wed Dec 24, 2008 6:02 am
Forum: Beginners Help
Topic: Problem with mouse events
Replies: 4
Views: 412

event event.MouseInput.Event == EMIE_LMOUSE_PRESSED_DOWN is generated only one time when you click left button MouseLeftHeld becomes 1 and MouseLeftClicked becomes also 1. The execution of event stops, so this code will never be checked: else { MouseLeftClicked = 0; }
by geronika2004
Mon Dec 22, 2008 6:09 pm
Forum: Project Announcements
Topic: Box2d Wrapper
Replies: 14
Views: 4102

box2d

Dear all,

the link provided above is dead

I can not download irrbox2d.h wrapper, the link is dead. Please, resubmit it for download :(

Thank you in advance.
by geronika2004
Fri Aug 15, 2008 9:57 am
Forum: Bug reports
Topic: FORUM ERROR - SEARCH IS CORRUPTED !!!!
Replies: 0
Views: 150

FORUM ERROR - SEARCH IS CORRUPTED !!!!

To admin staff - Please, correct this error !!! It occurs when I am trying to look for anything on current forum. :!: [b]General Error [/b] Could not obtain matched posts list DEBUG MODE SQL Error : 1016 Can't open file: 'phpbb_search_wordlist.MYI' (errno: 145) SELECT m.post_id FROM phpbb_search_wo...
by geronika2004
Fri Aug 15, 2008 9:57 am
Forum: Bug reports
Topic: FORUM ERROR - SEARCH IS CORRUPTED !!!!
Replies: 0
Views: 138

FORUM ERROR - SEARCH IS CORRUPTED !!!!

To admin staff - Please, correct this error !!! It occurs when I am trying to look for anything on current forum. :!: [b]General Error [/b] Could not obtain matched posts list DEBUG MODE SQL Error : 1016 Can't open file: 'phpbb_search_wordlist.MYI' (errno: 145) SELECT m.post_id FROM phpbb_search_wo...
by geronika2004
Fri Aug 15, 2008 9:56 am
Forum: Bug reports
Topic: [fixed] FORUM ERROR - SEARCH IS CORRUPTED !!!!
Replies: 0
Views: 182

[fixed] FORUM ERROR - SEARCH IS CORRUPTED !!!!

To admin staff - Please, correct this error !!! It occurs when I am trying to look for anything on current forum. :!: [b]General Error [/b] Could not obtain matched posts list DEBUG MODE SQL Error : 1016 Can't open file: 'phpbb_search_wordlist.MYI' (errno: 145) SELECT m.post_id FROM phpbb_search_wo...
by geronika2004
Sun Jan 28, 2007 6:35 am
Forum: Irrlicht.NET
Topic: Help!!
Replies: 4
Views: 1669

There are no available tutorials regarding Irrlicht.net (C#) besides: 1. http://irrlicht.sourceforge.net/docu.net/index.html API.NET 2. http://irrlicht.sourceforge.net/downloads.html SDK 2. This forum. If people on this forum be more active and post simple working codes, it will be easy everybody to...
by geronika2004
Sun Jan 28, 2007 6:22 am
Forum: Irrlicht.NET
Topic: C# - Detect Keyboard Input
Replies: 6
Views: 3454

Eventually I have solved my problem, the reason of application failure was following:

I WAS USING VISUAL STUDIO 2003

I installed new version VISUAL STUDIO 2005 and now everything works :)

Thanks everybody :wink:
by geronika2004
Wed Jan 24, 2007 10:09 am
Forum: Irrlicht.NET
Topic: C# - Detect Keyboard Input
Replies: 6
Views: 3454

my code says:

An unhandled exception of type 'System.NullReferenceException' occurred in irrlicht.net.dll

Additional information: Object reference not set to an instance of an object.
by geronika2004
Wed Jan 24, 2007 8:17 am
Forum: Irrlicht.NET
Topic: C# - Detect Keyboard Input
Replies: 6
Views: 3454

I tried everything, but I still can't make it work :( :( :( Please, can anybody rewrite this code to me ??? I will appreciate deeply. using System; using Irrlicht; using Irrlicht.Video; using Irrlicht.Core; using Irrlicht.Scene; namespace HelloWorld { public class MyEventReceiver : IEventReceiver { ...
by geronika2004
Tue Jan 23, 2007 6:38 pm
Forum: Irrlicht.NET
Topic: C# - Detect Keyboard Input
Replies: 6
Views: 3454

Kiwsa, Thank you, but I still have problem. I removed all unnecessary code and this code works, I mean sintax is correct, but keyboard still doesn't work :( :( :( using System; using Irrlicht; using Irrlicht.Video; using Irrlicht.Core; using Irrlicht.Scene; namespace HelloWorld { class Example : IEv...
by geronika2004
Mon Jan 22, 2007 5:50 pm
Forum: Irrlicht.NET
Topic: C# - Detect Keyboard Input
Replies: 6
Views: 3454

C# - Detect Keyboard Input

:( Please, help me. I looked through entire forum and I still have a problem with keyboard. Now my code complains: "Object reference not set to an instance of an object". using System; using Irrlicht; using Irrlicht.Video; using Irrlicht.Core; using Irrlicht.Scene; namespace HelloWorld { /...