Search results

  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

    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
  3. 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...
  4. 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
  5. 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
  6. E

    attachment in field from VBA

    hi there, I like to fill a recordfield with type attachment from vba. should be something like With table .Addnew !field1 = something !field2 = somethingelse !field3 = [here i want to point to a file on disk] .update End with any ideas ? thanks in advance edwin
  7. E

    set attachment in table from vba

    hi there, I like to fill a recordfield with type attachment from vba. should be something like With table .Addnew !field1 = something !field2 = somethingelse !field3 = [here i want to point to a file on disk] .update End with any ideas ? thanks in advance edwin
  8. E

    Open Dialog box

    In a form, i would like to open the connection manager, so the user can select which tables to reconnect. The user should not rightclick the tables for the connection manager to open. How can i accomplish that ? thanks in advance.. Edwin
  9. E

    setfocus next textbox

    Hi, I have a form with 5 textboxes, for entering a license code. When the first textbox is filled with the 4 digits, i want to sefocus to next textbox automaticly. Now users have to press TAB after each textbox. Thanks. edwin
  10. E

    Form won't open

    Hi there, I have an application that opens a form with a simple "docmd.openform("formname")" On two out of four machines the form opens. The other two systems only say "calculating" for a few seconds and nothing else. pretty sure it's a pc or user setting, but which one ?? thanks in...
Back
Top Bottom