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 strongm 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: jon92
  • Order by date
  1. jon92

    Office XP install Corrupts Access 97

    Hi Have a look at this info on microsoft site http://search.microsoft.com/search/results.aspx?st=b&na=88&View=en-us&qu=aclicens Good luck
  2. jon92

    Check time of last click event

    KornGeek Thanks for your help - have a star I will definately find some time to read the vba help files! cheers jon
  3. jon92

    Check time of last click event

    KornGeek Thankyou again, I have inserted the code but the textbox txtLastClick is not converting to a date (visible or invisible) when button is clicked Jon
  4. jon92

    Check time of last click event

    KornGeek Thanks for the advice but I feel I'm getting out of my depth! I like the second suggestion using the msgbox. I'm keen to learn more about code, where do you advise me to look for info on syntax for what you suggest? cheers Jon
  5. jon92

    Check time of last click event

    Thanks for the reply Mike The code I have posted works fine. If I can briefly explain - some of the users (may!) think it amusing to click the button several times instead of the required once. I would like to trap any click events approx 30 seconds after the 1st click and thus ignore the...
  6. jon92

    Check time of last click event

    I have a button on a form - when the user carries out a certain task they click the button, this logs the time and date and task type etc. The following code is attached to the onclick event: Me.fldtasktype.Value = "Task description" Me.fldtaskCode.Value = "xxx" Me.fldUsername.Value =...
  7. jon92

    DatePart Question

    Rudy I changed +39 to +38 And that gives me the required results Thanks very much for your help Jon
  8. jon92

    DatePart Question

    Thanks rudy I have tried your suggestion but the last week in march (wk beginning 28/03/05) returns 0 Is this because the month changes to April on the Friday ? Jon
  9. jon92

    DatePart Question

    Hi I am using the following to produce a Week Number Column in a select query: Week Number: DatePart("ww",[MyDate],2) the above returns 05/04/04 as week 15 (date field is formatted to dd/mm/yy) Is it possible to add to the code to return (Mon) 05/04/04 as week 1 thru to (Mon)...
  10. jon92

    Error trapping empty directory

    Rick Thank you for the explanation - It's all becoming clearer now Jon
  11. jon92

    Error trapping empty directory

    I have tried a different approach and this is working! But I'm not sure why?? Function testing() As Long Dim strFile As String, strPath As String strPath = "e:\mydir\" strFile = Dir(strPath & "*.*") If strFile = "" Then MsgBox "No File Found" Exit...
  12. jon92

    Error trapping empty directory

    RickSpr I have tested the import spec and that is ok - the value of strFile when error occurs is: strFile = "e:\mydir\" JeremyNYC I have tried your example and it generates the same error message. What I am trying to do, is warn users that a file is missing and check their previous...
  13. jon92

    Error trapping empty directory

    I am trying to error trap for an empty directory when importing a text file, the following code produces: runtime error 3001 Invalid argument, ( the transfer text line is highlighted) Where am I going wrong please? Function testing() As Long Dim strFile As String strFile =...
  14. jon92

    How to Pass a user input file name to an import macro

    Could you send me a copy please jon92@btinternet.com thanks
  15. jon92

    Record Count

    Thanks Jeff Exactly what I wanted have a star! Jon
  16. jon92

    How do I Find and Replace blanks with $0.00

    Sorry to confuse you! the 'Don't Show' part of the thread refers to another type of query. You need an update query.
  17. jon92

    Record Count

    I have a table that is populated by a text import, I then run an update query to add data to the records just imported. I would like to have the default confirmation messages turned off ( for the update query) but have a custom message box telling the user how many records have just been...
  18. jon92

    How do I Find and Replace blanks with $0.00

    See thread707-560925 The 2nd reply from jebry should help you cheers
  19. jon92

    How to call function

    Thanks Mike You were spot on - query now working as I need. Have a star ! Regards Jon
  20. jon92

    How to call function

    It looks like my function isn't working I received: Ambiguous name detected: proper

Part and Inventory Search

Back
Top