|
-
Jan 18th, 2007, 01:51 PM
#1
Thread Starter
Addicted Member
Couple of Problems...
1) In Menu Editor how do i give a horizontal line between two items
login
------
logout
2) When A person Logout's in the prog all the currently loaded should close.. someone said unload all : now that does not work gives error.. how to unload all MDI child forms
3) If someone can help me in generating Reports.. Please look at via Data environment or Crystal Reports 11.. Please help me..
http://www.vbforums.com/showthread.php?t=447266
Other problems will be posted as they occur
-
Jan 18th, 2007, 01:57 PM
#2
Re: Couple of Problems...
 Originally Posted by khandu
1) In Menu Editor how do i give a horizontal line between two items
login
------
logout
For the caption of the menu just put a single dash -
 Originally Posted by khandu
2) When A person Logout's in the prog all the currently loaded should close.. someone said unload all : now that does not work gives error.. how to unload all MDI child forms
You can try this:
VB Code:
Public Sub UnloadMDI()
Dim objForm As MDIForm
For Each objForm In Forms
Unload objForm
Next
Set objForm = Nothing
End Sub
If that doesn't work (it should), then you can try this instead:
VB Code:
Public Sub UnloadMDI()
Dim objForm As Form
For Each objForm In Forms
If objForm.MDIChild = True Then
Unload objForm
End If
Next
Set objForm = Nothing
End Sub
 Originally Posted by khandu
Don't have any experience with Crystal Reports, sorry.
-
Jan 18th, 2007, 01:58 PM
#3
Re: Couple of Problems...
Put a dash in the caption line.
Typically I will name my separators mnuSepX where X equals the next sequential seperator.
Also, you have to indent the menu item.
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
|