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. kramerica

    Activate Application by PID - doesn't work if app is in system tray.

    I managed to do this with Autoit. I found a script that had the ability to reference .exe name regardless of the window title. It also had functions that could access the .EXE even if it was on the system tray.
  2. kramerica

    Activate Application by PID - doesn't work if app is in system tray.

    I have an application that I want to do 2 things with. a.) Select it and Send keystrokes. Note After you send keystrokes to the application the window name changes from "Ready" to "Not Ready". When the application is running my script works fine. If I enable the application to minimize...
  3. kramerica

    Method or Data member not found

    Open your database and go to the Debug window and do a full compile.
  4. kramerica

    Change listbox from MultiSelect to regular listbox with code.

    What I ended up doing is loop through to see if they clicked more than one, if they did I pop up a msgbox indicating that this report can only run with 1 item selected. Thanks Randy.
  5. kramerica

    Change listbox from MultiSelect to regular listbox with code.

    I have a listbox displaying data. Initially the listbox is setup as 'Multiselect' - so that multiple items can be reported on. On one of my summary reports I want to disable the multiselect. When I use the code. mslist.multiselect = 0 I get a run-time error 2448 - you can't assign a...
  6. kramerica

    Access Report To Adobe PDF (Not the Standard Question)

    Bridget, Look at the printers that you have installed. What is the name of your PDF Printer? It may be "Adobe PDFWriter"? See what you have it setup as on your system. Kramerica
  7. kramerica

    Flashing Colors

    Use the On Timer event of the form and set the property to 1000 this would be 1 second, then check the value of each textbox that is representing a chute and then based on it's value toggle the color from your forms background color to the color that you want to flash. Kramerica
  8. kramerica

    assign global variable access 2002

    Create a module or put this line of code at the top of your module. This will create a global variable for you. Global AuditGlobal As String Then in the After update property on your listbox add this line of text. auditglobal =me.list100.column(1) Kramerica
  9. kramerica

    Append Query- Key Violation

    just a hunch. When you designed your table you may have fields set with the property "Allow Zero Length" = "NO" If this is true, then when you run your append query if you has some null values for those fields the query would fail. Kramerica
  10. kramerica

    Access Report To Adobe PDF (Not the Standard Question)

    Mike, I am using Acrobat 6.0 Professional. this is the code that I use to dump reports into PDF format. Yes.. it's simple. When I use this method ADOBE uses the Report Caption as the name for the export file. So just before I call the procedure I edit the Reports.caption to the file...
  11. kramerica

    sort on IP Adress at the form or report level.

    I found the code thanks. http://www.tek-tips.com/viewthread.cfm?spid=181&sqid=97503&newpid=181 Kramerica
  12. kramerica

    sort on IP Adress at the form or report level.

    The IP Address field is stored as text. Has anyone coded a routine to sort the records by increasing IP address. 10.30.5.1 10.30.5.10 10.30.5.2 10.30.5.3 10.30.5.4 Currently this is what happens if you sort.. the last octet jumps up with the other's. Any idea's? Kramerica
  13. kramerica

    Where clause in Access VBA with SQL server backend

    try the following change to your SQL statement: Between #10/01/2004# and #9/30/2005# Kramerica
  14. kramerica

    New record overwrites existing record

    Burritonator, If you have a record open on the screen, all you need to do is save it. The command- "DoCmd.GoToRecord , , acNewRec" opens up a new blank record - and it is abandoning your existing record because you have not saved it. You are telling it to create a new blank record, then...
  15. kramerica

    Running multiple queries from code module

    Rasage, Lewds is correct.. it would be better to run them all as SQL statments. Then you wouldn't need to write all those queries. What happens when you just run the queries.. (I've never used the docmd.close on a query before.. only on forms) DoCmd.SetWarnings False DoCmd.OpenQuery...
  16. kramerica

    help on adding image file pathways to a table

    http://www.datastrat.com/DataStrat2.html download the PictureMgr database. It loops through your hard drive and creates a table of your images for you. Kramerica [roll1]
  17. kramerica

    Calculating difference between two dates

    DateStart and DateAgreed overdue=Datediff("d",[datestart],[dateagreed]) [Overdue] will equal the difference in days from field [datestart] and [dateagreed] Kramerica
  18. kramerica

    'Make Table' query in Access XP creates fields as binary type.

    We ended up changing the sql statement to: PARAMETERS [Enter Effective Date MM/DD/YYYY] Text ( 255 ), [Enter Denial Explanation Code] Text ( 255 ); SELECT [Enter Effective Date MM/DD/YYYY] AS [Date], [Enter Denial Explanation Code] AS EX INTO [tblParameters]; By using the parameters it...
  19. kramerica

    'Make Table' query in Access XP creates fields as binary type.

    sql statment: SELECT [Enter Effective Date MM/DD/YYYY] AS [Date], [Enter Denial Explanation Code] AS EX INTO [tblParameters]; If you open a new query in Access 2002 - and paste this in the SQL window - and run it, it will create a new table called "tblParameters' - with 2 fields...
  20. kramerica

    Remedy dates in Access

    Have you tried format(fieldname,"MM/DD/YYYY")... just throwing that out there, I don't use remedy. Can you post a sample of how the remedy data is displayed? Kramerica

Part and Inventory Search

Back
Top