Recent content by cybvek

  1. C

    Outlook Address Book

    Maybe this, but I'm not sure, because I'can test it (MAPI.Session class is not installed...) (NT4) I tried to registery the cdo.dll but nothing happens; at other machine (W98ME) call the outlook MAPI so if you have installed outlook wich overwrites the express MAPI functions I don't know how...
  2. C

    DB CONNECTION Problem- Appserver & Local Db

    Hi! I'm not sure this is a good idea and will be working I'm quite newbie in adm2, but if you use the "parameterize as variable" function (sdo properties), and create sdo-s with double version: one of with partigon and one without it (dCustp.w dCusts). And you use a global variable which...
  3. C

    Kontext Menue HOW ?

    Hi! Do you think the right click pop-up menu? If so then, use proKB20178, change: CREATE MENU hMenu. to this CREATE MENU hMenu ASSIGN POPUP-ONLY = YES. ----- and ------------------ ASSIGN CURRENT-WINDOW:MENUBAR = hMenu:HANDLE. to this ASSIGN CURRENT-WINDOW:POPUP-MENU =...
  4. C

    Coloured Rows on Dynamic Browse

    The anwser is that KB. When you create the column you save the return handle: bchandle = Browse-Hndl:ADD-LIKE-COLUMN(bh:BUFFER-FIELD("state")). in the display proc: DEFINE VARIABLE hField AS HANDLE NO-UNDO. ASSIGN hField = bh:BUFFER-FIELD("State"). IF...
  5. C

    how to validate fields

    Ohh I missed, this procedure must be in your SDO file! :)
  6. C

    how to validate fields

    Hi! Yes, you're right, you have to check the RowMod field. "A" - add "U" - modify You have to create a preTransactionValidate procedure (you will not find in the override procedures, although the sdo calls it ) And insert your validation code to there. To see more information, look...
  7. C

    One program with two active window

    Thanks, that's it what I want!
  8. C

    One program with two active window

    Hi! Can I create two active windows in one program? One is the main window, and the another is an information window which fields will be updated by a main window's trigger. If I can, then how? Regards, Viktor
  9. C

    Dynamic Browse with no-box

    Hi! I look after this NO-BOX option of the dynamic attribute, but I didn't find anything about it. (Dynaweb, help, prokb), that's why I think you can't do that, sorry :( Regards, Viktor
  10. C

    bgcolour for a single cell in browser

    Hi! Here an example to coloring a browse's cell: ON ROW-DISPLAY OF brTT_Product IN FRAME {&FRAME-NAME} DO: FIND FIRST WT_Selected NO-LOCK WHERE WT_Selected.Code = TT_Collect.Code AND WT_Selected.ProdCd = TT_Product.ProdCd...
  11. C

    Tab order at static widgets

    Sorry, Meanwhile I found, what I want: NEXT-TAB-ITEM,FIRST-TAB-ITEM,LAST-TAB-ITEM.
  12. C

    Tab order at static widgets

    Somebody know how can I set the tab order of the static widgets?(Because the tab-position attribute is read-only) Regards, Viktor
  13. C

    Word through Progress

    I think there are many way to find, here's one: 1 step: Get this key [HKEY_CLASSES_ROOT\Word.Application\CLSID] @="{000209FF-0000-0000-C000-000000000046}" 2 step (Use the step 1 CLSID in this key) [HKEY_CLASSES_ROOT\CLSID\{000209FF-0000-0000-C000-000000000046}\LocalServer32]...
  14. C

    Word through Progress

    CREATE "Word.Application" chAppl CONNECT NO-ERROR. IF NOT VALID-HANDLE(chAppl) THEN CREATE "Word.Application" chAppl. chAppl:Windowstate = 1. /* Maximize */ Regards, Viktor
  15. C

    Open temp table in browser !

    ProKB:19099 There is an example to fill dynamic-temptable and browse Regards, Viktor
Top