Acces 2007 probl export requete en txt

VBA 2007 : prob d'exportation de requête dans un fichier txt
depuis l'installation de access 2007, ce qui fonctionnait sous 2000 génère un mess d'erreur : "séparateur du champ de spécification du fichier.txt est identique au séparateur de décimal ou au délimiteur de texte"

comment faire pour que cela fonctionne à nouveau ???

merci
Configuration: Windows XP
Internet Explorer 7.0

2 réponses

  1. bonsoir Mr je voudrais savoir comment cree un site rapide sans que cela me mettre assez de temps si vous pouvez m'aidez faite a mon mail
    0
    1. https://www.118712.fr/sortir.html

      Avant l'exportation de tes tables il faut que créer un fichier schema.ini à l'emplacement de là ou tu veux
      l'exporter

      \schema.ini

      [Authors.TXT]
      ColNameHeader = True
      CharacterSet = 1252
      Format=Delimited(;)
      Col01="Au_ID" Integer
      Col11="Author" Char Width 50
      Col21="Year Born" Short

      [Publishers.TXT]
      ColNameHeader = True
      CharacterSet = 1252
      Format=Delimited(;)
      Col01="PubID" Integer
      Col11="Name" Char Width 50
      Col21="Company Name" Char Width 255
      Col31="Address" Char Width 50
      Col41="City" Char Width 20
      Col51="State" Char Width 10
      Col61="Zip" Char Width 15
      Col71="Telephone" Char Width 15
      Col81="Fax" Char Width 15
      Col91="Comments" LongChar Attribute 32

      [Title Author.TXT]
      ColNameHeader = True
      CharacterSet = 1252
      Format=Delimited(;)
      Col01="ISBN" Char Width 20
      Col11="Au_ID" Integer

      [Titles.TXT]
      ColNameHeader = True
      CharacterSet = 1252
      Format=Delimited(;)
      Col01="Title" Char Width 255
      Col11="Year Published" Short
      Col21="ISBN" Char Width 20
      Col31="PubID" Integer
      Col41="Description" Char Width 50
      Col51="Notes" Char Width 50
      Col61="Subject" Char Width 50
      Col71="Comments" LongChar Attribute 32
      0