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 Wanet Telecoms Ltd 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 ZX188

  1. ZX188

    Before update after update

    That wont work I need the data that is in the field befor the Update to change the checkbox back
  2. ZX188

    Before update after update

    Private Sub CoreID_AfterUpdate() Dim StrNoCheck As String Dim db As DAO.Database Set db = CurrentDb If [ServiceType] = &quot;Core&quot; And [CustomerIn] <> &quot;&quot; Then StrNoCheck = &quot;UPDATE Worksheet SET CoreOwed = 0 WHERE RefrenceNumber = &quot; & Me.[CoreID].Column(0) & &quot;;&quot...
  3. ZX188

    Before update after update

    I have written the code to update a check box in a db based on the input of a certain field on a form. This works ok the problem I have is if the field is changed back the check box does not change based on the data that was in the field before the change. It seams that the data is changed...
  4. ZX188

    Required field

    How would I make a field on a form required without setting the required proprities at the table level
  5. ZX188

    Update field in diffrent table

    I keep getting syntax error in FROM clause This is what I have done Private Sub PoNumber_AfterUpdate() Dim db As DAO.Database Dim rst As DAO.Recordset Dim strSQL As String strSQL = &quot;Select Closed From PoNumber&quot; & &quot;WHERE PriKey=&quot; & Me.[PoNumber.PoID] & &quot;;&quot; Set db =...
  6. ZX188

    Update field in diffrent table

    Thanks for the help Sticking it gives me a good start Kevin
  7. ZX188

    Update field in diffrent table

    I have a combo box that needs to update a true/false check box in a different table based on the user selection of the combo box. When the user selects something I need to up date the check box in the record that corresponds with the selection How would I go about this? Thanks Kevin
  8. ZX188

    Stop update in form fields

    I have a form that changes data in fields when a combo box data changes the combo box is using the primary key as its data source Question: How do I stop certain fields from getting updated when I change the data in the combo box
  9. ZX188

    Update fields

    How would I go about updating a field in a record other than the record that I am displaying on my form
  10. ZX188

    Need to put aditional characters in a report field

    I need to have a field in a report that prints out its data with a &quot; * &quot; on either side Something like this in the fields record source =&quot;*&quot; & [Field in select query] & &quot;*&quot; but this doesn't work any suggestions ? I cant use text labels on either side because I...
  11. ZX188

    Next problem

    First I would like to thank every one for all the help this has been one of the best Access forums I have found you have saved me days of research and taught me a lot not to mention the fact that I would have less hare. any how here is my next dilemma I have a orders form with a subform linked...
  12. ZX188

    Another combobox question

    I Figured out what I was doing wrong the first combo box was bound to the wrong field Thanks for all the help
  13. ZX188

    Another combobox question

    I also tryed it this way SELECT worksheet.[PO#], worksheet.OurPartNumber, worksheet.Description, worksheet.CustomerID FROM worksheet WHERE (((worksheet.CustomerID)=[Forms]![Orders]![BillTo]));
  14. ZX188

    Another combobox question

    I get no choices in my other combobox You got it all correct except that the BillTo is also a combobox
  15. ZX188

    Another combobox question

    Didn't seem to do anything do I leave my rowsource in the combobox the same?

Part and Inventory Search

Back
Top