Search results

  1. J

    Whats Your Understanding of PK FK

    I didn't think you could have multiple primary keys in one table (thus the term "primary key). You CAN have multiple fields making up the primary key. The FK is used in a related table to make the link between the "One" table and the "Many" table, with the PK and FK being the linking fields.
  2. J

    limit no of records on a form

    I'd start with the underlying query that your form is based on (if you're basing your forms straight from the table, you'll be better off making a query on the table and then basing your form off the query). The query allows you to limit the records returned, which show up in the form. How you...
  3. J

    cant use report because form

    I had a similar situation. I got around it by putting code in the Open Report button to hide the pop-up form when the report opens. Then, when I close the report, the On Close code of the report checks to see if the form Is Loaded, and unhides it if it is. Works great. Is Loaded is not a...
  4. J

    Just a wild thought

    Could be also. I've seen a very similar place in the Rocky Mountain National Park, but I've also seen a similar view from the Tetons. Either way, or from anywhere else in the world...georgeous.
  5. J

    Just a wild thought

    I disagree. #1 would be the appalling lack of knowledge in parents/kids of nutrition of current food products. #2 is lack of will to do anything with that knowledge.
  6. J

    Just a wild thought

    AKA high fructose corn syrup. It is in a LOT of things, especially drinks. You won't find many "fruit" drinks that don't have the stuff in it, unless it is 100% from concentrate. Definitely not good for you.
  7. J

    Text File Import

    Wayne, thanks for the offer, but no worries for us. Spectrolab, how are you making out with this issue?
  8. J

    Text File Import

    Spectrolab, one thing I ran into with this is that this code saw the VERY LAST ELEMENT REPORTED in the text file like the end of the file, so it was never included with the rest of the data. I didn't know what was going on with the code to make it act that way, so I changed the SuperQ text...
  9. J

    Exercise app

    Mickster, here it is in 97. I converted it with Database Tools in Access 2002. It warned me that there are some references that will have to be checked on in the Modules section, to make sure they are all accounted for , for the code this app is running. I don't have 97 version of Access, so...
  10. J

    Questions about importing text data

    g'man, I had a similar situation to deal with not too long ago, but the text file was not nearly as big as yours. Here is the post: http://www.access-programmers.co.uk/forums/showthread.php?t=83493 Wayne Ryan gave me a great solution for tackling this, and I just adapted it to what I had to...
  11. J

    AutoIncremented Numbers

    The short answer is yes. Do a search on the site on custom autonumber or on seed. You can seed the autonumber field to get it to a certain number, if you need. Pat Hartman has posted the solution here, and you'll find her method when you do the search.
  12. J

    Problem with Lcase and Ucase data in table

    You could run an update query on the table field and make them ALL the exact same. The find a way to enforce typing "orange" in the same way, every time from now on (combo box with slection limited to the list).
  13. J

    New Buttons on Forms

    There are some options. On some of my stuff, I have switched from command buttons to labels with mouse-over and on-click effects that look like internet browser links. I also have an app I did for our Safety department that has a form on it that acts as a facility map with clickable sections of...
  14. J

    Exercise App query question

    I'm not sure you can, Jon. You are likely going to have to run one for weights and a separate, but nearly identical, one for cardio. The table for weightlifting data and the table for cardio data set into the same query won't return anything, from what I could work out. They have to be kept...
  15. J

    Exercise App query question

    You lost me there, Jon. You had the query trying to run weights AND cardio, and now it is minus the weights, so isn't cardio still in there???
  16. J

    Exercise App query question

    Jon, From your last post in the Samples forum, you asked why the workout query didn't work. First, don't name queries with the prefix "tbl". You might notice I use a fixed naming convention in my database objects. I didn't always do this, but have been "converted" by this site and a couple of...
  17. J

    Exercise app

    Jon, let's take this out of this thread. I should have already done so. This thread is really only meant to post people's sample apps, not go into lengthy discussion on them. I'll post elsewhere. Apologies to the mods. ;)
  18. J

    Exercise app

    Jon, sounds like you're a bit far to go get in a workout for me :D . The reason the member field didn't work was because something was screwy with the query. I changed the query, and left out the Member table; you don't nned it here. I also changed your Member table. You really need the member...
  19. J

    Passing Parameters from Form to Queries

    Way to butter up the nice people here who give their time and expertise for FREE.
Back
Top Bottom