Link to home
Start Free TrialLog in
Avatar of Ernesto
ErnestoFlag for Mexico

asked on

want to display the ? icon in messagebox

hi all
how do i display the ? icon in a messagebox?

  DialogResult = CType(MsgBox("Una vez generada la órden de compra ya no se podrá modificar la Requisición, Proceder?", MsgBoxStyle.YesNo, MessageBoxIcon.Question), Windows.Forms.DialogResult)
       

tsm
Avatar of Ernesto
Ernesto
Flag of Mexico image

ASKER

is this

DialogResult = CType(MsgBox("Una vez generada la órden de compra ya no se podrá modificar la Requisición, Proceder?", vbQuestion, MsgBoxStyle.YesNo), Windows.Forms.DialogResult)

is this but i want the word "Aviso" in the top of the mssgbox
tsm
ASKER CERTIFIED SOLUTION
Avatar of Argenti
Argenti
Flag of France image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
Avatar of Ernesto

ASKER

Tsm, yes is vb.net
this works for me, but i want to add the word "Aviso", where i need to put it?

DialogResult = CType(MsgBox("Una vez generada la órden de compra ya no se podrá modificar la Requisición, Proceder?", vbQuestion, MsgBoxStyle.YesNo, "aviso"), Windows.Forms.DialogResult)

In where is put marks error
tsm
DialogResult = CType(MsgBox("Una vez generada la órden de compra ya no se podrá modificar la Requisición, Proceder?", vbQuestion + vbYesNo, "aviso"), Windows.Forms.DialogResult)

http://www.thevbprogrammer.com/VBNET_08/08-00A-Msgbox.htm