Search results

  1. G

    Site hangs after posting?

    IT WORKS!!! Amazing.
  2. G

    Site hangs after posting?

    I just re-installed it. And the verdict is:
  3. G

    Site hangs after posting?

    I honestly don't believe that removing ads will fix this issue.
  4. G

    That old chestnut Exporting a Report to Excel!

    Spam in post #2 reported.
  5. G

    Question Relationships - Kickin' my hind end!

    Let us know if you have questions. Be specific!
  6. G

    Question Relationships - Kickin' my hind end!

    Yes. It is called an associative or junction table. That is how you implement a many to many relationship. You'll put the junction table's data in your subform(s) as Pat did, with look ups into the other side of the M:M relationship.
  7. G

    Site hangs after posting?

    Well, did it work?
  8. G

    Civil Jobs tracking database in 2003

    I answered your question on your other thread. You really don't need to post on the same topic on more than one thread. A possible reason why you haven't had an answer is that your description is a little verbose and doesn't really indicate what you're having problems with. The thing you are...
  9. G

    Question Relationships - Kickin' my hind end!

    Please take a look at Pat Hartman's M:M demo: Many-to-many example
  10. G

    Site hangs after posting?

    I guess if I actually paid to use the sites I use, I wouldn't mind it. I just have a problem with getting free stuff when it wasn't the intention of the person providing the content. Everybody's got to eat.
  11. G

    Site hangs after posting?

    I recently disabled the Adblock Plus. Maybe that's why this symptom has returned? I'll try re-installing it, I guess. I honestly don't like the idea of Adblock Plus but if it makes the site work correctly, I'll have to bite the bullet.
  12. G

    Best way to...

    I don't really understand the issue. Is your combo-box bound to a field in your sub-form's query? If not, it will behave the way you say. Continuous forms are pretty unforgiving about what fields you put on them. Also, I'm a bit confused as to why you need VBA at all. Once the tables are...
  13. G

    Question print scaling like in excel?

    Nice. Thanks for the info.
  14. G

    Many to many data entry question

    One of the tables on the outside of the M:M relationship goes in the main form. The junction table goes in the sub-form. Using this strategy, you have 2 different ways to see and/or manipulate your data. See Pat Hartman's M:M sample on this site.
  15. G

    How much do I need to normalize?

    All the way. Put things that are about a certain entity in its own entity. I've commented on this multiple times on this forum. For instance, here: http://www.access-programmers.co.uk/forums/showthread.php?t=189081 The purpose of normalization is not as an academic exercise; it is to remove...
  16. G

    Error Function Mid, need help

    Well, 1 problem is that most objects names don't have a space after them and you have added a space after "nama" (at least in the sample you've shown us).
  17. G

    Training Ttacking

    The information shown in the screen shots you sent is not using the code I told you to use in post 12. That code populates the junction table correctly. If it asks for a parameter, see the above paragraph. The old code was not using the correct column names.
  18. G

    Training Ttacking

    Ok, I found several things. Try this: Private Sub Form_AfterInsert() DoCmd.SetWarnings (False) DoCmd.RunSQL "INSERT INTO t_Training_Association ([Employee ID],[Class ID]) select " & Me.txtID & ", [Class ID] from t_Class_Name;" DoCmd.SetWarnings (True) End Sub I ran it on a copy...
  19. G

    Training Ttacking

    What is it doing wrong? It looks like I got the order of columns wrong as I pointed out in my last post. Is there anything else wrong? Still gotta get it trusted and read/write to test it.
  20. G

    Visual Basic 3

    Dunno, if you're interested, I can dig through all my old stuff to see if I can find my old disks. It has been a while. Can you deal with floppy disks?
Back
Top Bottom