VB-6 has the UCase() function.
Dim UserEntry As String
UserEntry = InputBox( The Prompt, The Title, The Default )
If LenB( UserEntry ) <> Num_Zero Then
UserEntry = UCase( UserEntry )
End If
All The Best,
Steve
.
.
________________________________________
From: helpwithvb%40yahoogroups.com">helpwithvbyahoogroups.com
[mailto: helpwithvb%40yahoogroups.com">helpwithvbyahoogroups.com]
On Behalf Of Donald Gaither Sent: Tuesday, October 02, 2007 9:05 PM
To: helpwithVB%40yahoogroups.com">helpwithVByahoogroups.com
Subject: [helpwithvb] Convert to Upper case
To the Help Club,
I need to know how to convert the results
from an "input box" query to uppercase letters.
Can you help ?