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 Mike Lewis 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: *

  • Users: KF
  • Order by date
  1. KF

    RowNumber in a query

    Go to thread701-245983 Tranman just helped me with this same thing. KF,
  2. KF

    Access Query to set criteria to select multiple data from one field

    Build your query to incude two of the ID number fields and alias the names like...(ID1) AND (ID2) then enter into the criteria row of ID1 [Enter ID1], then on the second criteria row of ID2 [Enter ID2]. Providing both of your entries have made a purchase you will see them listed in your query...
  3. KF

    Test if query returns any results

    Have you tried using the HasData property. Search Access help on this property. I think it will do what you want. KF,
  4. KF

    Import from comma delimited text file

    If it is possible you should use update and append queries for this operation, if your going from Access to Access. Then adding an updated and Exported field to your tables you can control what information is transfered. Good Luck,
  5. KF

    See if Field exists

    You could try and add the field and if it is there then the following code will not add it as Access will only let you add a field to a table once. Dim MyWorkspace As Workspace Dim MyDatabase As DATABASE Dim MyField As Field Dim MyTableDef As TableDef Set MyWorkspace = DBEngine.Workspaces(0)...
  6. KF

    How to disable the Access Close button.

    I would like to know this two if anyone can help?
  7. KF

    Tracking users who opened database

    If you have a custom login screen you could just use a global variable like gstrUserName and set the name of the user to this variable long enough to put it where you want it then empty it?
  8. KF

    Corrupt Application

    Have you tried decompiling you mdb file? For example: select Start | Run and enter your information inplace of this; "C:\PROGRAM FILES\MICROSOFT OFFICE\OFFICE\MSACCESS.EXE" /decompile "c:\YourFolder\YourDatabaseFile.MBD Good Luck,
  9. KF

    Add together specific time values using function/code ??

    Yes, try this in the control source of a text box on your form. =Format(Sum([YOUR TIME FIELD NAME HERE]),"h:nn:ss") Good Luck, KF
  10. KF

    Changing Table Field Name with Code....Possible?!

    Yes, here is a sample of code I used to change the size of a field that currenly had data in it. You can modifiy this code to work for you. You must first create a temp field and move your data into it. Then create the new field (new name)and move your data into it. Then drop the old field...
  11. KF

    setting a forms record source by code based on user selection

    Use a sub form on on your main form and when a button is pressed on the main form in the on_click event of a button try me!yoursubformhere.recordsource = "yournewrecordsource" me!yoursubformhere.requery
  12. KF

    how do I create a new table in an access database?

    Please explain this! (but I need to be able to add new ones without physically adding them into the DB.)
  13. KF

    File Uploads

    If your bored go home.
  14. KF

    Need List Box Assistance

    Use the on_exit event of the text box to set the row source of the list box. Or you could just requery the row source of the list box. Make sure you have added a parameter to your row source SQL statement or query based on the entry made by the user into the text box on your form. For example...
  15. KF

    Creating a Switchboard Manager Button?

    Put this under on the on_click event of a command button. On Error Resume Next Application.Run "ACWZMAIN.sbm_Entry" You will need to check and make sure the switchboard manager is installed on the PC's KF
  16. KF

    Using data from several databases

    How do you use URL addresses in place of Linking tables?
  17. KF

    conversions

    You may want to decomplie the mdb after it has been converted. This has helped me in the past. From the Run dialog enter the following enter your locations. "c:\program files\microsoft office\office\MSACCESS.EXE" /decompile "C:\YourFolder\YourDatabase.mdb"
  18. KF

    3065 run time error ...cannot execute a SELECT query

    TRY THIS Dim strSQL as String strSQL= "SELECT bondamount AS [ls_holdamt] FROM Bondclass WHERE class = " & Me!Combo83.Value DoCmd.RunSQL strSQL
  19. KF

    SendObject not working in Win2000

    What version of Jet are you using? There is a Jet 4 sp5 for Win2000 users on the Microsoft site, Access 2000 updates. I'm not sure this will help but I would try it.

Part and Inventory Search

Back
Top