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 SkipVought 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. boblarson

    How to tell when bound form is on last record

    And I'll just stop posting here so that we don't clash further. Bob Larson FORMER Microsoft Access MVP (2008-2009, 2009-2010) Free Tutorials/Samples/Tools: http://www.btabdevelopment.com
  2. boblarson

    How to tell when bound form is on last record

    Well, I guess we'll have to agree we disagree (as many well-known Access people agree with me, so I have no qualms about it). Bob Larson FORMER Microsoft Access MVP (2008-2009, 2009-2010) Free Tutorials/Samples/Tools: http://www.btabdevelopment.com
  3. boblarson

    How to tell when bound form is on last record

    MajP - People always assume that errors are bad. They aren't. In fact, you can use them to your advantage. Now, using On Error Resume Next is a HORRIBLE thing to do as it DOES obscure the cause of many things. But, look at it this way - Even Microsoft has determined that ERRORS are not...
  4. boblarson

    How to tell when bound form is on last record

    I've always just handled the Error 2105 which occurs when you try to go past the last record. Bob Larson FORMER Microsoft Access MVP (2008-2009, 2009-2010) Free Tutorials/Samples/Tools: http://www.btabdevelopment.com
  5. boblarson

    disable window unhide database option?

    assets - If you aren't using a split database then you are playing Russian Roulette with your data. Even for a single person use, I recommend splitting the database to a frontend/backend setup. That way if the frontend corrupts, you don't run the risk of losing your data. You can keep a...
  6. boblarson

    deleteRecord not available

    It is interesting because I've never used that and have had it work just fine for me before. Bob Larson FORMER Microsoft Access MVP (2008-2009, 2009-2010) Free Tutorials/Samples/Tools: http://www.btabdevelopment.com
  7. boblarson

    deleteRecord not available

    The control doesn't need to be on the main form for it to work but the subform has to have deletions allowed set to yes and the record source needs to be updateable. But what code are you trying to use and where have you put the delete button? On a continuous form I have put a button in the...
  8. boblarson

    Form Not Opening

    Also, you don't need to use the table reference if JobID from the Job Details table is the only JobID in the form's record source. But, you also have a problem with the table reference as it has a space and therefore would need square brackets (your bracketing is incorrect). So this...
  9. boblarson

    disable window unhide database option?

    Which version of Access are you using? Are you talking about the menu bar which lets you go up to WINDOW > UNHIDE > DATABASE WINDOW ??? If so, then you can set the option in startup options to not allow default menus. But if you do, you'll want to create your own (perhaps) so that they have...
  10. boblarson

    Access 2007 price legitimate?

    Ebay can have legitimate software but a lot of it is pirated as well. So, it is buyer beware. Bob Larson FORMER Microsoft Access MVP (2008-2009, 2009-2010) Free Tutorials/Samples/Tools: http://www.btabdevelopment.com
  11. boblarson

    Problem with sql update using vb6

    Just a note - InstrRev returns the FORWARD character position (as if you counted from the beginning character) but finds the first instance of what you are looking for starting from the end. So, I'm not sure how you intend to use the Instr and InstrRev in this context. Can you break down what...
  12. boblarson

    Count all the 6’s in field1

    We solved this problem for the OP over on Access World Forums (where they posted a sample database). It turns out that Field1 was text and the entries were not consistent. There were some with spaces before the number and so using TRIM to compare worked. You can see the entire thread here...
  13. boblarson

    Combining Data Systemically

    RED FLAG, RED FLAG!!! New sales data should not be adding COLUMNS but instead should be adding ROWS of data (I hope you meant that and just spaced). Bob Larson FORMER Microsoft Access MVP (2008-2009, 2009-2010) Free Tutorials/Samples/Tools: http://www.btabdevelopment.com
  14. boblarson

    DLookUp returning first record when I need a specific record

    I agree with those who say + and & are not interchangeable in VBA. But I have something to say about the single quotes. Many times Business names have single quotes in them (Like Bob's Restaurant, Sam's Place, etc). So using single quotes when looking for company names is potentially an error...
  15. boblarson

    Can a macro delete a file?

    Andy - Access doesn't have a macro recorder like Excel or Word does. Macros in Access are a completely different thing as compared to Excel. VBA is separate from macros when it comes to Access. Bob Larson FORMER Microsoft Access MVP (2008-2009, 2009-2010) Free Tutorials/Samples/Tools...
  16. boblarson

    Issue after creating mde

    Also - no you don't need the developer's edition to create an mde file from Access 2000 for an Access 2000 mdb file. However, your installation would need to be at the same Service Pack level or higher. Bob Larson FORMER Microsoft Access MVP (2008-2009, 2009-2010) Free...
  17. boblarson

    Issue after creating mde

    Try decompiling first and then recompile. http://www.granite.ab.ca/access/decompile.htm Bob Larson FORMER Microsoft Access MVP (2008-2009, 2009-2010) Free Tutorials/Samples/Tools: http://www.btabdevelopment.com
  18. boblarson

    Text Fields do not show on chart when I copy / paste

    The controls are not part of the chart so they will not be there when copying and pasting. If you use a PDF copy of the report it should be fine. But just trying to copy and paste is likely just an exercise in futility. Bob Larson FORMER Microsoft Access MVP (2008-2009, 2009-2010) Free...
  19. boblarson

    Sometimes a code window is open but no errors are noticed. Any ideas?

    It could be a phantom breakpoint but it may be hard to find. If you know where it is stopped, if it is stopped on a line of code, then you can copy that line of code, put it above or below the existing one and delete the old line. If that doesn't work, or it isn't stopping on a particular line...
  20. boblarson

    Check last updated on a SQL Table which is using Access as Front end

    You can add two fields to the tables - One for LastUpdate (date/time) and one for LastUpdatedBy (text). Then in your form's BEFORE UPDATE event, after validating things are right, as long as those fields are in your form's record source (and the record source is updatable), you can use...

Part and Inventory Search

Back
Top