Recent content by Tyndie

  1. T

    Textfield Max Characters

    Thats great thanks :)
  2. T

    Textfield Max Characters

    Thanks, the textfield is unbound, sorry should of specified that.
  3. T

    Textfield Max Characters

    Is there a attribute for setting the max amount of characters in a textfield, I have thought about adding some code in the on keypress event, to lock the textfield once the required amount of characters has been reached, but I was hoping there would be a more simple way.
  4. T

    Updated Record using ADODB

    Hi, I am having problems updating a record in a table using adodb: My code is: Dim sqlStr As String sqlStr = "UPDATE (Students INNER JOIN Student_Contacts ON Students.stuID = Student_Contacts.stuID) INNER JOIN Student_Enrollments ON Students.stuID = Student_Enrollments.stuID SET...
  5. T

    Partial Searching

    Hi, I have a listbox on my form, which I use the datasource as, and a textfield which I use as the search time. I have a command set on change for the textfield to change the datasource, and I would like it to change on every keypress so it automatically updates the listbox with the records...
  6. T

    Auto Increment Letters and Numbers

    Hi, Is there anyway possible of having a primary key, where first a set of two numbers increment to 99, and then a letter is incremented like so: AA00 AA01 ..... AA99 AB00 If this is possible, does anyone have any tips on how to do this please?
Back
Top Bottom