Benoît Minisini wrote:
> 
> You enter the event loop once the Main() function is finished. Why do you
> want 
> to display a form before? It's weird too!
> 

I want the form to display as soon as the program is run, basically.

I have the Form_Open procedure immediately execute several procedures, which
takes about 20 seconds, but would like the form to show before the
procedures execute so the user knows the program has been run. GTK shows the
form as soon as I do FormMain.Show/WAIT 0.5, but QT doesn't show the form
until it has exited Form_Open. Here's the code:

PUBLIC SUB Form_Open()

  ' General initialization.

  ' Show the main form.
  FormMain.Show
  WAIT 0.5

  ' Create config directories.
  IF Exist(User.Home & "/.Sanctimonia") = FALSE THEN MKDIR User.Home &
"/.Sanctimonia"

  ' Create temporary elevation files.
  Elevation.Temp_File_Create
  Tile.Temp_File_Create

  ' Update preview with old data from elevation file.
  Preview.Refresh

  ' Load elevation template into preview cache (remove when finished
debugging).
  Elevation.Template_Load("default.png")

END

I wonder if ultimately there is a way to better ensure consistency between
GTK and QT. I don't know how each is specifically implemented, but I've
noticed several discrepancies between the two along GAMBAS's development.

-----
Kevin Fishburne, Eight Virtues
www:  http://sales.eightvirtues.com http://sales.eightvirtues.com 
e-mail:  mailto:sa...@eightvirtues.com sa...@eightvirtues.com 
phone: (770) 853-6271
-- 
View this message in context: 
http://old.nabble.com/2-2.21.0%3A-CheckBox_Click-event-raises-twice-on-mouseclick%2C-once-on-space-bar-tp29263179p29271697.html
Sent from the gambas-user mailing list archive at Nabble.com.


------------------------------------------------------------------------------
The Palm PDK Hot Apps Program offers developers who use the
Plug-In Development Kit to bring their C/C++ apps to Palm for a share 
of $1 Million in cash or HP Products. Visit us here for more details:
http://ad.doubleclick.net/clk;226879339;13503038;l?
http://clk.atdmt.com/CRS/go/247765532/direct/01/
_______________________________________________
Gambas-user mailing list
Gambas-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/gambas-user

Reply via email to