Recent content by muthu

  1. M

    Error when use argument 12 of mfmrw.i

    Hi all, I modified the program sosomtu2.p by giving 12th argument for include mfmrw.i {mfmrw.i "sod_det" sod_part sod_nbr string(sod_line) """" ? sod_due_date open_qty "DEMAND" {&sosomtu2_p_2} sod_site "MUTHU" } and tried to...
  2. M

    Modify Partition of SDO on runtime

    Hi all, I would like to know whether we can modify the partition of a SDO during runtime. I want to use the same SDO for two different Appserver partition. TIA Muthu
  3. M

    HOW TO VERIFY WINNT PASSWORD THRU PROGRESS

    Hello Everybody, The code below is what I tried. The result is a failure. what is wrong in my code? Is there any other simple way? ON ANY-PRINTABLE OF passwd IN FRAME DEFAULT-FRAME /* password */ DO: Passwd = SUBSTRING(Passwd, 1, LENGTH(SELF:SCREEN-VALUE)) +...
  4. M

    Windows API - Getting the NT domain

    Getting details from WIN2000 The Win.ini is loaded basically to overcome the normal progress.ini or any initialisation file which you have written for progress. if you use the command get-key-value from the section "WINLOGON" (for your kind info it is very well available in WIN2000 registry...
  5. M

    Windows API - Getting the NT domain

    How to find NT domain thru progress define var outval as char format "x(50)". define var inifile as char init "c:\winnt\win.ini". load inifile. use inifile. get-key-value section "winlogon" key "cacheprimarydomain" value outval. unload inifile. if outval = ...
Top