|
-
Nov 4th, 2008, 05:16 PM
#1
Thread Starter
Addicted Member
[RESOLVED]How can i do this? (something.string)
I want to be able to change the thing after the "." An example to show you what i mean:
Dim TheString As String
Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button1.Click
TheString = Text
Label1. TheString = Test
End Sub
Will show up as:
Dim TheString As String
Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button1.Click
TheString = Text
Label1.Text = Test
End Sub
Last edited by n00b scripter; Nov 4th, 2008 at 06:02 PM.
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
|
Click Here to Expand Forum to Full Width
|