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 bkrike 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 NJW

  1. NJW

    How to add to the database from a form

    That's it. Thank you for your help. Sorry for the inconvenience. ::-)
  2. NJW

    How to add to the database from a form

    How do I use the immediate window?
  3. NJW

    How to add to the database from a form

    Private Sub Command0_Click() Dim IntStartNum As Integer Dim IntTotalAssigned As Integer Dim StrLeadTech As String Dim StrBranch As String Dim rst As DAO.Recordset Set rst = CurrentDb.OpenRecordset("Table1") StrLeadTech = InputBox("Enter in Lead Tech") StrBranch =...
  4. NJW

    How to add to the database from a form

    Just One more thing. It runs with no prompts but it does not stop until I get an overflow error. it just keeps adding records until it errors out.
  5. NJW

    How to add to the database from a form

    Here is the code. Thanks Again Private Sub Command0_Click() Dim IntStartNum As Integer Dim IntTotalAssigned As Integer Dim StrLeadTech As String Dim StrBranch As String Dim rst As Recordset DoCmd.SetWarnings False [StrLeadTech] = InputBox("Enter in Lead Tech") [StrBranch] =...
  6. NJW

    How to add to the database from a form

    I have changed my variable names and tried it with and without the brackets I am still getting the same prompt. Could it have to do with the fact that I am entering in text that this is happening. When I enter in numbers I am not getting the prompt. Could this be the problem?
  7. NJW

    How to add to the database from a form

    I am trying to take what they enter in the input fields and populate a field on one of the records. The problem is that when I enter in alpha char(i.e. "ABC") it prompts for the data to be entered in again. Thank you for all the help. I am sorry if I am not clear but I am new to this...
  8. NJW

    How to add to the database from a form

    Sorry I meant pass text through to the records. The request is happening after the first record is added and for each record after that. Here is the code Private Sub Command0_Click() Dim StartNum As Integer Dim TotalAssigned As Integer Dim LeadTech As String Dim Branch As String...
  9. NJW

    How to add to the database from a form

    THanks for the help. It worked with one problem I wanted to pass data to the records along with the control numbers and I keep getting this "Enter Parameter value" request. Any Help would be appreciated
  10. NJW

    How to add to the database from a form

    I need to add a set of control numbers to a database from a form where the user enters in the beginning number and the total number assigned. I want the form to then take the total number assigned and add number of sequential numbers equal to the total assigned starting with the control number...
  11. NJW

    Caluculating cost for invoice line items

    I am trying to calculate a line item to include another specific line item. can some one help.
  12. NJW

    CR not showing data in the preview mode of forms.

    CR does not show info in the preview mode for forms. What is the cause?
  13. NJW

    Not able to bring up data in preview of mas 200

    It does nto bring over any data in to the reports, butI found out hte problem the program has to have something to print first ( i.e. the program in mas need an uprinted invoice or the like to bring it over.) thanks for your help.
  14. NJW

    Not able to bring up data in preview of mas 200

    I am Creating forms in CR and it will not bring over any data. Is there a way I can bring this up? I hate having to close the report then run it from mas and have to go back in to CR to correct a minor problem. any help welcome

Part and Inventory Search

Back
Top