Recent content by micropalla

  1. M

    Only one access to DB

    I've tried but it doesn't seem to function.... Bye Lorenzo
  2. M

    Only one access to DB

    Hi guys !! I've got this problem and I would like to know if you can help me... I've made a DB and I've put hit into a server. Now it is possible for two persons in the same time to open the DB and to insert records... This is really bad because there is the risk to overwrite some record...
  3. M

    Forms button

    The forms navigation button... If you have asked me this I think it's not possible :D Bye
  4. M

    Forms button

    Hi guys !! Do you think it's possible to change the name of form's buttons ? For example to change "<" with "Back" and ">*" with "New record" ?? Let me know, I'm trying since two days without many results... Bye and thanks Lorenzo
  5. M

    New record

    Hi everybody. I would like to know if you can help me with this... You know that when I open a mask it shows the first record I've in there. Is it possible to show directly the new record I've got to put in ? Thanks to everybody and have a nice day !! Lorenzo
  6. M

    Increasing number

    YES !!! :D :D :D :D This is what I want !!! Many tahnks to everyone and expecially to you !!! Thanks again !! Lorenzo
  7. M

    Increasing number

    So... here is the DB... You will find a form named Protocolli out. If you open it you can see that there is a hidden counter and the first field is "Numero Protocollo" (3410). I would like that this number increase itself automatically every new record (3411, 3412, ecc..) Can anybody help me...
  8. M

    Increasing number

    Thanks to everybody for the help but up till now it doesn't seem to function.... Can anybody help me watching my Database ? I could send it by email.... Please... I'm will be very grateful... Lorenzo
  9. M

    Increasing number

    Ok, ok, i've understand that I've to modify the "Befor Update" of the form. I've put a code like this, could it be right ?? Private Sub Numero_Protocollo_BeforeUpdate(Cancel As Integer) Me.txtNumero_Protocollo = Nz(DMax("[Numero_Protocollo]", "[Protocolli_in]"), 0) + 1 End Sub It seems it...
  10. M

    Increasing number

    Of course my tables and fileds are named with spaces, so I've got to put the brackets. Moreover I can't find FORM .... Please, help me, my version of Access 2000 is not in English... Thanks a lot Lorenzo
  11. M

    Increasing number

    Have a little patience... have I got to put this code changing only the two names of my control and table in the Befor_Update of the control that i want to increase by one ?? Pressing the button "..." ?? I've tried but it gives me an error in syntax.... Thanks for your patience...
  12. M

    Increasing number

    Hello !! It's my first post in this forum and I hope you can help me... I've a table with an ID counter that increase obviously every time of one number and another field in which 'till now I wrote a number by myself. Now I would like that this second number is increased of 1 automatically by...
Back
Top Bottom