Search results

  1. E

    Appserver

    Hi, I was wondering how to get a batch of records from a stateless appserver session to a client session. Theoretically it's quit simple. On the client side you connect to the appserver, you set your batch size, ex. 50 recs in one batch, on the serverside you create a query, put the 50 first...
  2. E

    Api - Print Word Document

    Thanx a lot for your efforts, i'll try it out !
  3. E

    Api - Print Word Document

    Yes, the document already exists in a predifined path.
  4. E

    Api - Print Word Document

    Good idea, but this will take me some time to figure this out with the com-handle thing. So can anybody help me with some sample code ? Thanx. Emmanuel
  5. E

    Api - Print Word Document

    Hi, I use next api-call to print directly a word-document from within Progress. This works fine, but there is 1 counterpart, namelly by each print Word opens, gets in front, prints & closes. If at this time you are working in another program focus is lost. Is there an alternative to this api...
  6. E

    SmartObject SmartToolbar

    Hi All, Is there a notification procedure which returns the last selected button by the user. Ex. the user updates a field in a smartviewer, and pushes the "save" button in the linked SmartToolbar. Can this event be triggered within the containing window ? Thanx for any response Emmanuel.
  7. E

    SmartObjects refresh problem

    Hi, I am "struggling" quit a bit with adm So's. I've made a little simple program which does next (connected to sports2000 db): - An oder sdo - An orderLIne sdo - An order sbd - An orderline sdb and sdv So, i get a list of orders and related orderlines, i can create/update/delete new...
  8. E

    Delete with dynamic buffer on Appserver

    Hi, I few days agoo i've send a mail concerning an update on appserver with a dynamic buffer. solution was to wrap transaction around the buffer-copy. Now i have the same problem with a delete, even with the rans wrapped around the buffer-delete, the delete still isn't executed on the server...
  9. E

    Commit on Appserver

    Hi All, I was just looking with a colleage to the commit problem, when i had some of "lightning" in my head ! I found it once, you have to wrap a transaction around the buffer-copy while using dynamic objects ! Any way, thanx for the responses, Emmanuel
  10. E

    Commit on Appserver

    Hi, I have a problem while commiting database recs on an appserver procedure. I have 2 procs, 1 local which holds the updated row when the user presses the saverec button. This record is sent to the appserver procedure as table-handle. On the appserver there is also a buffer for the...
  11. E

    Delete Object 91c

    Correction: It is not qhTTChanged but the buffer bhTTChanged which gives the error.
  12. E

    Delete Object 91c

    Hi, I get next error message when i want to execute delet object on a temp-table handle: Cannot delete the default buffer for a TEMP-TABLE object-delete the TEMP-TABLE object instead (328) (9037) This is a snapshot of the code: /* TT handle is returned from appserver session */ RUN...
  13. E

    Flat Attribute For Dynamic Button

    I'll remember this one ! Thanx again.
  14. E

    Dynamic Temp-table On Appserver

    Thanx Paul !
  15. E

    Flat Attribute For Dynamic Button

    Hi, I tray to set the FLAT-BUTTON attribute for a dynamic created button but i get next error: *** UNABLE TO SET FLAT-BUTTON because the BUTTON widget has been realized. (4053) /* CODE FRAGMENT */ /* DYNAMIC CREATION BUTTON BEGINS */ CREATE BUTTON hCurBtn IN WIDGET-POOL "ToolBar"...
  16. E

    Dynamic Temp-table On Appserver

    Hi Paul, That's true, Progress indeed sends table definition & table-data along with teh TABLE-HANDLE , the records can be viewed by accessing the default-bufer-handle and creating a query on it, i implemented these features already in my application before, and these work fine indeed. But...
  17. E

    Dynamic Temp-table On Appserver

    Hi, In an appserver session I create a dynamic temp-table, which is returned as TABLE-HANDLE output parameter to the calling procedure. The goal is to fill a local dynamic temp-table with the records of the TABLE-HANDLE of the output parameter. I don't now which table will be returned by...
  18. E

    Image On Dynamic Buttons

    That's indead the right solution. Thanx for you help !
  19. E

    Image On Dynamic Buttons

    Hi All, I have a little problem while creating dynamics buttons, as i want to assign "dynamically" bitmaps to the dynamically created buttons. So i have a scoped-define TOOLBAR which holds the buttons to create, they are the same as the bitmap file to load. Then i run the procedure to...
  20. E

    Super With Appserver

    Hi, Is it possible to use super procedure with appserver ? I made next little program, let's say main.p which is at client side (local) and driver.p which resides on appserver side. So, from within main.p i connect to AppServer and run the driver procedure persistent, then i put it in...
Top