28.01.2012, 04:55
Hey im making a simple program in Visual Basics that will soon be released. Im having some troubles though.
My problem is, im trying to make it show the 'code' when you click generate.
Well, its working, but its only showing one line. Im not sure why it only shows one line...
Maybe im missing something at the end of the line?
Heres part of the code
But when i click Button5 (generate) i get only this line in the TextBox14:
Any help?
My problem is, im trying to make it show the 'code' when you click generate.
Well, its working, but its only showing one line. Im not sure why it only shows one line...
Maybe im missing something at the end of the line?
Heres part of the code
Код:
Private Sub Button5_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button5.Click TextBox14.Text = "if(strcmp(cmdtext," + TextBox1.Text + ") == 0)" TextBox14.Text = "SetPlayerPos(playerid," + TextBox10.Text + "," + TextBox11.Text + "," + TextBox12.Text + ");" End Sub
Код:
TextBox14.Text = "SetPlayerPos(playerid," + TextBox10.Text + "," + TextBox11.Text + "," + TextBox12.Text + ");"