I've been following a book about C# programming but I've found loading images to be quite tricky... Here's a sample of the code which is causing the issues:
Il.ilLoadImage(path);
Ilu.iluFlipImage();
int width = Il.ilGetInteger(Il.IL_IMAGE_WIDTH);
int height = Il.ilGetInteger(Il.IL_IMAGE_HEIGHT);
int openGLId = Ilut.ilutGLBindTexImage();
System.Diagnostics.Debug.Assert(openGLId != 0);
Il.ilDeleteImages(1, ref devilId);
The code crashes at the Assert function. I've put a couple of checkpoints and it seems the image (which is in both the project and debug folders and in the project itself in VS2010) has loaded well (it has the correct width and length), but the openGLId is set to zero and therefor it crashes at the assertion. I have tried commenting out the assert function and the program runs, but without the images. So, obviously there's an issue with the ilutGLBindTexImage function, but I can't seem to find an answer anywhere...