English Deutsch Français Italiano Español Português 繁體中文 Bahasa Indonesia Tiếng Việt ภาษาไทย
All categories

I Work with visual basic 6 and try to show menu after click it. so you know after click menu or childs, it dissappear soon, but i never dissapear it

2006-08-08 20:16:50 · 2 answers · asked by nisanol 1 in Computers & Internet Programming & Design

2 answers

Private Sub Form_Load()
'Name of your menu is xfile (see Form1 properties)
xfile.Enabled = False
xfile.Visible = False
End Sub

Private Sub menuOFF_Click()
'button to off
xfile.Enabled = False
xfile.Visible = False
End Sub

Private Sub menuON_Click()
'button to on
xfile.Enabled = True
xfile.Visible = True
End Sub

2006-08-08 23:37:37 · answer #1 · answered by VBACCESSpert 5 · 0 0

http://www.planetsourcecode.com/vb/scripts/BrowseCategoryOrSearchResults.asp?optSort=Alphabetical&txtCriteria=toolbar+menus+&blnWorldDropDownUsed=TRUE&txtMaxNumberOfEntriesPerPage=10&blnResetAllVariables=TRUE&lngWId=1

2006-08-09 07:39:07 · answer #2 · answered by Tanveer Ahmed 3 · 0 0

fedest.com, questions and answers