Search results

  1. M

    Button LABEL = image + text

    Hi All, I'm trying to define a button that has a little image + textlabel next to it. I've seen this done before but can't figure out how to achieve this. Defining a button with a textlabel, no problem ofcource. Defining a button with an image (image-up), no problem ofcource. A button with...
  2. M

    Temporary set windows default printer

    Hi all, In a query I generate a pdf with PDFInclude and at the end it prints the file (stored in cFilename) with ShellExecuteA. Before that the user has the possibility to choose the a printer to print to. SYSTEM-DIALOG PRINTER-SETUP UPDATE OKpressed. IF OKpressed THEN...
  3. M

    Delete dynamic tablename

    I have several different temp-tables and at some point after some operation I need to empty those tables so I can start all over again. So I want to do something like this: DEF TEMP-TABLE LabelData FIELD... ... DEF TEMP-TABLE AddressData FIELD... ... [...some procedure to fill...
  4. M

    Accept dot from keypad as comma in DEC

    Hi all, I have a decimal var and a user has to input an amount. For input the keypad is used. But the dot on the keypad doesn't work. The NUMERIC-FORMAT is "European" btw. How can I use the dot on the keypad as the decimal delimiter. ON "." OF dMeters DO: ??? END.
  5. M

    tt to XML and array attributes

    Hello everyone, I'm stuck with generating an xml file from a temp-table for third party software. In particular the array fields that are in the temp-table. Examples that I found don't really help me much because in those examples every extent in an array gets it's own node and I need an array...
Top