Search results

  1. M

    Button LABEL = image + text

    Thanks. So no progress way, just took the easy road. And the buttons look fine. Cheers
  2. M

    Button LABEL = image + text

    That's indeed another option. And I tried that after your suggestion. But that would mean that have to align the image in the button to the far left so that I could overlay the Text on the button on the right (within the outline of the button). They other way around (button with text label and...
  3. 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...
  4. M

    Temporary set windows default printer

    If you have one I would greatly appreciate it.
  5. M

    Temporary set windows default printer

    Thanks tamhas, I tried Method 2, but no luck. We have workstations on w2k and xp so I changed "winspool.dll" to "winspool.drv" and used the run command in different forms. run SetDefaultPrinter("\\servername\printername"). or run SetDefaultPrinter("ip-address"). or run...
  6. 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...
  7. M

    Delete dynamic tablename

    Aha. In the above case I want to empty after a previous transaction is closed. And the 4GL reference indeed mentions a warning about active transactions. But still, If I do want to do that during an active transaction, how do I pass a temp-table name to that procedure that does the for each.
  8. M

    Delete dynamic tablename

    :brick:I obviously wanted to do it the hard way :blush1: There is no mention of EMPTY TEMP-TABLE in my Progress Online reference chm. I guess it's either incomplete or really old. I now have a 4GL reference pdf and there it is... Thanks for your help. ps: I'll just go crawl in a little...
  9. 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...
  10. M

    Accept dot from keypad as comma in DEC

    Thanks Ruud. Works like a charme (ofcourse). If I read the code out loud it's so obvious ;) Logic, pure logic. In a UI it's just those little details that make it good. Grtz. Marco
  11. 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.
  12. 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