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 wOOdy-Soft on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Recent content by Mikeauz

  1. Mikeauz

    Remove Blanks After Last Character in string

    Hi, I have a problem where an address looks like "Art Road " and I'm trying to get rid of the blanks at the end without loosing the blank between the words. For Example "Art Road " becomes "Art Road" If I was just trying to trim blanks where a single word was involved I would...
  2. Mikeauz

    INFORMIX 3.82 32 BIT conn string

    Hey This isn't really my area but I use this connection string in Access Pass-through queries to informix using the 3.82 driver...
  3. Mikeauz

    You can not carry out this action at the present time Error

    Crowley, Thanks for answering but not opening the queries or tables in design mode
  4. Mikeauz

    You can not carry out this action at the present time Error

    Hi, (Access 2000) I'm using append queries, pulling from pass through queries to append data to access tables. These have worked for ages without change but now when I try to run the below code I get the error 'You can not carry out this action at the present time' on each of the .openquery...
  5. Mikeauz

    Display Combobox list without using the mouse

    Hi, Anyone have any idea if there's any shortcuts etc for displaying a combobox list without using the mouse. The combobox always showing it's list after change and stopping when it's lost focus would be even better. Thanks for the help Mike
  6. Mikeauz

    How to convert hours/mins/seconds greater than one day to seconds

    Hi, In converting Hours:Mins:seconds to seconds I was always a beleiver of using =(HOUR($A1)*3600)+(MINUTE($A1)*60)+(SECOND($A1)) but recently discovered that Excel stores times greater than 24 hours as days/months/years/hours/minutes/seconds To get around this problem paste the following...
  7. Mikeauz

    Previous Record Problem

    OhioSteve, 1, All fields are Date Time,in the format dd/mm/yyyy 2, Nope, always same day Thanks for the help!
  8. Mikeauz

    Previous Record Problem

    Hi, I'm trying to produce a report that shows a subreport with Sign-in/Sign out times and the difference between the previous sign-out time and the current sign-in time. For example: Difference Sign-in Sign-out 08:00 09:00 01:00 10:00 12:00 00:30...
  9. Mikeauz

    Why hiperlink doesn't work

    vanleurth, I'm not sure what yout trying to do "A combobox that's a hyperlink" but if your trying to open webpages/addressed emails by selecting options in a combo box then the basic code is Application.followhyperlink "www.website.com" or application.followhyperlink "mailto:name@yahoo.com" on...
  10. Mikeauz

    VBA code to kick off logged users before maintenance

    AccessUser22, I've used this method heaps and never had any corruption issues with it. I would say it's because you are simulating the user closing the db themselves rather than actually remotely booting them.
  11. Mikeauz

    Application defined error on external data refresh

    Hi, I'm retreiving external data from an Access 2000 db using excel 2000 and sometimes when I use the below code I get the error "Application defined error". Sheets("Data").Select Selection.QueryTable.Refresh BackgroundQuery:=False I can always fix it by manually going to the sheet and...
  12. Mikeauz

    Month to Date Total by Date by Staff Member problem

    JonFer, I'll keep trying your suggestion, but haven't had much luck so far. I've changed what I'm trying to do slightly in that I'm now trying to get Month to Date Averages. For example: tblMaster Date(dd/mm/yy) Staff Adherence% 01/01/01 A 97 02/01/01 A...
  13. Mikeauz

    Month to Date Total by Date by Staff Member problem

    JonFer, Thanks for the help but I'm not sure on how to test using the select distinct function, I'm using Access 2000 if that helps.
  14. Mikeauz

    Show List of tables in another database

    Everyone, Worked out a solution to this, a listbox with the following rowsource: "SELECT * FROM msysobjects IN "C:\Remotedb.mdb

Part and Inventory Search

Back
Top