VB6 - String Editor

All tutorials created in VB6 to be posted in here.
7 posts Page 1 of 1
Contributors
GoodGuy17
Coding God
Coding God
Posts: 1610
Joined: Mon Sep 07, 2009 12:25 am

VB6 - String Editor
GoodGuy17
Hello! I am going to show you how to make a text string editor in Visual Basic 6! Here are the steps:
1. Open Vb6.
2. Select Standard Exe and click Open
3. Resize your form and make it's caption whatever you want.
4. Make 4 textboxes.
5. Make 1 button
6. Name the textboxes "Low", "Up", "Rev", and "Nor"
7. Make the button's caption "Edit Strings"
8. Right click the form and type:
Code: Select all
Private Sub Command1_Click()
Low.Text = LCase(Nor.Text)
Up.Text = UCase(Nor.Text)
Rev.Text = StrReverse(Nor.Text)
End Sub
9. Make sure there is no errors in the code.
10. Run the program and type something in Nor and click Edit Strings and it will edit the text!
Enjoy!

~GoodGuy17~ :D
User avatar
Nery
Co-Admin Moderator
Co-Admin Moderator
Posts: 1117
Joined: Mon Sep 07, 2009 8:11 pm

Re: VB6 - String Editor
Nery
Hmm nice, a String editor is some kind of thing that puts the string in Uppercase, Lowercase etc, Right?
GoodGuy17
Coding God
Coding God
Posts: 1610
Joined: Mon Sep 07, 2009 12:25 am

Re: VB6 - String Editor
GoodGuy17
Yes, I can't figure out how to make it flip the text.
User avatar
Nery
Co-Admin Moderator
Co-Admin Moderator
Posts: 1117
Joined: Mon Sep 07, 2009 8:11 pm

Re: VB6 - String Editor
Nery
Flip the text... Is that possible?
GoodGuy17
Coding God
Coding God
Posts: 1610
Joined: Mon Sep 07, 2009 12:25 am

Re: VB6 - String Editor
GoodGuy17
I wouldn't know becuase I don't know the code lol
User avatar
Nery
Co-Admin Moderator
Co-Admin Moderator
Posts: 1117
Joined: Mon Sep 07, 2009 8:11 pm

Re: VB6 - String Editor
Nery
I don't think is possible.
GoodGuy17
Coding God
Coding God
Posts: 1610
Joined: Mon Sep 07, 2009 12:25 am

Re: VB6 - String Editor
GoodGuy17
oh. that would be cool if it was possible though!
7 posts Page 1 of 1
Return to “VB6 Tutorials”