The image on the path is suppose to go into a image frame. I have this module that does this. I tried to just type in the text on the server address \\hiiserv1\acq\image\filename and it didn't work to display in the image frame per the module code below. I also have a hypertext filed which i...
Ken,
I use the following code. I browse to add the path to the text field Sitelink. Is there a way to automate the path on the search instead of typing the \\server\path\filenane?
Thanks
Private Sub Sitelink_Click()
Me.Sitelink = Nz(Me.Sitelink, "")
If Me.Sitelink = "" Then...
I have a text control field that puts a hypertext link to a files (PDF, website, etc) for specific records. It works perfectly, but the issue is the dbase sits on the network and network drive mapping is different for users. The documents and images I use are the same folder but drive letters...
This gives a runtime 13 now
Private Sub Sitelink_Click()
On Error GoTo Err_sitelink_click
Call fHandleFile(Me.Sitelink, WIN_NORMAL)
Err_sitelink_click:
If Nz(Sitelink, "") Then
Sitelink = ""
End If
End Sub
THIS is my code. I get the Invalid use of Null when the field is blank.
Private Sub Sitelink_Click()
Call fHandleFile(Me.Sitelink, WIN_NORMAL)
End Sub
------------------------
Someone suggested the below text to handle this. I'm not a programmer just user. What is NZ? Thanks
Simplicity...
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.