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!

Search results for query: *

  1. bryn30

    create a system table

    How do I create a system table within access2000?
  2. bryn30

    Query By Form Option Group

    well I got this to work, not by the option group like I had hoped but by the way of multiple query buttons. each "option" now has a unique button that changes the rowsource of the listbox to support the user parameter. thanks for the help
  3. bryn30

    Query By Form Option Group

    ...= [Forms]![Search]![LineRange] Case CustomerOption: SearchBy = TMSOWNER_E911_DATA.CUSTOMER_NAME Like "*" & [Forms]![Search]![Customer] & "*" Case OrderNumOption: SearchBy = TMSOWNER_E911_DATA.ORDER_NUMBER =...
  4. bryn30

    MS Word and referenced Cells in a table

    I have a doc that has a table with 4 columns and 50 rows, column 4 instructs the reader to go to Next Step?? or start reading at row ??. Now there are additions/deletions of some action within the process so these steps change, not often but they do change. as it is now, the table column one is...
  5. bryn30

    Access 2k prevented from saving data to a field

    Rick, Thanks for your help pointing me in the new direction. it works beautifly. here is the final code with many thanks to Rick Sprague! Dim db As DAO.Database, rst As DAO.Recordset Set db = CurrentDb Set rst = db.OpenRecordset("StatusHistory") With rst .AddNew ![OrderID] =...
  6. bryn30

    Access 2k prevented from saving data to a field

    Rick, Thanks for your help pointing me in the new direction. it works beautifly. here is the final code with many thanks to Rick Sprague! Dim db As DAO.Database, rst As DAO.Recordset Set db = CurrentDb Set rst = db.OpenRecordset("StatusHistory") With rst .AddNew ![OrderID] =...
  7. bryn30

    Access 2k prevented from saving data to a field

    Rick, Thanks for your help pointing me in the new direction. it works beautifly. here is the final code with many thanks to Rick Sprague! Dim db As DAO.Database, rst As DAO.Recordset Set db = CurrentDb Set rst = db.OpenRecordset("StatusHistory") With rst .AddNew ![OrderID] =...
  8. bryn30

    Access 2k prevented from saving data to a field

    Thanks Rick... I am a newbi at this, I will rework the form and give it a try using the OldValue property.
  9. bryn30

    Access 2k prevented from saving data to a field

    No reason, just novice coding. will take it out. thanks.
  10. bryn30

    Access 2k prevented from saving data to a field

    Goal: create a status History table for Intervals Reason: Status changes all the time, Need to track the interval in days that a order was within each status. I have changed some object names to easier understand what I am trying to accomplish, here is what I have so far: Running code...
  11. bryn30

    Access 2k prevented from saving data to a field

    Goal: create a status History table for Intervals Reason: Status changes all the time, Need to track the interval in days that a order was within each status. I have changed some object names to easier understand what I am trying to accomplish, here is what I have so far: Running code...
  12. bryn30

    Access 2k prevented from saving data to a field

    Goal: create a status History table for Intervals Reason: Status changes all the time, Need to track the interval in days that a order was within each status. I have changed some object names to easier understand what I am trying to accomplish, here is what I have so far: Running code...
  13. bryn30

    Change Text datatype to Number Datatype in VB

    ...Set db = CurrentDb() ' Create a dummy QueryDef object. Set qdf = db.CreateQueryDef("", "Select * from SIMSUpdate") ' Add a temporary field to the table. qdf.SQL = "ALTER TABLE [" & TblName & "] ADD...
  14. bryn30

    Need Help with sub routine

    ...db As Database Dim qdf As QueryDef Set db = CurrentDb() ' Create a dummy QueryDef object. Set qdf = db.CreateQueryDef("", "Select * from Table1") ' Add a temporary field to the table. qdf.SQL = "ALTER TABLE [" & TblName & "] ADD COLUMN AlterTempField...
  15. bryn30

    Make table query with a union and linked table to update another table

    Goal - Pull data from Production DB and populate fields in an Operations DB. First determine Orders to pull. so I created a Union Query to get a list of Orders. Pull Data From Production. built a query using the Union query to pull three fields, Date1, Date2, Text1 I need to send this...
  16. bryn30

    Change Text datatype to Number Datatype in VB

    Is there a way to change the datatype of a field from Text using VB?
  17. bryn30

    Run Time Error 3709

    can't figure this one out. this code works to archive when the tables are local. However I need this to be a split database with the tables on the server. When that happens the code errors. it stops on the Delete portion. and it cannot find the search key. here is the error; Run Time Error...
  18. bryn30

    move records works on local, but not after split

    can't figure this one out. this code works to archive when the tables are local. However I need this to be a split database with the tables on the server. When that happens the code errors. it stops on the Delete portion. and it cannot find the search key. here is the error; Run Time Error...
  19. bryn30

    MultiSelect ListBox and ComboBox to populate field

    We Did it!!!!! Thank you jlitondo !!!! it was small change in the single quotes being in the expression. here is the final code that did it Private Sub Command5_Click() Dim rst As DAO.Recordset Dim dbs As Database Dim RepIdVar As String 'Variable to store the Rep ID Dim...

Part and Inventory Search

Back
Top