button one
Option Explicit
Public UserInput As String
Public Cancelled As Boolean
Private Sub btnOK_Click()
Me.UserInput = Me.txtBulk.Text
Me.Cancelled = False
Me.Hide
End Sub
Private Sub btnCancel_Click()
Me.UserInput = ""
Me.Cancelled = True
Me.Hide
End Sub
Comments
Post a Comment