Search results

  1. T

    ASYNCHRONOUS in the AppServer

    Thanks for the answer, but it's not the solution ... I tryed already - doesn't work.
  2. T

    ASYNCHRONOUS in the AppServer

    I have AppServer "A" and AppServer "B". In "A" have a procedure "proc_in_A" that run asynchronous a procedure that resides in "B". Have a statement like in "A" (it's in "proc_in_A"): RUN someproc.p ON SyncSrv ASYNCHRONOUS SET async_hndl EVENT-PROCEDURE "p_asch_finish" NO-ERROR. someproc.p...
  3. T

    GUI: nest a frame inside another one

    Спосибо большое :))) I think now I have everything I needed!
  4. T

    GUI: nest a frame inside another one

    That's perfect! But the child window became current, and it reacts on the close button up there, I mean that if the user try to close the program, he close the current window and the program is still alive. I can handle this by some close procedure, but is it possible to set something in the...
  5. T

    GUI: nest a frame inside another one

    One more question, once I have the child window nested in the main prog, how is possible to remove it from there?
  6. T

    GUI: nest a frame inside another one

    Спосибо! Тhat's what I needed! Now will try it.
  7. T

    GUI: nest a frame inside another one

    Hi I have one main program (.w), and several child programs (.w just interface with some functionality). Have a place in the main one, where I want to put the frames from the child pages. For example, when we have some menu on the left (nodes), and we want on every click on the node to change...
  8. T

    Create Buffer

    Yes, that is working, but this is not working: DEFINE TEMP-TABLE temp_table_name FIELD Field1 AS CHARACTER. DEFINE VARIABLE hTempTable AS HANDLE NO-UNDO. PROCEDURE p_CreateBuffer : CREATE BUFFER hTempTable FOR TABLE "temp_table_name". END PROCEDURE. RUN p_CreateBuffer. The problem is...
  9. T

    Create Buffer

    I have this in one procedure: DEF VAR vh_TblBuf AS HANDLE NO-UNDO. CREATE BUFFER vh_TblBuf FOR TABLE "temp_table_name". The temp_table_name is TEMP TABLE! And receave error here: Could not create buffer object for table temp_table_name. (7334) If I move this code in the main block of...
  10. T

    Microsoft TreeView Control, version 5.0

    Hi! I would like to use TreeView Control, but when I choose it from Palette, and try to drop it in the project, I reseaved error messsage, that don't have a licence to use it! The problem also appear when I open a project, and if there is some ActiveX control - error message and nothing appear...
Top