Results 1 to 3 of 3

Thread: Simple Form loading problem

  1. #1

    Thread Starter
    Lively Member
    Join Date
    Mar 2000
    Location
    Malaysia
    Posts
    69
    May someone please tell me what event trigger when a form is visually shown up ? The reason is that I want the form to be displayed before I start doing certain processing. I can't put it in Form Load or Form Activate coz' they will wait for the processing to finish before displaying the form.

    Thanks.

  2. #2

  3. #3
    PowerPoster 2.0 Negative0's Avatar
    Join Date
    Jun 2000
    Location
    Southeastern MI
    Posts
    4,367

    You can also try this

    Put this line in your form load:

    Code:
    Me.Visible = True
    When the form load procedure is run the form is loaded, it is just not set to visible until after the procedure finishes, so putting that line in the load will allow you to see the form whenever you want in the form load.

    [Edited by Negative0 on 06-13-2000 at 03:02 PM]

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  



Click Here to Expand Forum to Full Width