Plateforme Level Extreme
Abonnement
Profil corporatif
Produits & Services
Support
Légal
English
Progress Form As VBModal
Message
De
04/10/2000 13:02:28
 
 
À
04/10/2000 11:20:40
Information générale
Forum:
Visual Basic
Catégorie:
Autre
Divers
Thread ID:
00424764
Message ID:
00424853
Vues:
14
In the first form, load the second form
In the Load Event of the second form, do a Me.Show and a DoEvents
Do your stuff in the first form

Ex:
Form1 And Form2
Form1:
Private Sub Command1_Click()
Load Form2
MsgBox "Hello from Form1"
End Sub

Form2:
Private Sub Form_Load()
Me.Show
'SetWindowPos() if you want
DoEvents
MsgBox "Hello from Form2"
End Sub
Hope that this is what you want...
Précédent
Suivant
Répondre
Fil
Voir

Click here to load this message in the networking platform