Forgive me all for being new and also forgive me for being a beginner at VB.net.
Basically I'm trying to code a program to output class names for a game which then allows the user to copy and paste the string of class names into the game itself.
The template for class names in the game look like this ["name",quantity];
So in the code for btn_add I have (which outputs to a text box):
Not the "s that I'm looking for.
How can I change the ' into "s without VB.net throwing up errors?
Thank you all.
Basically I'm trying to code a program to output class names for a game which then allows the user to copy and paste the string of class names into the game itself.
The template for class names in the game look like this ["name",quantity];
So in the code for btn_add I have (which outputs to a text box):
Which in turn looks like: ['one',1];txt_name.Text = ("['" & name & "'" & "," & quantity & "]" & ";" & " ") + txt_name.Text
Not the "s that I'm looking for.
How can I change the ' into "s without VB.net throwing up errors?
Thank you all.