Search results

  1. C

    Right Click on record on subform not working

    Yes the Shortcut Menu is set to YES. It just works in Design view. I guess it's the way Access is built.:(
  2. C

    Right Click on record on subform not working

    When I click on a record on the subform and right click to get the delete record option nothing happens in FORM view but works in DESIGN view. I have checked all the record and form options and they are all correct. Using Access 2010
  3. C

    Calculate dates to hours

    How to convert decimal time from Date/Time calculation StartTime and EndTime are Date/Time types Dim ElpsdTime, EintMin, EintSec, EintTSec, As Double Dim EintHr As Single Dim intHr, intMin As Integer ElpsdTime = CDbl(![EndTime] - ![StartTime]) intHr = Hour(ElpsdTime) 'Rounded Hours...
  4. C

    Bob Larsen assistance with query problem

    Yeah but you need 10-15 replies to do it!!!!!:p
  5. C

    Bob Larsen assistance with query problem

    Bob; I deleted my last post but still need assistance.:) Cal Pettengill RENO, NV calbikes38 @ att.net
  6. C

    How to use VBA to Update a Query with many one-to-many relations?

    I'm building it right now. I;m knida in the dark with queries. Thanks Cal
  7. C

    How to use VBA to Update a Query with many one-to-many relations?

    I'm building it as we communicate. I don't use queries a lot so I'm kind of in the dark. Thanks Cal
  8. C

    How to use VBA to Update a Query with many one-to-many relations?

    ASSL1 Application attached
  9. C

    How to use VBA to Update a Query with many one-to-many relations?

    Can I just send you the application zipped?
  10. C

    How to use VBA to Update a Query with many one-to-many relations?

    FORM frmCopyTasks Option Compare Database Option Explicit Private Sub cboYear_AfterUpdate() PYear = Me.cboYear End Sub Private Sub cboWeek_AfterUpdate() PWeek = Me.cboWeek On Error GoTo Err_cboFRMN_Click Dim FoundIt As Boolean FoundIt = False 'DoCmd.Hourglass True strSQL = "SELECT *...
  11. C

    How to use VBA to Update a Query with many one-to-many relations?

    strSQL = "SELECT * FROM qryTasks WHERE [ActYear] = " & PYear & " and [ActWeek] = " & PWeek & "" strSQL2 = "SELECT * FROM qryTasks2" What do I use instead of currentDb for the other database?
  12. C

    How to use VBA to Update a Query with many one-to-many relations?

    I'm trying to copy specific records selected by Year and Week from the original qryTASKS. Year 2011 Week 1 all records copied to week 2 The double quotes are added by access not me. ??
  13. C

    How to use VBA to Update a Query with many one-to-many relations?

    ERROR MESSAGE The field cannot be updated because another user or process has locked the corresponding record or table. (Error 3164) Public Sub CopyTasks() On Error GoTo Err_CopyTasks Set TaskDB = CurrentDb Set TaskDB2 = CurrentDb strSQL = "SELECT * FROM qryTasks WHERE [ActYear] = " & PYear...
Back
Top Bottom