Recent content by urikoa

  1. urikoa

    Simple code not working in .net

    {mfdeclre.i} FOR EACH so_mstr NO-LOCK WHERE so_dom = global_domain : DISPLAY so_nbr so_cust so_ship . END. this printScreen is the result from the .Net UI after i've compiled it in character mode(in unix server).
  2. urikoa

    Simple code not working in .net

    Hi, I always working with GUI version until today . Now I learning .net version and i can’t to run simple program in .net: {mfdeclre.i} FOR EACH so_mstr NO-LOCK WHERE so_dom = global_domain : DISPLAY so_nbr so_cust so_ship . END. The program working in GUI and CHARACTER but not...
  3. urikoa

    Simple code not working in dot net

    Not relevant for this forum .
  4. urikoa

    Using Excel Comments with Selection

    The answer : ExcelAppl:ActiveSheet:Range("A" + STRING(LN)):AddComment . ExcelAppl:ActiveSheet:Range("A" + STRING(LN)):Comment:Visible = FALSE . ExcelAppl:ActiveSheet:Range("A" + STRING(LN)):Comment:TEXT(cmm) ...
  5. urikoa

    Using Excel Comments with Selection

    Hi to all How do I translate this macro into progress syntax ? Range("D2").Select Range("D2").AddComment Range("D2").Comment.Visible = False Range("D2").Comment.Text Text:="SIT Users:" & Chr(10) & "test com" & Chr(10) & "" Selection.ShapeRange.ScaleWidth 2.15, msoFalse...
  6. urikoa

    what is the BATCH OPTION ?

    what is the BATCH OPTION ?
  7. urikoa

    change value of toggle box using button

    Thanks , it`s working .
  8. urikoa

    change value of toggle box using button

    Hi I need to check all toggle boxes using my check all button. following my code, but it still won`t update my toggle-box when clicking the buttons. What do I need to do in order to change the toggle box value when pushing the button ? DEFINE VARIABLE doc AS LOGICAL VIEW-AS TOGGLE-BOX...
Top