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

    Find Function does not find

    Your code does create a new record. The problem is I have to update the existing record not create a new record.
  2. access345

    Find Function does not find

    I commented out the code you lined. Now I get the error message "Call administrtor
  3. access345

    Find Function does not find

    Now you have me intrigued. Your part on finding the correct record works. But I can't get the time function to work. Here is what I have: Private Sub btnFindRecord_Click() On Error GoTo Err_btnFindRecord_Click Dim stDocName As String Dim intSNo Dim LaborCount As Double...
  4. access345

    Find Function does not find

    I have created a button that I want to fine a specific record based on its serial number. After the record is found I want a query to be executed based on the serial number that would record what time the button was pushed. What is currently happening is when I click on the button. I get a...
  5. access345

    Keeping track of logins

    Is there a way of tracking a person by their login? My forms currently have a list box with the asking the person to click on themselves. If there was a way of transferring who they are currently logged in as it would make my life easier.
  6. access345

    For Next Loop Mechanics

    Thank you for sticking it out with me. You finally got this working for me. Again thanks for your patience.
  7. access345

    For Next Loop Mechanics

    I added your code: Public Sub DefectCnt1() On Error GoTo ERR_DefectCnt_1 Dim SerialNumber As Long Dim Counter As Double Dim SQL As String Dim ReworkCount As Double Dim strQueryName As String SerialNumber = 4569 If Counter = 0 Then Counter = 1 Counter = DLookup(([ReworkCount] + (1))...
  8. access345

    For Next Loop Mechanics

    I changed some things and now he code will execute. But the counter is not working. Public Sub DefectCnt1() On Error GoTo ERR_DefectCnt_1 Dim SerialNumber As Long Dim Counter As Double Dim ReworkCount As Double Dim strQueryName As String SerialNumber = 4569 If Counter = 0 Then Counter = 1...
  9. access345

    For Next Loop Mechanics

    Public Sub DefectCnt1() On Error GoTo ERR_DefectCnt_1 Dim SerialNumber As Long Dim Counter As Double Dim ReworkCount As Double Dim strQueryName As String SerialNumber = 4869 Counter = DLookup("ReworkCount", "TblPAQ3280Process", "SerialNumber =" & SerialNumber) + 1 strQueryName =...
  10. access345

    For Next Loop Mechanics

    Public Sub DefectCnt1() On Error GoTo ERR_DefectCnt_1 Dim SerialNumber As Long Dim Counter As Double Dim ReworkCount As Double SerialNumber = 4869 Counter = DLookup("ReworkCount", "TblPAQ3280Process", "SerialNumber =" & SerialNumber) + 1 strQueryName = "qryupdateRwk" & Counter...
  11. access345

    For Next Loop Mechanics

    This is the whole module: Public Sub DefectCnt1() On Error GoTo ERR_DefectCnt_1 Dim TotalTime As Long Dim SerialNumber As Long Dim SQL As String Dim DefectCounter As Double Dim Counter As Double Counter = 1 For DefectCounter = 1 To Counter 'Update ReworkLabor1 Field with total time...
  12. access345

    For Next Loop Mechanics

    The query did execute thanks PHV. But my next question is if I have count =1 than how is the counter going to work? Isn't the counter always going to be at 1?
  13. access345

    For Next Loop Mechanics

    I Removed the Set command When I step through the code If DefectCounter = 1 Then DoCmd.OpenQuery (qryupdateRwk1), acViewNormal, acEdit I get to the DefectCounter =1 But when I look at qryupdateRwk1 it says its empty
  14. access345

    For Next Loop Mechanics

    Different approach Public Sub DefectCnt1() On Error GoTo ERR_DefectCnt_1 Dim TotalTime As Long Dim SerialNumber As Long Dim SQL As String Dim DefectCounter As Double Dim Counter As Double Set Counter = 1 For DefectCounter = 1 To Counter 'Update ReworkLabor1 Field with total time...
  15. access345

    For Next Loop Mechanics

    Dim TotalTime As Long Dim SerialNumber As Long Dim SQL As String Dim DefectCounter As Double Dim Count As Double Set Count = 1 For DefectCounter = 1 To Count 'Update ReworkLabor1 Field with total time SQL = "UPDATE TblPAQ3280Process " & _ "SET ReworkLabor" &...
  16. access345

    For Next Loop Mechanics

    I added the dbFailOnError command and the counter still is not working. When I step through the program It goes to For Defectcounter = 1 To B than to exit sub. Maybe I need to take the query language out and do a DoCMd openQuery()?
  17. access345

    For Next Loop Mechanics

    I adapted your Code Public Sub DefectCnt() On Error GoTo ERR_DefectCnt_1 Dim TotalTime As Long Dim SerialNumber As Long Dim SQL As String Dim Defectcounter As Double For Defectcounter = 1 To B 'Update ReworkLabor1 Field with total time SQL = "UPDATE TblPAQ3280Process " & _...
  18. access345

    For Next Loop Mechanics

    I need a For Next loop to count the amount of times a instance occurs. I will warn helpers this is the first time I have tried to create one. What I am trying to accomplish is to have a counter keep track of defects. When I have a defect a person will click on a button that will call this loop...
  19. access345

    Passing variables

    PHV's code worked perfectly. Thanks to all for your patience for helping me solve this problem.
  20. access345

    Passing variables

    Public Sub LookupValue() On Error GoTo ERR_txtRefDesig5 'Dim FormName As String Dim myActiveForm As Form Dim TableName As String Dim FormEntryTextBox As String Dim DisplayTextBox1 As String Dim EntryTextBoxFromTable1 As String Dim LookupValueFromTable1 As String TableName...

Part and Inventory Search

Back
Top