Search results

  1. K

    combo box item not in list (!)

    Still unresolved I still encounter this problem... I recently experienced it on a PC that had not been displaying it and now is - I currently suspect some sort of windows update. Anyone else getting this effect?
  2. K

    Problems with UTILITY.MDA

    As a further thought - Does anyone out there know of a link between User-defined types and UTILITY.MDA?
  3. K

    Problems with UTILITY.MDA

    I recently overcame mde build problems that I had been encountering (separate post) by realising that the Access 97 db in question had inappropriate references in it (namely Microsoft DAO 2.5/3.5 Compatibility Library and UTILITY.MDA instead of Microsoft DAO 3.51 Object Library). This I...
  4. K

    mde compile error

    I finally got to the bottom of this one.... It was a self-inflicted problem, in a sense. The db affected was my oldest application, and contained references to Microsoft DAO 2.5/3.5 Compatibility Library and utility.mda. When I replaced these with Microsoft DAO 3.51 Object Library, my mde...
  5. K

    mde compile error

    Thanks for that one Mile-O-Phile .... I hadn't thought of that. I always try to be tidy when deleting objects, but it is very easy to leave code behind. I shall start to look for orphaned code...... it's not going to be easy though! And I'm still baffled by the sometimes will compile /...
  6. K

    mde compile error

    Further attempts I have made are: Decompiling, which seemed to me not to work properly on this database, because it gave an error on the first attempt, and then on a second try merely reported that it had converted Utility.mda, with no evident improvement or size reduction to my mdb. I have...
  7. K

    mde compile error

    Hi Rich Yes, the code is compiled and saved. I have the problem with only one mdb/mde, which happens to be my largest application.
  8. K

    mde compile error

    I have a strange situation with an access 97 database. When building an mde file, it will sometimes give an error, and sometimes not. The error is 'Can't open database (blah). It may not be a database that your application recognises, or the file may be corrupt.' I have been chasing this one...
  9. K

    combo box item not in list (!)

    In case it throws any more light on the matter: On one of my applications I have removed Limit to List from one of the misbehaving combos, and this alleviates the problem as it allows a valid entry to be typed in. However, the underlying problem is still there, because auto expand doesn't...
  10. K

    please help

    OK Try changing the name of the field to something else than 'Date'.
  11. K

    Cannot open more databases

    I may be way off the mark on what is going on here, but it brings back the horrific problems i was experiencing recently. Might be worth checking them out: http://www.access-programmers.co.uk/forums/showthread.php?s=&threadid=50355
  12. K

    please help

    Sorry - I should have been clearer. In Form properties, click the On Open property and use the Code Builder to give you the Private Sub Form_Open(Cancel As Integer) End Sub routine. Insert the statement Me!MyField = Date where MyField is the name of your date text box on...
  13. K

    please help

    OK. Remove those assignments from the Default Value properties, and instead set the values against the Open property of the form (or the Current property, depending on how you want it to work). eg: Private Sub Form_Open(Cancel As Integer) Me!CostDate = Date End Sub This should provide...
  14. K

    please help

    vivian My occurrence of this problem was in a form I designed when I first started using Access, and was experimenting with techniques. I found that I had assigned =date() and =time() to the Default Value properties of the fields concerned so that they were automatically loaded for data entry...
  15. K

    combo box item not in list (!)

    frustration..... I'm still no nearer to solving this one........ is it just not happening to anyone out there??
  16. K

    combo box item not in list (!)

    That's curious, dcx693. Those intermittent problems tend to make me suspect database bloat.... I've had some pretty variable behaviour myself. However, this particular combo problem is 100% reproduceable: ie, on computer A it will always occur, on computer B never. :confused:
  17. K

    please help

    Vivian This suddenly starts to sound familiar - is the new PC running the same operating system as the others? I had a date problem recently with Access 97 running under XP, where it had been fine under 98SE. Keith
  18. K

    please help

    Can you say more about how those dates don't work?
  19. K

    combo box item not in list (!)

    Thanks for the interest dcx693 and Wayne - I still can't get my head round what's happening here or rather, why. Wayne, even if I turned off the error message (can you do that in Access 97?) it wouldn't help, because the combo actually doesn't accept anything typed into it..... it really does...
  20. K

    One form switched between two queries

    Barry - glad you got it sorted. An alternative method I have developed for indicating which of 2 (or more) buttons is active, is to create a little rectangle immediately above each, coloured to look like an indicator lamp, and have only the appropriate one visible at any one time. Regards Keith
Back
Top Bottom