Jogl integration

Hi all

I was using OpenGL with Delphi for a long time…

Now i wanna use opengl with Java. I install Jogl but when i want to drag drop it on my form. I got an error. It says it is not complied. I am new to Java .

I am using Netbeans 6.0 .

Any one have an idea??

How did you “install” JOGL? Did you use our OpenGL Pack?

The Form designers for Java do not support anything else than visual components. There no component concept like in Delphi. JOGL does not provide any component you can drag and drop.
Have a look at tutorials for JOGL or consider using scenegraph engine (e.g. jMonkeyEngine).

The NetBeans OpenGL Pack does.

Hi
I am not expert but have been working with JOGL for sometime and recently over last few months have been using JOGL within the NetBeans 6.0 platform and one thing I found, and it sounds like it might be what you are running into, is that you have to make sure to pick the OpenGL type of project when you create the project you are working on in order for the code to compile correctly without errors. I once tried to just create a normal project and create a form and insert a GLCanvas and got compile errors. If you did not start by creating a OpenGL type of project try doing that and create your form inside that project and see if it compiles correctly.
Edward