Search results

  1. A

    INSERT INTO with Loop problem!

    At the end im using the SAME form, the SAME code... but i just deleted the bound between the table, form and form fields... and now is working perfectly!! THANKS!
  2. A

    INSERT INTO with Loop problem!

    I made a mistake... i think is working now... but i have tried only with 2 fields... i will finish the unbounded form with all the fields and then ill tell you if i have any problem! thanks a LOT for making me see that i need an unbounded form! its been 2 days searching on forums >_<
  3. A

    INSERT INTO with Loop problem!

    Is not the same data because i also created 7 textboxes that contains what kind of "Tarifa" that contract have... si maybe i will have 50 contracts with Tarifa = 2.0 and another 20 with Tarifa = 3.0, and i would like to insert all of them with 1 click, they are different also because i dont put...
  4. A

    INSERT INTO with Loop problem!

    Yes it is, i created the form with the "auto create form" tool selecting the contratos table, in the Contratos Form appears all the fields from the Contratos table and after that i created the button
  5. A

    INSERT INTO with Loop problem!

    Hi, i have a problem qith access 2007... the code works but it adds one extra row to the table dont know why... Private Sub Guardar_Click() Dim num20 As Integer num20 = Me.Testo33 For i = 1 To num20 DoCmd.SetWarnings False DoCmd.RunSQL "INSERT INTO Contratos ([Nombre Agente],[Nombre...
Back
Top Bottom