I have a pic box (picDefects) loaded from the following code fragment - it generates a frame with red dots.
Do Until aPoints.EOF
If aListDefects Then
msg = aPoints.rdoColumns("DefectName"
picDefects.CurrentX = AddToX + SX + 500
lastY = lastY + picDefects.TextHeight(msg)
picDefects.CurrentY = lastY
picDefects.Print msg
.
.
.
Loop
My question is: is there a way to examine the contents of the completed picDefects (say a user clicks on a dot) to find out what the contents of the picDefects is at that spot?
Thanks.
-erstout
Do Until aPoints.EOF
If aListDefects Then
msg = aPoints.rdoColumns("DefectName"
picDefects.CurrentX = AddToX + SX + 500
lastY = lastY + picDefects.TextHeight(msg)
picDefects.CurrentY = lastY
picDefects.Print msg
.
.
.
Loop
My question is: is there a way to examine the contents of the completed picDefects (say a user clicks on a dot) to find out what the contents of the picDefects is at that spot?
Thanks.
-erstout