Re: Couple of Problems...
Quote:
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 -
Quote:
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
Quote:
Originally Posted by khandu
Don't have any experience with Crystal Reports, sorry. :wave:
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.