Recent content by THenry

  1. T

    Insert Current Date Into Field

    All right! That worked nicely! :D Thanks for all the help on this thread, really appreciate it :D
  2. T

    Insert Current Date Into Field

    The textbox is bounded to a field called DateStamp in my table...
  3. T

    Insert Current Date Into Field

    Yes, my subform object and name are both called Contact. When I edit the data in Contact subform, the DateStamp is not updated. But when I edit the data in Main form, an error pops up, saying that Access can't find the field 'DateStamp' in my expression. This happens using the below codes...
  4. T

    Insert Current Date Into Field

    Pardon me, but I do not get you, how do I check?
  5. T

    Insert Current Date Into Field

    Hmmm... no go... field remains empty after editing some data in contact subform... By the way, my codes are: Private Sub Form_BeforeUpdate(Cancel As Integer) Forms!Main!Contact!DateStamp = date End Sub
  6. T

    Insert Current Date Into Field

    Oh yes... I have a couple of subforms in fact... Subforms: Contact, Education, Employment, Language, NS, Professional, Reference, Skill My form is called Main actually, not Form, as I said in the previous post.
  7. T

    Insert Current Date Into Field

    I'm an amateur in this... do not get what you mean exactly... If my field name is DateStamp and my form is called Form, what's the codes?
  8. T

    Insert Current Date Into Field

    Thanks, that worked. But it only works when I edit some data in my main form... Is there anyway to update the date when I edit data in the subforms too?
  9. T

    Insert Current Date Into Field

    Hmmm... no go... I've set the default value as Date(), but it does not even show up in the text box. I need the value to be shown in the textbox, as the date where the record was last modified, and automatically inserted into a field in my table. Please help, thanks in advance :)
  10. T

    Insert Current Date Into Field

    I have set the default value of my text box to be my current system date by setting its control source as Date(). But I want to enter this date into a field in a table. The problem is, since the control source is already defined as Date(), how can I set the control source to my field's name to...
  11. T

    Help with combo box and query...

    Thanks dude! That worked nicely :D
  12. T

    Help with combo box and query...

    The code is stored in the language table, but i need another table to verify which language belongs to which code right? The "LangChart" table does that in my case.
  13. T

    Help with combo box and query...

    Oops, think I did not phrase myself properly, was too sleepy when post my question :p I want to create a combo box to display the language type from table "LangChart", but upon choosing the language type from the combo box, the value should be entered as "LangCode" into the "Language" table...
  14. T

    Help with combo box and query...

    Hi people... I have 2 tables, "Language"and "LangChart". The 2 tables and joined by a field called "LangCode" in relationship. "Language" will contain the language abilities of the user, with the fields (LangID, LangCode, Level, SubLevel and ID) "LangChart" is just a chart to verify which...
Back
Top Bottom