Search results

  1. D

    Sort field items by the order in which they were added

    Dear all, I've been working with (what I hope is) a normalized database I've created to help me organize a conference, and in which I've had to establish many-to-many relationships through junction tables. For example, one abstract may have multiple authors, and an author may have submitted...
  2. D

    Can't add/modify a record in a subform

    Hello all, I come from this thread and perhaps you'll be able to help me. Basically, I want to analyze sentences according to different semantic features: for instance, in "My mother loves cats", "my mother" is "definite", "referential", "concrete", etc... all at the same time. I have three...
  3. D

    Assign a numerical value to a response and calculate a score

    Dear all, First of all, I'm sorry if I haven't posted this in the right section. I'm not sure which category my problem falls into. My form contains a series of checkboxes (e.g. "animate", "human", "concrete", "definite"...). I want to assign numerical values to my answers in order to calculate...
  4. D

    Trouble with a multivalued field

    Hello, I’m having some trouble trying to create a query for a multivalued field. I've read the official tutorials but, as a beginner, I'm not sure the things I'm trying to do are feasible. I hope you can help me. I work in Linguistics, and I want to describe the elements that appear in a...
  5. D

    Problem disabling controls based on the selection of a checked box

    Hello, I want to disable some combos and checkboxes whenever my first checkbox (NP_clausal) is selected. I've placed the code below in the After Update event of the NP_clausal checkbox and it works. I tried to paste it in the On Current event of the Form so that whenever I go back to the...
  6. D

    Enable/disable checkbox based on the value of a combobox

    Hi! I want to enable/disable a checkbox based on the value of a combobox. More specifically, if the combobox values are "3", "4", "7" or "8", then the checkbox is enabled. I placed the following code in my combobox's AfterUpdate and in the form's OnCurrent, and it works: If COMBO = "3" Then...
Top Bottom