Recent content by kdog436089

  1. K

    Get computer name

    Open the database->File->Options->Current Database-> Uncheck the box labeled "Use Access Special Keys"
  2. K

    Adding Images to Database

    I took a look at the combo box that you spoke about, but what i'm looking for is just when the user would open the form, the picture would already be there and no clicking or selection is required. Almost like just adding "insert image" on a local database. I'm not sure if what I am asking...
  3. K

    Adding Images to Database

    Thank you for the quick response. If I used hyperlinks, how would I set that up for the end user? Wouldn't it just create a link to the file location on my computer? Thanks.
  4. K

    Adding Images to Database

    Hello Everyone, I was curious if there is a way to embed images into a database, so that if I emailed it to someone, the images would still be able to open. I tried using a table and adding attachments, but that doesn't seem to work very well. Any other suggestions? Thanks
  5. K

    Save As Dialog Box

    Hello Forum, I have another VBA Question, possibly been answered many times before. I wish to export a report to excel, but I wish to prompt the user to be able to choose where to save the file at. How can I have the "Save As" dialog box pop up, with the filter set to "*.xls"? Thanks in advance.
  6. K

    Export to PDF in Lanscape

    Hello Forum, I am currently trying to export a query to PDF, but I want it to be in landscape. Is this possible? Here is the code that I have so far as well. If Not IsNull(displayQuery) And displayQuery <> "" Then DoCmd.OutputTo acOutputQuery, displayQuery, acFormatPDF, OutputString, True...
Top Bottom