Creating Aboutbox in UserControl

This article show how you can do custom AboutBox in custom control (usercontrol).
Rate Creating Aboutbox in UserControl
(3(3 Vote))
First, add new form to you control and name it "frmAbout". Project the form and in UserControl code add this procedure:
Sub ShowAboutBox()
frmAbout.Show vbModal
End Sub
Then click in upper VB menu Tools -> Procedure Attributes.... Select "ShowAboutBox" in name combo and click "Advanced >>" button. Next you must select AboutBox in ProcedureID and click OK. It's all.
Creating Aboutbox in UserControl Comments
No comments yet — be the first to post one!
Post a Comment