T
Telesphore
I use the following code with success for reports [rptStudentsClassList] on
students with their picture:
Private Sub Detail_Format(Cancel As Integer, FormatCount As Integer)
On Error Resume Next
If IsNull(Me.txtImageName) Then
Me.ImageFrame.Picture = ""
Me.ImageFrame.Visible = False
Else
Me.ImageFrame.Picture = Me.txtImageName
Me.ImageFrame.Visible = True
End If
End Sub
I would like to use the same code to add the picture of each student on an
existing form [frmStudentInscription]
What should I do?
Many thanks
students with their picture:
Private Sub Detail_Format(Cancel As Integer, FormatCount As Integer)
On Error Resume Next
If IsNull(Me.txtImageName) Then
Me.ImageFrame.Picture = ""
Me.ImageFrame.Visible = False
Else
Me.ImageFrame.Picture = Me.txtImageName
Me.ImageFrame.Visible = True
End If
End Sub
I would like to use the same code to add the picture of each student on an
existing form [frmStudentInscription]
What should I do?
Many thanks