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 Mike Lewis 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: *

  • Users: BubbaJean
  • Order by date
  1. BubbaJean

    Save Report to PDF file Not working

    Tom pdfMachine by BroadGun SW totally ROCKS!!!! Thanks again
  2. BubbaJean

    Save Report to PDF file Not working

    Thanks Tom, I think I'm going to scrap what I have and try what u have suggested...wish me luck
  3. BubbaJean

    Save Report to PDF file Not working

    I did a search on "Save Report to PDF file and I followed the messages and now I'm stuck when I click on my button I get the folowing message box "Error Creating PDF File" Button code below Private Sub SaveReportToPDF_Click() Call PrintReportToPDF("rptRFQResponseLetter", "RFQ Response...
  4. BubbaJean

    adding a pdf extension to a report

    below is code that PHV wrote and it works great, however my users want to add a another feature, save the report as a pdf file, as it stands when the user run this fuction it ask them to select a format MS Excel...HTML ...RTF Snapshot etc.. is there a way to set the report with the pdf...
  5. BubbaJean

    a button that will send email with preloaded info.

    Acccess 2000 I created a button to send a email preloaded with the following information ... auto fill email address ... auto fill subject ... auto attach file below is my poor atempt at coding this Private Sub cmdEmailNew_Click() On Error GoTo Err_cmdEmailNew_Click 'Dim stDocName As...
  6. BubbaJean

    Control box

    working with Acesss 2000 I have a form with two control list based on a queries. the first control box is a simple query, the second is a cross tab query, when I double click on ctlListOne I want the second query to come up with related data this is what I did I placed the following in the...
  7. BubbaJean

    I give !! can't figure out why when I double click on the path nothing

    Below is the code that many of you helped me, it is designed to do the following Take drawings from directory C:\ and Transfer them to Dir F:\ The code copies and paste the drawing and list the new name e.g. FROM: C:\Drawing1.pdf To: F:\Drawing1.pdf What dosn't work is, when the user click on...
  8. BubbaJean

    Little Square box appears when I click on a link

    Anyone ever seen this, I have a Path K:\C0Riser-assy.pdf and when I click on it, It doesn't bring up the drawing, instead is show a tiny box below the hand??
  9. BubbaJean

    Happy Holidays and thanks for all your help

    Couldn't have done it with out all of you. Thanks you so very much.
  10. BubbaJean

    Seeking Help from CodeWarriors strDestinationPath

    Thanks Frink, that did the Trick!!
  11. BubbaJean

    Error "Object Required"

    Hmmmmmmmmmmmmm, I place in the your code and ran it now I get the following error message "Error#:424 Object Required, Copy Failed" below is the revised code Private Sub cmdMoveFiles_Click() On Error GoTo ErrorX Dim x As SHFILEOPSTRUCT Dim StrFile As String StrFile =...
  12. BubbaJean

    Replace old path C:\Path\filename.pdf to new path K:\Path\filename.pdf

    Hmmmmmmmmmmmmm, I place in the your code and ran it now I get the following error message "Error#:424 Object Required, Copy Failed" below is the revised code Private Sub cmdMoveFiles_Click() On Error GoTo ErrorX Dim x As SHFILEOPSTRUCT Dim StrFile As String StrFile =...
  13. BubbaJean

    Replace old path C:\Path\filename.pdf to new path K:\Path\filename.pdf

    The code below moves the drawing from Drive C:\ to Drive K:how do I get the path to recongize the new path e.g. K:\ inplace of C:I'm going crazy, hope someone can help. Private Sub cmdMoveFiles_Click() On Error GoTo ErrorX Dim x As SHFILEOPSTRUCT Dim StrFile As String StrFile =...
  14. BubbaJean

    Seeking Help from CodeWarriors strDestinationPath

    The code below copies and paste drawing from one location to another. e.g. From: C:\filename1.pdf To: K:\filename1.pdf but the field storing this information, still shows the old path C:\filename1.pdf how do I get the field to store the new path location K:\filename1.pdf? Option Compare...
  15. BubbaJean

    Multi CopyMoveFiles Coding get stuck on Null value

    Brilliant!!!!! Thanks it works Great.
  16. BubbaJean

    Multi CopyMoveFiles Coding get stuck on Null value

    If I leave DS_X2 field empty then click on Move PDF Files the Code highlites "StrFile2 = Me.DS_X2.Value" Else If I leave DS_X4 field empty then click on Move PDF Files the Code highlites "StrFile2 = Me.DS_X4.Value"
  17. BubbaJean

    Multi CopyMoveFiles Coding get stuck on Null value

    I ran the code but I got the following error message "Run-time Error '94' Invaild use of Null
  18. BubbaJean

    Multi CopyMoveFiles Coding get stuck on Null value

    Again, with the help of many of you, I'm able to copy files from one dir C;/ to another dir K:/. But if any of the fields are empty, the code stops and goes into debug mode and I'm unable to get the code to handle a null field The only field required is DS_X1 the rest of the fields DS_X2...
  19. BubbaJean

    500,000 KB vs. 20,000 KB

    I was given a Access 2000 database and at the time, the KB was around 20,000. Now its up to 500,000 KB, what causes this and is it dangerous??

Part and Inventory Search

Back
Top