Recent content by stan-ee

  1. S

    Shortcut to clearing a form?

    I am organizing an old database that has some duplicate/redundant entries. Currently, when I find a redundant entry I manually hit delete in each text box to clear the form. I know you can just delete an entire entry but then I believe I lose the ability to reuse the particular serial number...
  2. S

    How to display JPG images

    I actually found a perfect thread and that code worked great! With a few modifications for my personal file configurations, it worked without a hitch! heres the address if anyone else is having difficulty solving this problem...
  3. S

    Best Method and/or Tips in storing JPEG's

    I actually found a perfect thread and that code worked great! With a few modifications for my personal file configurations, it worked without a hitch! heres the address if anyone else is having difficulty solving this problem...
  4. S

    Open pdf file from info in textbox on form

    horray! this was perfect and exactly what I needed! the code works great.
  5. S

    How to display JPG images

    Ok, that is helpful. I checked the original location I found the code but it doesnt say anything about defining said function. Here is the link, and look at the first response to the thread question. (you will have to copy and paste the link casuse the forum wont let me paste links until ive...
  6. S

    How to display JPG images

    Well, following a recommendation from another thread, here is my code Private Sub View_Drawing_Click() Dim FileName As String FileName = Me.DrawingName.Value Call OpenDocument(("S:\Engineering\AutoCad\bases" & FileName & ".pdf")) End Sub I am using a Command button in my DB form to run...
  7. S

    How to display JPG images

    Could you shed some light on how to accomplish this coding? I am working on this same idea except with pdf's and am having issues.
  8. S

    Best Method and/or Tips in storing JPEG's

    I am trying to modify this for opening a pdf document but when I used this in the onclick event of a command button, I was given an error message that said: "Compile Error: Sub or Function not defined," refering to the OpenDocument function. Could you help me on defining that?
Back
Top Bottom