Search results

  1. S

    Prompt Export Save Location

    Hi there, i have an export to txt file on my form which uses the following code (sorry yet to hit post code to do it properly) :( Private Sub redlineBtn_Click() On Error GoTo Err_redlineBtn_Click Dim jobID As Long jobID = Me.jobNumber DoCmd.OpenReport "rpt_redlineText"...
  2. S

    Google Maps Script Error

    Hi guys, been away from the site for a long time We have a form with the web browser control which links to Google maps and jumps to that location on the map by the lat and long and updates as you jump to each record. (The control is on a form and is only used there) The map itself works...
  3. S

    Wildcards & Multiple folder locations

    I have the following code that runs on a button, is it possible to replace siteName in the file paths with a wildcard (due to the mass spelling errors on our server)?? Thanks in advance Private Sub Document_File_Click() Dim str_folder As String Dim str_folder1 As String Dim siteName As String...
  4. S

    Run time error 424

    It's been a long week and i'm falling asleep at my desk. i keep getting this error with this code, any ideas? :banghead: Private Sub Command63_Click() DoCmd.OpenForm "frm_history" frm_history.Filter = "siteID = " & Me.siteID & "'" frm_history.FilterOn = True End Sub Using access 2010 and cheers
Top Bottom