|
-
Jan 28th, 2000, 02:44 AM
#1
Thread Starter
New Member
How can I make my control boxes end my entire program including the background I have, rather than just the one form? I Need it to take the blue fade background i have away. When i click on the cole x button it closes the program but not the blue background. Any idea's?
-
Jan 28th, 2000, 02:54 AM
#2
Place the code to unload any other Forms in this Forms QueryUnload or Unload Event, ie.
Code:
Private Sub Form_Unload()
'Unload Every other Form that is Currently Loaded
Dim oFRM As Form
For Each oFRM In Forms
If oFRM.Name <> Name Then
Unload oFRM
Set oFRM = Nothing
End If
Next
End Sub
------------------
Aaron Young
Analyst Programmer
[email protected]
[email protected]
Posting Permissions
- You may not post new threads
- You may not post replies
- You may not post attachments
- You may not edit your posts
-
Forum Rules
|
Click Here to Expand Forum to Full Width
|