Symbianize Forum

Most of our features and services are available only to members, so we encourage you to login or register a new account. Registration is free, fast and simple. You only need to provide a valid email. Being a member you'll gain access to all member forums and features, post a message to ask question or provide answer, and share or find resources related to mobile phones, tablets, computers, game consoles, and multimedia.

All that and more, so what are you waiting for, click the register button and join us now! Ito ang website na ginawa ng pinoy para sa pinoy!

[req] visual basic 2010 about msgbox

Kenjiken

Apprentice
Advanced Member
Messages
63
Reaction score
0
Points
26
can u put image as a background in msgbox that pop up welcome example in login form?
 
you can create your own form with costomized background image and use it as messagebox..
 
how can i do that?
 
Create a form window, design it to behave and look like a "messagebox", since hindi mo pwede i-redesign ang messagebox mo to have custom backgrounds and designs.
 
tama si jskhulitz. Use form window instead.

Instead na messagebox ang gamitin mo, ganito gawin mo.

Code:
msg = msgbox("Proceed?",vbQuestion+vbYesNo,"Hmm")
 if msg = vbyes then
    'call your created form window here.

end if
 
Back
Top Bottom