Search results

  1. J

    Timesheet

    @Plog: I don't understand this
  2. J

    Timesheet

    Finally! with all your help, i am able to build a piece of it. Would you mind taking a peak of it? for improvements? for a better world? :D PS: Issues i still can't resolve: I want to set the focus to txtMon1 after i click on date picker of txtStart How to elegantly minimise the code in...
  3. J

    Loop thru Text Values and save to Recordset

    what's the difference between my previous code "rs.addnew and .edit" with your sql strings?
  4. J

    Loop thru Text Values and save to Recordset

    So that rs.addnew and rs.edit is best for what kind of operation/process?
  5. J

    Loop thru Text Values and save to Recordset

    so you mean the solution of Auntiejack56 will generate a runtime error?
  6. J

    Loop thru Text Values and save to Recordset

    @ the record layout: if you were the one designing, how would you do the layout? @ normalised: i thought my table is normalised?
  7. J

    Loop thru Text Values and save to Recordset

    Auntiejack56: I think this will do. it will look like this rs(mon1) = c. value rs(tue1) = c. value .. right? then i'll just manually input the empno right?
  8. J

    Loop thru Text Values and save to Recordset

    how do you squeeze this thru looping Private Sub cmdSubmit_Click() Dim t As TextBox Set rs = db.OpenRecordset("SELECT ID, EmpNo, StartDate, EndDate, " & _ "Mon1, Tue1, Wed1, Thu1, Fri1, Sat1, Sun1, " & _ "Mon2, Tue2, Wed2...
  9. J

    DoCmd.GotoControl not available

    Ok. Thanks.:p
  10. J

    SetFocus to Other Control After Picking/Clicking from DatePicker

    I want to move the cursor or set the focus to other control after i click or pick a date from the date picker. i get error 2110 with this code: Private Sub txtStart_AfterUpdate() DoCmd.GoToControl "txtEnd" txtEnd.SetFocus End Sub
  11. J

    Time Format Problem

    Solved! https://www.access-programmers.co.uk/forums/showthread.php?t=71319 Thank you!
  12. J

    DoCmd.GotoControl not available

    I have another thread. please help Time format Problem Thanks
  13. J

    DoCmd.GotoControl not available

    SOLVED BY: ME.txtEmpNo.Undo THANK YOU!
  14. J

    Time Format Problem

    i'm trying to extract a data based on 2 criteria. date is not cooperating! the supposed to be October 7, 2017 (10/7/2017) is interpreted as July 10, 2017 (7/10/2017) Set rs = db.OpenRecordset("SELECT ID, Mon1, Tue1, Wed1, Thu1, Fri1, Sat1, Sun1, " & _ "Mon2...
  15. J

    DoCmd.GotoControl not available

    it returned to txtEmpNo but did not highlight the text inside it.. maybe access vba doesnt have such capability.. im starting to give up..
  16. J

    DoCmd.GotoControl not available

    attached is what i mean.. just to highlight the text inputted after it set focus.. :(
  17. J

    DoCmd.GotoControl not available

    Plus i cannot extract the data that i want with the date criteria. Please check code/database i have uploaded Thanks
  18. J

    DoCmd.GotoControl not available

    because using txtEmpNo.setFocus give me this error
  19. J

    DoCmd.GotoControl not available

    Last thing regarding txtEmpNo, I want to highlight the text when it return focus, :D Thank you for that solution!
  20. J

    DoCmd.GotoControl not available

    Why do i receive this message? no docmd no setfocus?:banghead:
Back
Top Bottom