Recent content by Edwinq

  1. E

    identify filled subrecords

    Hi, I would like to know if there is a way to show if a record in a subform is filled with any data. For example: I got a form with a subform and linked records from different tables. We recognize this as a 'plus-sign' in front of the main record. I would like to show these records bold or...
  2. E

    add text to a file from vba

    Could the problem be the header and footer in the rtf ?? thnx
  3. E

    add text to a file from vba

    My files exceed maximum file sizes for uploading as attachments edwin
  4. E

    add text to a file from vba

    OK thanks, Is there a way to add text to this file ? Or a way to remove such a terminator ? The oldfilecontents are read from another .rtf file edwin
  5. E

    add text to a file from vba

    I still don't get it ... The first Print is done, The others aren't Only oldFileContents is written to the file, Addtext and newfileContents2 are not written. I am positive they are not empty. Open FileName & "_" & Bestelnummer & "." & fileExtension For Output As #nextFileNum...
  6. E

    Read control info from other form

    Hi, I'd like to read a label on another form. I thought it would be easy to just read controls(Forms!form!subform!label1) gives me an error the control does not exist. any help would be appreciated. edwin
  7. E

    add text to a file from vba

    Thnx for replies ... I could use a proper error handler, only.. there is no error. text is just not appended. I will try the write variant. ...
  8. E

    add text to a file from vba

    thanks for your help vbaInet, Did you try that with the same lines of code ??
  9. E

    add text to a file from vba

    Yes i am sure it contains text (debug.print helped me there) Should be some way to manipulate text in a word/rtf document. I can replace text in this document, but whenever i try to add or replace a string with more characters than the original text i get stuck.
  10. E

    add text to a file from vba

    If have no "On error resume" anywhere ... no errors are shown ...
  11. E

    add text to a file from vba

    Hi, I'd like to add text to an existing (rtf) file. I tried the following, which does not work, no text is appended: nextfilenum = freefile Open FileName & fileExtension For Append As #nextFileNum Print #nextFileNum, newfilecontents Close nextfilenum any...
  12. E

    Telnet from VBA

    thanks for your reply. Do you have suggestions for "a telnet library"??
  13. E

    Telnet from VBA

    Hi, Is there a way to interact with a shell from vba code ?? Like opening a telnet session, send userid, password, and other commands ? if command returns ok then send next command ?? thanks in advance edwin
  14. E

    Form opened by another form

    Worked great for me ! Thanks a lot edwin
  15. E

    Form opened by another form

    Hi, Is there a way to check how the form was opened ?? meaning: From form "main" I open up form "sub" with command docmd.openform(sub"),,,,acDialog WHen the sub form is open, can i check if it was opened by form Main ? thanks in advance Edwin
Back
Top Bottom