Recent content by aceto

  1. A

    data dictionary

    Define data dictionary? You can take a look at what the built in Documenter has to offer. Tools -> Analyze -> Documenter
  2. A

    What types of normalisation are there?

    What your describing sounds like EAV (entity-attribute-value) to me and it is not based on the rules of normalization. It's something that many people think they have discovered at one time or another.
  3. A

    Seeking Microsoft Access Article Writers

    i ka'nt rrite but I kan type purty gud. I aIN'T FrUMm A 3RD WOLRD cuntry but i em frumm the thurd planet frumm the sun. Is that gudd enohgf? I also two is cheep.
  4. A

    Academic vs practical design question

    >Surely the first problem is the definition of 'song'. That in a nut shell is the problem with the discussion. The model is not even closed to being well defined and therefore no where near complete. You can't discuss normalizing an incomplete model. The fact is that in the example from the...
  5. A

    Hating ACC2007

  6. A

    Public Sub

    The 2nd and 3rd parameter to the MsgBox function are in the wrong order in the call to MsgBox. It should be: AddRecord = MsgBox(Message, vbYesNo, Title) The error was cut & pasted from the code in your original post.
  7. A

    Public Sub

    Change your public sub to a function and use it to return the value returned by the call to msgbox back to the click event. That way your public function does not have to have any knowledge of the form you want to open. It's only purpose is to return the user's decision on whether to open it or...
Back
Top Bottom