Suppose first i create a new window. Suppose window contains some menu. If i 
click on any menu item then i new dialog dhould be display. I want to add some 
controls(like any button, group) to this dialog.
how to do that?

> On Jun 4, 2007, at 1:00 PM, Manoj wrote:
>
> > hi
> > how to display a new dialog box/window
>
> A new dialog:
>
> fl_message("Hi, I am a dalog");
>
> A new window:
>
> Fl_Window *win = new Fl_Window(300, 200, "I am a new window");
> win->end();
> win->show();
>
>
>
> Matthias
>
> ----
> http://robowerk.com/
>
>

_______________________________________________
fltk-dev mailing list
[email protected]
http://lists.easysw.com/mailman/listinfo/fltk-dev

Reply via email to