very new to VB please help with button after message!

steveon

New member
Joined
May 22, 2011
Messages
2
Programming Experience
Beginner
ok so when i add a buttun and finish my application i click debug

so i click on the button i created and it says "email. Send!" in a little box

how do i change this message? i cant see it in proporties

please help:confused:
 
Can you be a bit more specific? What is your button doing when it is clicked? Can you post the code that is executed when the button is clicked?

a little screen pops up and says "email. send!"
What does this screen look like? If its from your code then it was probably created by using the

MsgBox("This is the message that shows up")

'or
MesageBox.Show("This is the message that shows up")
function.


If you can post some code or a screenshot, that would help...
 
Buttons do not inherently display messages in little boxes. If that message is displayed then it's your code that's doing it. You're going to have to provide a much clearer explanantion of EXACTLY what you did, design- and code-wise.
 
Back
Top