Search results

  1. L

    filling combo box

    Understand how they work now, this did the trick: DO WITH FRAME default-frame: ASSIGN cboName:LIST-ITEM-PAIRS = ",". FOR EACH users: cboName:ADD-LAST(users.name+ " " + users.firstname, STRING(users.id)). END. END. END PROCEDURE. Thanks for the help.
  2. L

    filling combo box

    When I use: FOR EACH users: DO WITH FRAME default-frame: cboName:ADD-LAST(users.name + " " + users.firstname, users.id). END. END. It gives error 8590 for each record: Ignoring extra argument(s) of <attribute> for <widget id> that is of <LIST-ITEMS> type. (8590) I don't...
  3. L

    filling combo box

    Thanks, I'll try that.
  4. L

    filling combo box

    Hi, I'm trying to fill a combo box with tabledata. I've got a table containing an id, a first name and a last name. The result should be, that the user can select a name in the combobox and that the corresponding id can be retrieved when he has done so. Is it necessary to do everything in...
  5. L

    Exporting plain text

    Thanks, problem solved.
  6. L

    Exporting plain text

    Hi, I'm trying to export records of a table together with plain text to a file, but it keeps on encasing my plain text in quotes. Is there any way to leave them out? Is it wrong, doing it like this: OUTPUT TO C:/output.txt EXPORT table.column1 " and " table.column2...
Back
Top