
Image Picture Property Other Than Number?
Maybe there's an API to compare 2 DC's? You could just for 1ms put both
pictures on the form, etc, etc
Quote:
> No, the image control does not contain a file name. You will need to keep
> track of that your self. Perhaps using the tag property.
> Image1.Picture = LoadPicture("c:\ATE_Station1(bevel).gif")
> Image1.Tag = "c:\ATE_Station1(bevel).gif"
> If Image1.Tag = "c:\ATE_Station1(bevel).gif" Then
> Debug.Print "Ok"
> End If
> David
> > How can I reference an image picture property in an IF statement like
> > this:
> > IF image1.picture = "d:\my.ico" THEN
> > do something
> > I get a number back that differs each time instead of a name when I
> > look at the picture value. Is there a way to refer to the picture by
> > name and make it work?