If "PathPicture" is a variable, you will have to remove the double quotes around it.
I.E.
stAppName = "......" & PathPicture
Also, if your PathPicture has Spaces in it you may need to include quotes:
stAppName = "......" & chr$(34) & PathPicture & chr$(34)
Mike
You can also use code within the report such as this:
Private Sub Detail_Format(Cancel As Integer, FormatCount As Integer)
Dim t As Integer
If FormatCount = 1 Then
For t = 0 To Forms!form1.Text0.ListCount
If Forms!form1.Text0.Selected(t) Then
Report.CurrentX = 0 'Straight column...
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.