picture in message box

whosyodaddy

Well-known member
Joined
Jun 23, 2003
Messages
83
how do i put a picture in a message box? if this is the code...:

MessageBox.Show("Operation X version 1.00 Copyright 2003")
 
You only have a choice of standard windows message box pictures. To put your you would need to make your own form that looks like a message box and put the picture on it.
 
The only formatting option MessageBox allows is aligning to right, but you try typing spaces in front of message so the visible text would be start somewhere else instead of left because of the spaces you put there. MessageBox wasnt made for anything fancy, just to display some message, it doesnt have much custom functionality.
 
Back
Top