Recent content by rober1967

  1. R

    BeforeInsert Problem

    Yes, you're right. I made it, now it work like a charm..Thank you. :)
  2. R

    BeforeInsert Problem

    You're right in beforeinsert the texbox are null because are not created. I changed my validation in afterupdate and manage it with a macro. Thanks.:)
  3. R

    BeforeInsert Problem

    Hi, I've a problem in the BeforeInsert event of my form Temi. I putted this validation code: If IsNull(Me.descrizione) Then Cancel = True MsgBox "Descrizione Obbligatoria", vbInformation, "Validazione" Me.descrizione.SetFocus Me.Undo End If but if I try to...
  4. R

    sync a form and two subforms

    Solved, I used a query conditioned to the value of the first related subform field and to guarantee referential integrity I replaced the value of the related code of the second subform with the value of the first subform code on beforeupdate, a requery oncurrent and it seems work... I attached...
  5. R

    sync a form and two subforms

    Hi, I'm new to access 2007 and I've been breaking my head over this problem for 2 days now and haven't managed to find a solution! I've a form named "Temi" that include other two subforms "Eventi" and "Esiti". Temi is related to Eventi with a field named "codice_tema", and Eventi is related to...
Back
Top Bottom