Asim-GDI GURU Level: Sage Registered: 29-07-2005 Posts: 54
A very stupid Question!
Hello,
I know thats the most stupid question but I'm stuck over it...
Listen now..
Using the LoadPicture() function in VB, one can load any picture into a PictureBox.But how can one remove it? Like emptying the picturebox.How can this be done...
Regards,
Asim Siddiqui...
26-09-2005 at 03:36 PM
|
TJ_01 Level: VB Lord Registered: 24-08-2005 Posts: 320
Re: A very stupid Question!
Its simple as this:
Private Sub Command1_Click()
Picture1.Picture = Nothing
End Sub
____________________________
Im JAMES
28-09-2005 at 05:18 AM
|
Asim-GDI GURU Level: Sage Registered: 29-07-2005 Posts: 54
Re: A very stupid Question!
thanks buddy..problem solved..
28-09-2005 at 09:45 AM
|
TJ_01 Level: VB Lord Registered: 24-08-2005 Posts: 320