Search results

  1. A

    IMPORT STREAM Query

    I always use for the reading part: repeat: do transaction: CREATE Tbook. IMPORT STREAM instream Tbook no-error. doneone = doneone + 1. end. end. The transaction mechanisme will keep your table and variables clean. Regards, Alexander Vermeulen
  2. A

    Search .p .wfiles within directory

    I find search&replace from InfoRapid a very good freeware product. I use it a lot for finding text in my Progress sourcecode. http://www.inforapid.de/html/searchreplace.htm
  3. A

    While processing....

    I see two ways: 1. ajax 2. some css and a webspeed trick. 1. Create a page displaying some text within a DIV: <DIV id=sometext>Some text asking the user for patience</DIV> Then within the page get some HTML throug Ajax from your webspeed server and then change the innerHTML of the DIV with...
  4. A

    work-table problem please help!!!

    This way you are trying to get it done in Javascript. But just try it the Progress way.... save this as a .p (twoform.p for example) in the propath of your webspeed server. CREATE WIDGET-POOL. &Scoped-define PROCEDURE-TYPE Procedure &Scoped-define DB-AWARE no {src/web2/wrap-cgi.i}...
  5. A

    WebSpeed and Windows Registry

    Keep in mind that WebSpeed is server-based. So you are trying to change the registry on the server not on the pc of the user. Also it is not posible to change the user-account on a user-base. The webspeed broker and all its agents are running on the same user-account and you have to stop/start...
  6. A

    work-table problem please help!!!

    I advise you to use two frames in one page like this: <form id="sub" method="post"> <input type="hidden" name="function" value="subs"> <input type="text" name="code1"> <input type="text" name="code2"> <input type="text" name="code3"> <input type="text" name="code4"> <input...
  7. A

    XREF Across Workspaces

    What do you define as a workspace? I have put my XRF-Tool on the internet as an Open Source project (http://www.xrftool.tk). It put relevant XREF information in a database. Some work still needs to be done, but I think it is easy to add an extra field in the XRF database so you can add...
Top