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 SkipVought 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: *

  1. Kicker

    Paste OLE Object to Windows Directory From Access

    I need to do the same thing, but with a PDF as the OLE. Did you have any luck finding a solution??
  2. Kicker

    Launching pdf from table using code.

    You might try this method if you are still looking, Create form Create control that references OLE object, obj Create an event procedure for form_open that contains the following obj.action = acOLEActivate Have your code open the form to the record containing the pdf you wish to view, and it...
  3. Kicker

    Resizing Text Boxes

    I have several text boxes set to CanGrow/CanShrink in a report. I want to be able to resize all text boxes at runtime to be the same size as the largest text box. Any ideas on how to accomplish
  4. Kicker

    Super .mdw file surpasses all security

    RickSpr, I would be interested in your procedure for manually securing a database.
  5. Kicker

    Launching Adobe from Access

    Thanks for the idea, unfortunately it did not seem to work. Still got a "could not find file" error. If I give the shell the directory path the a separate PDF file, F:\Temp\Test.PDF, the program launches and displays the PDF just fine. If I use a double click or VBA oleActivate...
  6. Kicker

    Launching Adobe from Access

    I use a db that has a number of PDF files stored as OLE. I can launch the Adobe Reader by double clicking on the control in form view, but would like to be able to launch using VB. I can get Adobe to launch using the "Shell" command, but have not been able to specify which PDf I want...
  7. Kicker

    Launching Adobe Reader from ASP

    I have a Access database that stores PDF documents by name. This database serves as the recordsource for a table on an ASP. I would like to launch the Adobe reader by selecting the record name from the ASP table. Anyone have a good method for accomplishing?
  8. Kicker

    Control window size of launched applications

    I have not yet resolved the questions of how to control the window size of launched applications. Kicker
  9. Kicker

    Close form on idle time

    Your use of the timer event to close forms sounds useful. Any chance of sharing some of the code to those of us who are trying to learn more techniques.
  10. Kicker

    open ole object

    You may be able to launch the OLE by using the following, [objectname].action = acOLEActivate I have used this for embedded objects, but not Word documents. Good luck
  11. Kicker

    Control window size of launched applications

    I would like to be able to control the size of an application window that is launched from Access. Specifically, I am viewing PDF documents attached as OLE in my database using the acOLEActivate command. The Adobe window opens up as reduced. I would like to be able to maximize the Adobe...
  12. Kicker

    I am trying to sort a column ascending with zero fields

    Depending upon your final objective, you may be able to accomplish your goal by using VBA to, 1. Create a copy of the original table 2. Create a new column in the copied table 3. Add numbers to the new column that reflect your desired sort order, ie. for every...
  13. Kicker

    Controlling colors from VBA

    I would like to know how to control item (command button) colors from VBA. I can do it using the GetSysColors/SetSysColors route, but lose control if the user clicks out of the application. I would prefer to do it using code that is confined to the app itself. Any ideas

Part and Inventory Search

Back
Top