Originally posted by abhijeet_maharana:
Whenever a glut or fltk program is run, a dos window pops up in the background. How can I supress the display of this dos window?
Also, fltk can be used with glut. In that case, the glut window becomes a child of the fltk window. But if there is more than one glut window, the second window onwards appear as separate independent windows and not as fltk child windows. How do I make all of them child windows and position them at different positions in the fltk window?
For a glut window, it is possible to change the function doing the drawing by calling glutDisplayFunc() with the name of the new function. But if the idle function is changed, the program crashes. Reason and solution?
Thanx for any advice offered.