Other then changing the background of the MDI form using the "Properties - Picture" to select the background picture, is there a way to do it through coding ??
If there is, can i know what is the code that i can use to do that ???
Thanks.
Printable View
Other then changing the background of the MDI form using the "Properties - Picture" to select the background picture, is there a way to do it through coding ??
If there is, can i know what is the code that i can use to do that ???
Thanks.
VB Code:
MDIForm1.Picture = LoadPicture("C:\MyPicture.bmp")
That should work.