Search results

  1. H

    simple question

    Hi Make, I don't know for sure if I understand you but if you want to close a window you can use: APPLY "CLOSE":U TO THIS-PROCEDURE. If you want to close a dialog you can use: APPLY "GO":U TO FRAME {&FRAME-NAME}. You can put this code in the choose-trigger of a button.
  2. H

    Prowin32 sessions hang on exit win2k

    Hello Schmoe, it looks like something is still running. Have you checked that everything is closed correctly? I have encountered this problem once or twice myself and found out that for example a persistent procedure wasn't shut down before the session did. Hope this will help you a little...
  3. H

    Dynamics

    Hi all, I'm using: REPEAT WHILE v-hdl_que:GET-NEXT(NO-LOCK): p-hdl_tmp_tbl:BUFFER-CREATE. p-hdl_tmp_tbl:BUFFER-COPY(v-hdl_buf, v-except). END. to fill a temporary table. Variable v-except is a comma seperated string with fields I don't want to assign. Is there...
  4. H

    4 gl

    I don't think this is possible without using a (temporary) table which is filled with the data you want.
  5. H

    Invalid object file format

    Problem solved.
  6. H

    Invalid object file format

    I have checked if the same file exists earlier in the PROPATH. The only file is the new file so this isn't causing the problem. Can you explain me when a file is a corrupt file. When I test the file in our develop environment everything works ok. No error messages. Can this error occure...
  7. H

    Invalid object file format

    Hi all, I have an error which I have never seen before. It's error 479: Invalid object file format for "blabla". I get this error when I compile client progress code in version 9.1C. I send the .r files to our customer and they place it in the production environment. It's the first time...
  8. H

    Enable Save Button

    Hi Jeff, I don't know if you're using SmartObjects but the statement for enabling widgets is: ENABLE widgets with frame {&FRAME-NAME}. Hope this helps. Henri
  9. H

    Check if there is a radio-set in the window

    Hello Ruben, It's a solution (I think) but I don't know if you want to use it. You have to decide. If you use {&WINDOW-NAME}:FIRST-CHILD you're in the frame. Use FIRST-CHILD again to access the field group. If you walk through all the widgets in your field group using NEXT-SIBLING and...
  10. H

    ms agent not working

    Good day to you, the combo is initialy filled with four (4) optional agents. The agents must exist in directory C:\winnt\msagent\chars. Did you check if these agents exists in this directory? If you haven't got the default agent (which is loaded in the definitions section) you can get an...
Back
Top