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 gkittelson 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. melkober

    Focusing on different applications

    As per your request Skip :P Private Sub frmCamCapture_Click() Call CamClick AppActivate "CameraApp", 0 Forms!Capture.SetFocus End Sub Sub CamClick() AppActivate "RemoteCaptureTask", 0 SendKeys "^{F12}", 0 End Sub Mel :)
  2. melkober

    Focusing on different applications

    I have a function that I have programmed to focus on another application outside of Access by sending it a key. Now I am trying to get focus back on the orginal application in Access after a process in the outside application is complete. Any ideas of what I could do?
  3. melkober

    Infinite Forms

    I am designing a search engine with multiple parameters and I am having to display images for the selection of one of these. My problem is that what I have designed so far has a gradual narrowing down process as you go through the different parameters so the number of images that need to...
  4. melkober

    Changing a file address to a number

    I need to change a file address for a picture to a number that is in the file (ie file address:"C:\Solenoid\0002.png" to the number: "2"). Any ideas how this could be done?
  5. melkober

    Having a problem with Maketable queries

    Well, this Maketable query is attached to a form that I have made. When I run the query independantly it will make a table that is not yet in existence (a table I have programmed it to make). But when the query is run from this form (using a DoCmd.OpenQuery statement) the table (whether blank...
  6. melkober

    Having a problem with Maketable queries

    SELECT Solenoidmain.[Mount Configuration], Solenoidmain.Manufacture INTO Manufacture_fill FROM Solenoidmain;
  7. melkober

    Having a problem with Maketable queries

    Sorry, I am pretty new at this. Does that mean I should not use DoCmd?
  8. melkober

    Having a problem with Maketable queries

    When running query from the query menu, it is fine with creating the table when the table does not exist, but when I run it from a DoCmd.OpenQuery it always needs the table to exist. Is there a way around this?

Part and Inventory Search

Back
Top