gusbrunston
Programmer
s-) (-:
Hi,
I apologize for not being more familiar with VB, but in the meantime could someone help with this? (If there is no check number, then display the deposit number; if there is no deposit number, then display the other number; if there is no number at all; then display blank.)
If someone could translate my pigeon basic into VB I would be so grateful, and I solemnly promise...or perhaps...
Yep, I'm goin' nuts.
s-) (-:
Gus Brunston
An old PICKer
padregus@home.com
Hi,
I apologize for not being more familiar with VB, but in the meantime could someone help with this? (If there is no check number, then display the deposit number; if there is no deposit number, then display the other number; if there is no number at all; then display blank.)
Code:
If CheckNumber = true then
txtboxID = CheckNumber
Else if
DepositNumber = true then
txtboxID = DepositNumber
Else if
OtherNumber = true then
txtboxID = OtherNumber
Else
txtboxID = ""
End if
If someone could translate my pigeon basic into VB I would be so grateful, and I solemnly promise...or perhaps...
Code:
Begin Case txtboxID
Case CheckNumber
txtboxID = CheckNumber
Case DepositNumber
txtboxID = DepositNumber
Case OtherNumber
txtboxID = OtherNumber
Case 1
txtboxID = "Punt"
End Case
Yep, I'm goin' nuts.
s-) (-:
Gus Brunston
An old PICKer
padregus@home.com