Search results

  1. S

    Field copy in Table

    Tnx allot for your help so far.
  2. S

    Field copy in Table

    no dont need want to get rid of it after it is split. Here is wat exacly must happen and dont have any idea where to start. i import a text file with different fields. the first field contains a 13 digit number and i want to split this number in 2 to generate 2 seperate numbers. this is an...
  3. S

    Field copy in Table

    at the moment just trying with a button, but i dont even get the value of the field into a varuble. this is my code. Option Compare Database Private Sub Command0_Click() Dim aaaa As String Dim bbbb As String aaaa = toets.table1.NSC MsgBox (aaaa) End Sub
  4. S

    Field copy in Table

    or must it be more like this? Mid(field1, 2, 2) = field2
  5. S

    Field copy in Table

    This is how i understan from what the help gives me how it should look like. Private Sub Command0_Click() Mid(table1.NSC,2[,2]) End Sub
  6. S

    Field copy in Table

    How does this work? do i put it in a query? I just want to add the field will aloways contain 13 numbers but the numbers differ totaly. Tnx
  7. S

    Field copy in Table

    Howdi. Im new with access but can help my self. What i want to do is copy parts of a field into a new field. For example: Now: field1 000011110000 want it to be: field1 field2 000011110000 1111 Tnx allot.
  8. S

    Auto crate table

    Grate tnx allot
  9. S

    Auto crate table

    I c. It is basicly a work hour overtime system i want to write. What will work the best?
  10. S

    Auto crate table

    what i want to do is: I have a "create user form" if i click add i want the program to automatically create a new table with certain fields for each new user added? Tnx
Back
Top Bottom