Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations strongm on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Search results for query: *

  1. 28642864

    Network Directory on Shared dbase

    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...
  2. 28642864

    Network Directory on Shared dbase

    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...
  3. 28642864

    Network Directory on Shared dbase

    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...
  4. 28642864

    Runtime Error 94

    Thanks, Didn't want a message to appear or message box, but this worked to avoid the error.
  5. 28642864

    Runtime Error 94

    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
  6. 28642864

    Runtime Error 94

    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...

Part and Inventory Search

Back
Top