Re: Create window? How?
- Posted by irv mullins <irvm at ellijay.com> Oct 04, 2004
- 433 views
gunnar wrote: > > How do I create a window whith buttons scrollers and so on? > If you're using EuGTK, it's easy: atom win, btn win = window("Title goes here") btn = button("Push me!") addto(win,btn) show(win) main() If you're using Win32Lib, then get Judith's IDE, and drop a button where you want it on the window. Both Win32Lib and EuGTK come with short example programs using each of the controls, including scrolled windows, sliders, etc. Without a library such as Win32Lib or EuGTK, creating a Windows window takes about 100 lines of code. Irv