Hmmm... this might work for you...
So no delay in the rendering of the graphic and if you want to display it then...Code:Public P As StdPicture Public Function CanLoadPicture(PathToPic) As Boolean On Error GoTo CanLoadPictureError Set P = LoadPicture(PathToPic) CanLoadPicture = True Exit Sub 'if we are here then there was an error... End Sub
Code:Image1.Picture = P 'Picture1.Picture = P
Good Luck




Reply With Quote