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 bkrike 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
  • Content: Threads
  • Order by date
  1. 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...
  2. 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...
  3. 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...
  4. 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...
  5. 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...
  6. 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??
  7. BubbaJean

    Happy Holidays and thanks for all your help

    Couldn't have done it with out all of you. Thanks you so very much.
  8. 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 =...
  9. 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 =...
  10. 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...
  11. 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...
  12. 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??
  13. BubbaJean

    Best way to Share a Access Database while still in Development

    I built a database, (with the help of many of you)in Access 2000 and now I want to share it out to about 5 to 10 user and let them play around in it, then they'll send me feed back. What is the best way to share the database I'm not ready to split it yet??
  14. BubbaJean

    Option Group SetFocus problem after click events

    Working on Access 2000 I have placef a option group called "SelectProductCategory", On open Form it works great, the defualt setting is Opt1, however, I need the same thing to happen if someone clicks command button i.e., Add Record Undo Record Save Record Etc.. what is the code...
  15. BubbaJean

    Create Auto Numbering Within a Query

    I've been using the Search engine to see if this question ever existed before, but I found nothing. so here goes, I'm using Access 2000 and I'm working in a query, is it possible to create a formula which generates a row number, for each record and records it, for later use?? i.e. 1 2 3 4 etc...
  16. BubbaJean

    Need Help with copy/paste files

    I have a textbox on a form (access2000)that pulls in files from the users C dirve i.e. C:\COdescassy.pdf, now I need a button that will save the pdf drawings into another director as well as the path name this is what I have so far Unbound text box called "txtFileOpen" =...
  17. BubbaJean

    IIf statement Question

    The statement below works great, now the user want to add in additional requirements when selecting items for example if the user select CAPACITORS, [Composition] is enabled, if Composition ="Aluminum", Turn off [TempCoef] if other than "Aluminum" Turn off [RippleCurrent]...
  18. BubbaJean

    Transfering Docs. from Users C drive to common shared file

    I'm using Access 2000, Currently I have a CommonDlg allowing the user to search for PDF. files on his/her C drive, and they copy/paste the URL into a text field on a form, below is the code for this function: this works great, however, now they want the database to copy the pdf drawing from the...
  19. BubbaJean

    Left of Find Function

    I'm trying to pull information from a record and the left function Left([Description2],4) will not work, how do I pull all data before the @ character?? 5A@30VDC 10mA@24VDC 0.01A@24VDC 1A@30VDC etc.... Thanks in advance
  20. BubbaJean

    Need code for saving changes to a table after user selects Add Record

    Need code for saving changes to a table after user selects Add Record command or Close form command the following code works however, it doesn't update to the table unless I force it See below Private Sub ActiveFormula() Select Case Me!txtInvisible Case "BATTERIES&quot...

Part and Inventory Search

Back
Top