Search found 14 matches

by TOP-Proto
Fri Jul 21, 2006 12:06 am
Forum: Irrlicht.NET
Topic: Winforms events help
Replies: 11
Views: 3891

sigh nothing happened at all! :/

All i wanna do is capture irr events, how come its not so easy in a winform?
by TOP-Proto
Thu Jul 20, 2006 11:50 pm
Forum: Irrlicht.NET
Topic: Irrlicht in a WinForm!
Replies: 32
Views: 8544

is their a way to use an irrdevice and make that replace a picturebox on a winform so it can get events?
by TOP-Proto
Tue Jul 18, 2006 5:44 pm
Forum: Irrlicht.NET
Topic: Winforms events help
Replies: 11
Views: 3891

i am gonna have another bash at this soon, but any ideas anyone?
by TOP-Proto
Tue Jul 18, 2006 7:35 am
Forum: Irrlicht.NET
Topic: Winforms events help
Replies: 11
Views: 3891

Are you trying to capture events from the WinForm or from the Irrlicht Device? Are you displaying the IrrlichtDevice within a WinForm (like on the form's background or picture box) or in its own window? If you are opening IrrlichtDevice in its own window and capturing events, just follow the tutori...
by TOP-Proto
Tue Jul 18, 2006 7:27 am
Forum: Irrlicht.NET
Topic: Winforms events help
Replies: 11
Views: 3891

i am using a picturebox on my winform. i am trying to capture the device events.

I will try that code when i get home :)
by TOP-Proto
Mon Jul 17, 2006 7:20 pm
Forum: Irrlicht.NET
Topic: Winforms events help
Replies: 11
Views: 3891

ok so in my main class i add

Code: Select all

			WorldEvents MyEvents = new WorldEvents();
			device.EventReceiver = MyEvents;
now shouldnt it just capture events?
my code never seems to go to OnEvent in my other class.. i thought thats how it was supposed to work! ? any ideas?
by TOP-Proto
Mon Jul 17, 2006 6:32 pm
Forum: Irrlicht.NET
Topic: Winforms events help
Replies: 11
Views: 3891

Ok so far im guessing i need to implement the interface public class WorldEvents : IEventReceiver { public WorldEvents() { } public bool OnEvent(Irrlicht.Event evt) { return true; } } Next i need to access the OnEvent from the WorldEvents class within my main class..
by TOP-Proto
Mon Jul 17, 2006 5:56 pm
Forum: Irrlicht.NET
Topic: Winforms events help
Replies: 11
Views: 3891

Winforms events help

Hi guys, im fumbling about at this, and i have come across the events problem with winforms. All i want to do is capture my events (keyboard, mouse, gui) but i dont know too much about events and delegates. How do i capture these events? if someone can point me in the right direction i can continue ...
by TOP-Proto
Mon Jul 10, 2006 8:05 pm
Forum: Irrlicht.NET
Topic: Displaying Irrlicht in a c# picture box
Replies: 17
Views: 8165

thank you very much!

this was bugging me for AGES ;)
by TOP-Proto
Fri Jul 07, 2006 6:45 pm
Forum: Irrlicht.NET
Topic: Irrlicht.Net.DLL throws "System.NullReferenceException&
Replies: 4
Views: 2206

this is a bug with using the opengl renderer, change it to another render type.
by TOP-Proto
Mon Jul 03, 2006 8:39 pm
Forum: Irrlicht.NET
Topic: Exting Irrlicht
Replies: 1
Views: 1211

change from OpenGL to directX. Bug in OGL keeps the driver open on exit.
by TOP-Proto
Mon Jul 03, 2006 8:22 pm
Forum: Irrlicht.NET
Topic: System.AccessViolationException on exit when using OpenGL
Replies: 7
Views: 2585

Did you ever fix this?

I have spent a day closing every possible thing from devices to being null to closing instantiated classes, even garbage collecting, but the only thing that i was able to do was to switch graphics to directX.

Alot of people love OpenGL, anyone know how to fix this one?
by TOP-Proto
Wed Jun 28, 2006 5:33 pm
Forum: Beginners Help
Topic: mouse control/switching to other open applications (in xp)
Replies: 3
Views: 234

how is this possible in a windows form application using a control to render to?
by TOP-Proto
Sun Jun 25, 2006 8:43 pm
Forum: Irrlicht.NET
Topic: WinForm Use Using VS2003.NET
Replies: 1
Views: 1874

WinForm Use Using VS2003.NET

Had some problems with the examples. 1. Add reference to Irrlicht.NET 2. Add Irrlicht into the bin/debug directory 3. Move media into right location 4. Create new WindowsApplication 5. Copy in all code below heres modified example code made to work in 2003.net using System; using System.Drawing; usi...