Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations strongm on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Error dynamically setting button and maskedtextbox property

Status
Not open for further replies.

malaygal

IS-IT--Management
Feb 22, 2006
192
US
I create the following button and maskedtextbox dynamically, as well as other controls.

cntrl = New MaskedTextBox()
newControl(cntrl, "mtbSSN", "", "000-00-0000")

cntrl = New Button()
newControl(cntrl, "btnSearchSSN", "Search SSN)

Private Sub newControl(ByVal ControlType As Control, _
ByVal ControlName As String, _
ByVal ControlText As String, _
ByVal xLoc As Integer, _
Optional ByVal strMask As String = "")


Me.Controls.Add(ControlType)

With ControlType
.Name = ControlName
.Font = New System.Drawing.Font("Verdana", 9.0!)
.Size = New System.Drawing.Size(40, 20)
.AutoSize = True
End With

If TypeOf ControlType Is MaskedTextBox Then
ControlType.Mask = strMask]
ElseIf TypeOf ControlType Is Label Then
ControlType.Text = ControlText
ElseIf TypeOf ControlType Is Button Then
ControlType.Text = ControlText
ControlType.FlatStyle = FlatStyle.Flat

Getting these errors:

'Mask' is not a member of 'System.Windows.Forms.Control'
'Flatsyle' is not a member of 'System.Windows.Forms.Control'


when setting properties for maskedtextbox and button.

Any help will be greatly appreciated.
 
Found solution:

Dim mtb = DirectCast(ControlType, MaskedTextBox)
mtb.Mask = strMask

Dim btn = DirectCast(ControlType, Button)
btn.FlatStyle = FlatStyle.Flat
 
You can also do this without the DirectCast. Just Dim the variables as the Type you want:

Dim mtb As MaskedTextBox
Dim btn As Button



I used to rock and roll every night and party every day. Then it was every other day. Now I'm lucky if I can find 30 minutes a week in which to get funky. - Homer Simpson

Arrrr, mateys! Ye needs ta be preparin' yerselves fer Talk Like a Pirate Day!
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top