adding a button to a message box

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

I am designing an application that allows the user to view information from a
database, loaded onto a form via a datagrid. The user would click on a
'view' button and the information from the datagrid would be loaded into a
message box, via a datareader. Is it possible to add a button in the message
box line of code? The messagebox code is similar to the following: MsgBox
(strOutput), where stroutput is the datareader getting the values from the
appropriate controls. My ultimate goal is to be able to print out the
information contained in the message box.

Thanks,
Dave
 
Is it possible to add a button in the message box line of code?

No, but you can design your own message box like Form with any number
of buttns you want.



Mattias
 
Back
Top