|
-
How to control the case of file name being written out by a VB4 program
How to control the case of file name being written out by a VB4 program. Seems i have no control over the Case of the filename. It is outputted as all in Ucase or Lcase in diff PC's. I have posted the prog code below :
Private Sub Command1_Click()
Dim sMsg As String
Dim sFile As String
Dim lTmp As Long
lTmp = FreeFile
sFile = "c:\aBcD.txt"
Open sFile For Output As lTmp
sMsg = "yoooohoooo"
Print #lTmp, sMsg
Close lTmp
End Sub
Posting Permissions
- You may not post new threads
- You may not post replies
- You may not post attachments
- You may not edit your posts
-
Forum Rules
|
|