Me again, I have made a program and created an exe out of it but when I satre it it says form1 where I want it to say Extreamly Annoing Program. How can I fix that?:confused:
Printable View
Me again, I have made a program and created an exe out of it but when I satre it it says form1 where I want it to say Extreamly Annoing Program. How can I fix that?:confused:
Well, you could set the form's caption property to whatever you want using the property window or you could use the following:
replace "form" with your form's name.Code:Private Sub Form_Load()
form.caption = "Hello World!"
End Sub
And you also probably want to correct the spelling of "Extremely" and "annoying" :)