R
Rick Brown
I use Access97 & Win98se.
To simulate a toggle button, I have two Image boxes, one atop the other.
Currently the ON.bmp and OFF.bmp graphics are stored in the same folder as
the MDB file. Since I only have the two graphics, I would like to store them
in a table's OLE Object field.
I can make all this happen except what the syntax is to point toward the
graphics now in the table.
My current code looks like this and now I want it to point to the table so I
can eliminate external baggage.
Private Sub Image38_Click()
If Image38.Picture = "C:\Machine Lineup Tags\OFF.bmp" Then
Image38.Picture = "C:\Machine Lineup Tags\ON.bmp"
Else
Image38.Picture = "C:\Machine Lineup Tags\OFF.bmp"
End If
End Sub
Thanks for any help,
RICK
To simulate a toggle button, I have two Image boxes, one atop the other.
Currently the ON.bmp and OFF.bmp graphics are stored in the same folder as
the MDB file. Since I only have the two graphics, I would like to store them
in a table's OLE Object field.
I can make all this happen except what the syntax is to point toward the
graphics now in the table.
My current code looks like this and now I want it to point to the table so I
can eliminate external baggage.
Private Sub Image38_Click()
If Image38.Picture = "C:\Machine Lineup Tags\OFF.bmp" Then
Image38.Picture = "C:\Machine Lineup Tags\ON.bmp"
Else
Image38.Picture = "C:\Machine Lineup Tags\OFF.bmp"
End If
End Sub
Thanks for any help,
RICK