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 wOOdy-Soft 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 isorders

  1. isorders

    Datasheet View Empty Fields-Dirty

    I always feel like the answers are obvious after I figure them out...I ended up using the subform on Exit with an acPrevious record. I have some code that ensures there is at least one record and that the current record values are all blank before I run the acPrevious. It works great. I read a...
  2. isorders

    Datasheet View Empty Fields-Dirty

    No luck...thanks though.
  3. isorders

    Datasheet View Empty Fields-Dirty

    I have a datasheet input form. If the user tabs to the next record but nothing is entered the record shows as dirty on save, add, close, etc and an error script pops open until the user manually clicks in a previous record. It is annoying to always get this message but necessary for data...
  4. isorders

    And/Or Query

    Sorry I was abbreviating....it is setup like that. Select * From tbl WHERE tbl.Name="Test" AND (tbl.ID1=5 OR tbl.ID2=5 OR tbl.ID3=5). I want to find all of the records where the Name is Test and the ID is 5 in any of the 3 ID Fields.
  5. isorders

    And/Or Query

    I have cobbled together a query select * where ID1 OR ID2 OR ID3 = 5 but I can't get the query select * where name="Test" AND (ID1 OR ID2 OR ID3=5). I can't get the AND filter to work the results of the ID OR Filter. Thanks!
  6. isorders

    Transfer Database acLink OLEDB

    Is there a way to use the DoCmd.TransferDatabase acLink to an OLEDB provider. I can get it to work with ODBC, but not OLE. I want to be able to switch between multiple databases on the fly without having to setup multiple ODBC connections. Thanks
  7. isorders

    New Record Line Not Being Added

    Never mind. Duh. All I have to do is submit the question and the answer comes to me almost immediately.
  8. isorders

    New Record Line Not Being Added

    On a form in Datasheet view I have a script that saves the previously entered combo box value to strItemID after update. When the next record ItemID combo gets focus, it automatically fills in with the previously entered value of strItemID. The problem is that there is then no way to add another...
  9. isorders

    Adding Combo Box Value

    I figured out a solution. I added a second SQL statement to find the TestID where Test = NewData and it worked. Set db = CurrentDb() sql = "Select Test FROM stblLabTests" sqlNewData = "Select TestID FROM stblLabTests WHERE Test ='" & NewData &...
  10. isorders

    Adding Combo Box Value

    I have a NotInList issue. I want the value to be added to the list...which it is and then automatically filled in. So where it says ctl = Empty, I want it to say ctl = NewData. The problem is that the bound column is an autonumber, so NewData may be Bob but the unique TestID for Bob is 5. How...
  11. isorders

    Alter Table, reduce Field Size

    I know I can alter table to increase a char(10) to char(20), but is there a way to go the otherway and reduce the field size as long as the data in the field still meets the new char size? Thanks
  12. isorders

    Linked Tables

    I understand the concept, but I don't know what a foreign key is in Access and don't see it in the help. The tblSQLPR is linked through an ODBC connection.
  13. isorders

    Linked Tables

    I have a list of Projects that I pull from a SQL database. Table SQLPR. I don't want to mess with tblSQLPR or the database, but I need to add some more fields like line length, line size, project type etc. so I created an .mdb file. I want the project list to always be current but I can't figure...
  14. isorders

    Report Page Breaks

    Sorry...figured it out. Turn Keep Together to No. Thought I had tried that aleady.
  15. isorders

    Report Page Breaks

    Not sure what I am doing wrong here... I have a report and in the detail section I have a lot of fields, a photo and a subreport. It won't all fit on one page, and I want to tell it where to separate with page breaks, but when the Detail secion expands over * 8.25 it totally messes up the...

Part and Inventory Search

Back
Top