Search results

  1. C

    check if there is a file available in the filesystem

    Hello, I need a special function. I have to check if there is a file in a directory in the filesystem. Example: \\server\directory1\directory2\file.txt If the file is not there, a second function should make me a copy from Example: c:\temp\example.txt to...
  2. C

    add 3 variables to 1

    Thanks! It works good.
  3. C

    add 3 variables to 1

    Hello, I want to add 3 variables to one. Example: variable1 = hello1 variable2 = hello2 variable3 = hello3 The output for my new variable should be: hello1hello2hello3 Can anybody help me with this question?
  4. C

    Asci - Ansi

    Ascii - Ansi Hello, I want to put data from a field to a file, but I do not get the correct format. Example: OUTPUT TO (filename). PUT UNFORMATTED STRING(Table.Field). PUT UNFORMATTED STRING(';'). It works, but the data is in Ascii, I want to have it in Ansi. Does somebody know a solution...
  5. C

    Replace character in a field

    Thanks for this quick reply, it works!
  6. C

    Replace character in a field

    Hello, I want to replace the charakter '*;*' in a database field called "Artikel". Example: Field "Artikel" contains the expression "House ; with ; white windows" and I want to change this to "House x with x white windows" Is there a solution for this question?
  7. C

    Delete file in filesystem

    Thanks Guliver, perfect solution, it works.
  8. C

    Delete file in filesystem

    Hello, I want to delete a file (e. g. c:\export\exportprogress.txt) with progress commands. File permission is given for everyone and the file is not protectetd. Is it possible to to this with progress commands? Is there a progress command witch supports UNC \\Sever\folder\file.txt
  9. C

    data export with put to a file

    Thanks Gulliver! It works pretty good.
  10. C

    data export with put to a file

    Hello, I want to put data from a field to a file, but I do not get the correct format. The field-name of the field is "Preis" and the format is z,zzz,zz9.99 The command is: PUT UNFORMATTED STRING(xxx.Preis). If the price is 30,00, I get 30 in the export file. This is wrong, I want to have...
Back
Top