this might seem as a silly question, but i dont want to write too many lines of code, is there any way of say declaring a variable and then using a goto statement with that variable, however the label it refers to doesnt have the same name, such as this:
myvariable = "International"
GoTo myvariable
.
.
International:
.
.
Obviously if I leave it like that, i'll get a big error, but i just dont want to write a bunch of If-statments. Thanks
myvariable = "International"
GoTo myvariable
.
.
International:
.
.
Obviously if I leave it like that, i'll get a big error, but i just dont want to write a bunch of If-statments. Thanks