Wednesday, May 30, 2012

LoanPayment & ComboBoxes

Today I found out that information that is entered in a combobox is actually treated as a string as opposed to the textbox format, where the property of text from a textbox can be treated as a Textbox.

GetPercentAmount(Me.cboRate.Text, rate, validData)


Sub GetDollarAmount(ByVal txtUserData As TextBox, ByRef dollars As Decimal, _
    ByRef isValid As Boolean)



Sub GetPercentAmount(ByVal cboUser As String, ByRef percent As Double, ByRef isValid _
    As Boolean)

No comments:

Post a Comment