??is it possible to make a case statement using a value from a form textbox
ie Contains eg Case 49, 57, 63, 45, 39, 32, 48 To 57, 65 To 90, 97 To 122:
This the present code..all working fine
Select Case Asc(Mid(strSource, i, 1))
Case 49, 57, 63, 45, 39, 32, 48 To 57, 65 To 90, 97 To 122:
------------------------
Can I do this.....
Text1.Text =" 49, 57, 63, 45, 39, 32, 48 To 57, 65 To 90, 97 To 122:"
I want to be able to alter the case at Runtime without altering the VB Code
Select Case Asc(Mid(strSource, i, 1))
Case (Text1.Text)
Appreciate any help...!!
Regards Robert