Search results

  1. J

    Browser In Webspeed

    Our business logic is stored on the server in 4gl. The XML we send to the client is basically the information that needs to be displayed on the screen therefore DOM seems ok. The messages are just managing UI. The client UI only knows to say, "Hello, I am finished with screen 5, the user clicked...
  2. J

    Browser In Webspeed

    I have been doing progress for about a year too with pretty much no training. I have never used the app builder, its apparently good, we develop on linux and I use vi instead. We do some development for a system, MFG/PRO, to my understanding its using v9 progress. We currently parse XML using...
  3. J

    How to: from mysite.com/dir/index.wsa/hello.w to mysite.com/dir/index/hello

    I havn't used it, but looks promising: http://www.opcode.co.uk/components/rewrite.asp
  4. J

    Browser In Webspeed

    thnaks NOdrog82. I am writng a browse system at the moment to use a xml rpc style interface that will work with the qad mfg/pro browse definitions. I will let you know how I am going.
  5. J

    boring life itself

    What version of progress is tmahroof running?
  6. J

    Adjusting Column width of a table

    i tested this code under mozilla, I havnt tested IE. http://www.experts-exchange.com/Web/Web_Languages/JavaScript/Q_20745137.html
  7. J

    Adjusting Column width of a table

    This code is where you are already at. I will see if I can find something that actually does what you want. I do remeber looking for something like this before, but I forget where it was from.
  8. J

    Adjusting Column width of a table

    is this what you want? <table width="200px" border="1" title="Table Heading"> <tr><th>Heading</th></tr> </table> <div style="width: 220px; height: 100px; overflow: auto"> <table width="200px" border="1" title="Table Body"> <tr><td>Item</td></tr> <tr><td>Item</td></tr>...
  9. J

    Adjusting Column width of a table

    There is no way that I know of that you can do this, perhaps some really strange javascript. May I ask why you are doing it this way?
  10. J

    On-Line Traffic

    Do you really need to register on all the search engines? If you pick the top 5 then that gives fairly good coverage. In other languages (perl,php) its quite easy to post to urls. I remember using a perl script some time ago to post to 15 search engines, if you want I could look for that.
  11. J

    Search and Display

    A cheap and nasty way could be to use frames. Have a top frame that saids loading then reduces its size to nothing when the bottom frame containing your search results finally loads. If you want to actually have a true progress bar, I am not sure if you can force html out at various stages, as...
  12. J

    Web Design & Hosting:Presentations ,Demos,Intros.

    Are you talking about flash style intros? Do these intro's need to automatically created based on a database or something?
  13. J

    New to webspeed

    This question is to test my understanding of webspeed, the program mentioned is hypothetical. Is this program possible in webspeed? Write a stateful program that on every request will incremement a counter and display it to a user? Without passing the current value around in cookie,form or...
Top