User Profile

Collapse

Profile Sidebar

Collapse
JennDub
JennDub
Last Activity: Oct 14 '09, 08:14 PM
Joined: Oct 7 '09
Location: Virginia
  •  
  • Time
  • Show
  • Source
Clear All
new posts

  • The input mask actually upgrades any text entered into all caps using the ">" symbol. It would eliminate the need for a user to click the "Caps Lock".
    See more | Go to post

    Leave a comment:


  • DanicaDear,
    You could use an input mask such as ">aaaaa" in the text box "Input Mask" property. You would need to continue the a's above for as many characters as you would like to allow the user to enter.

    ~JennDub
    See more | Go to post

    Leave a comment:


  • JennDub
    replied to Age Group
    lolodede,
    You could do this a couple of ways: either place the code to calculate the age group in an Event (On_Open for a continuous form displaying multiple records at once or On_Current if you are displaying one record at a time) to update the displayed value in "Age Group" or create a non-visible calculated field for each record (place the age calculation using System Date vs. DOB in it) and run the "Age Group" off...
    See more | Go to post
    Last edited by JennDub; Oct 8 '09, 01:34 PM. Reason: corrected typo

    Leave a comment:


  • JennDub
    replied to Query Expressions
    g diddy,
    I think you're referencing the wrong field in your IIF statement. If you would like find out whether the data in one table (StudentID) exists in the other and display them as the calculated field named "Here", you might want to try to replace your IIF statement in the SQL with:

    Code:
    IIf(IsNull([SpecialNeedsStudents].STUDENTID), "", "exists in database") AS Here
    From your first...
    See more | Go to post

    Leave a comment:


  • JennDub
    replied to Query Expressions
    Function Missing Argument

    g diddy,
    I think that if you change your IIF statement to read:
    Code:
    IIf(IsNull([SpecialNeedsStudents].Here), "", "exists in database")
    the "wrong number of arguments" error will be resolved. When you started your "IsNull" criteria you began with a "(" but did not include an ending ")" after the field name. Once th IIF statement...
    See more | Go to post
    Last edited by NeoPa; Oct 7 '09, 07:03 PM. Reason: Please use the [CODE] tags provided.

    Leave a comment:

No activity results to display
Show More
Working...