can i create properties like normal About property?
create properties that in property window shows 1 button with 3 dots and clicked show the form. how can i do it?
Printable View
can i create properties like normal About property?
create properties that in property window shows 1 button with 3 dots and clicked show the form. how can i do it?
in your usercontrol, add something like this
Code:Public Sub About()
' You have to identify this sub as the AboutBox...
' 1) From IDE toolbar, select menus: Tools | Procedure Attributes
' 2) In the 'Name' combobox, select About & click the Advanced button
' 3) In the 'Procedure ID' combobox, select 'AboutBox' & done
MsgBox "This is my about box", vbOKOnly, "My Program"
' note that you can display a form instead
End Sub