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

    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...
  3. 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.
  4. 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...
  5. 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...
  6. 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...
  7. 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...
  8. 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"...
  9. 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...
  10. 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...
  11. 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...
  12. E

    Object Palette

    Hi, Is there a possibility to remove OCX objects from the object palette (91C), i looked for entry's in the progress.cst file, but new added OCX components aren't added here. Which file do i have to consult to see and eventually update the update palette ? Thanx for any response. Emmanuel.
  13. E

    Run Super

    Hi, I've been constructing a tabfolder mechanism in V9 build on TabStrip.OCX. Each "Tab" consists of a .w file which is "parented" to the tabfolder OCX at runtime (not in a frame which is placed immediately on the OCX, but separate .w folders which can be managed separately). So far, "no...
  14. E

    Smartobject Search DIALOG

    Hello, How can you make a search dialog on a Smartobject browse V9 object (ex. SDB with customer information (sports db), button which starts lookup dialog window in which search key on customer name, customer country). I had quit a good example for V8 smartobjects (QUE series -> Using...
  15. E

    3Tier vs. 2Tier

    Hi, The last 6 years i've worked with progress in 2-Tier environment (C/S). A couple of months agoo i started informing myself on 3-Tier Appserver environment. So, i have some little questions about updating records in 3-Tier environment. I'll try to explains my issues with an example...
  16. E

    Entry To First Widget In Frame

    hi, With next code i want to make entry to the first widget of a frame/ DEF VAR vh AS WIDGET-HANDLE NO-UNDO. DEF VAR cWidget AS CHAR NO-UNDO. vh = FRAME {&FRAME-NAME}:HANDLE. vh = vh:FIRST-CHILD. /* field-group */ vh = vh:FIRST-CHILD. /* first widget in field-group*/...
  17. E

    Dynamic Temp-table

    Hi All, I just asked myself the question if it woudl be possible to use a FIND statement to find a certain record within a dynamically created temp-table (in place the result is just 1 record of course) or do we always have to create a query with a FOR EACH, even if the result is only one...
  18. E

    Connect

    Hi, I wander if you can ommit the HOST & SERVICES file where connecting to a database on a remote machine ? We want to connect with -H -S parameters to a remotre machine, but doesn't want to set the ip-name/ip-adress in host file and service-port in services files on the winsysdir HOSTS...
  19. E

    icf related - bugs

    Hi, We are dooing some ICF-testing on a Win2000 platform (Client) and UX-platform Appserver (server running AppServ icfrepos, icf and rv db). We installed the ICF-tool properly with pbuild, made the Astra partition as it should, set the different PROPATH items, configured...
  20. E

    Com-handles In Excel2000

    Hi, Im trying to make a little program for inserting CSV (Comma Separated Value) files in Excel via COM_HANDLING. The point is that i want to open only once excel, so 1 workbook, create the necessary sheets, activate and insert the involved CSV files in the sheets. Creating the Excel...
Top