Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations gkittelson on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Search results for query: *

  1. 12345s

    import textfile into access-table

    the thing with the specification worked well, but only if there are the same columns in every file. i have to deal with files, where only some of the table's columns can be found. j
  2. 12345s

    import textfile into access-table

    hi i wrote following sub to import a number of textfiles into a table: Sub import() Dim i As String i = 0 Dim filename As String While i < 158 filename = &quot;C:\&quot; + i + &quot;.txt&quot; DoCmd.TransferText acImportDelim, , &quot;tbl_import&quot;, filename, 1 i = i + 1 Wend End Sub...
  3. 12345s

    wrong data inserted

    hi, i've got following problem: if i insert a datarow into one of my tables, everything works well. (no errors) but when i select this row, the wrong data has been inserted into my primary key field. insert into my_table (prim, a, b) values ('1234','a1','b1'); OK select * from my_table; prim...

Part and Inventory Search

Back
Top