Search results

  1. jongpau

    work-table problem please help!!!

    Hi Ira_Claire, It does not matter what you create your application in. AppBuilder or Notepad, it is all the same (except that Notepad cannot compile of course). The web is stateless. So if you send something to a web browser, that is that and that is the end of the story. There is NO progress...
  2. jongpau

    Selecting a Fill-in from another fill-in

    Would something like this work? ON RETURN OF fill-in2 OR GO OF fill-in-2 DO: APPLY ENTRY TO FILL-IN1. RETURN NO-APPLY. END. alternatively you could try to apply "back-tab to self", not too sure if that works.
  3. jongpau

    can't find MSS DataServer or ODBC DataServer

    If these are part of your license and if you have entered the serial numbers and control codes for those they should be there... Have you checked your config information (using the Config shortcut in your Progress start menu)? If you did enter the serials and control codes both those data...
  4. jongpau

    Set-cookie

    Do you have your set-cookie function placed within an internal procedure named "output-headers"?
  5. jongpau

    Mysql Odbc

    Knowing how PHP prides itself as being portable etc I sure hope they will not drop Windows support. Although I do remember reading something about support for Windows 9x based versions such as 95,98,ME, and 2000... We'll see what it all brings (patience is a virtue in this case I think)
  6. jongpau

    Mysql Odbc

    Or you can have a go with PHP-GTK; see http://gtk.php.net/ for more info. Last time I used it it felt a little bit strange to use and the UI it produced was not very windows like, but it does allow you to use your old faithful PHP and mySQL and create a Graphical UI with it as well (and all...
  7. jongpau

    Mysql Odbc

    Yes, without the ODBC DataServer you probably will not make it (Progress loves making money so hooking their 4GL up to another database will cost you as well). However, there may be tricks to get around it. In the past I have used a little ActiveX component that allowed you to use an Access...
  8. jongpau

    Using JavaScript Confirm Pop Up

    Depends.... is "the record" some data in a form or something? Do not forget that JavaScript runs on the client and WebSpeed/Progress on the server so these are very much separated. Please explain yourself a little further and then maybe someone can help.
  9. jongpau

    display date

    Why not put the two parts in two separate fields and slam an index on it. That way you can use find-last etc with today's date. It's easy enough to concatenate the two fields into a single string for display purposes...
  10. jongpau

    Radio string

    Can't you just create the radio set as a character and then put the string values you need in the options instead of the integers that you have now?
  11. jongpau

    Order the data

    Or if you don't have a suitable index, add a simple "BY <date-field>" to the query. Should work fine provided that the amount of data in the table is not too much (otherwise adding an index would be a far better idea).
  12. jongpau

    Align data left and at the top

    As to your original question, if you want to drop down 2 lines and then insert a date and some more text, just add it to the string: <field-name> = <field-name> + "<B>":U + (IF <field-name> EQ "":U THEN "":U ELSE "~n~n":U) + STRING(TODAY,"99/99/9999":U) + " ":U + STRING(TIME,"HH:MM:SS":U)...
  13. jongpau

    pass a link to next page

    Have you tried using GET-VALUE(<field name>) in the page that is opened? So cUserName = GET-VALUE("rusername#") cRCode = GET-VALUE("rcode#") Also, if I were you I would use URL-ENCODE when you put the values in the query string, so: "<td> <a href='searchrefdetails.html?rcode#="...
  14. jongpau

    Align data left and at the top

    Mate, sorry, but it will be hard to day anything useful without seeing your code....
  15. jongpau

    Align data left and at the top

    Oops, make that: `REPLACE(HTML-ENCODE(<field-name>),"~n":U,"<BR>":U)` Sorry, the brain is not 100% awake yet
  16. jongpau

    Align data left and at the top

    And if you want to keep any line breaks/new lines in the text (if these are there) you should of course also add a html <br> for each new line. You could do that with something like this `REPLACE(<field-name>,"~n":U,"<BR>":U)` when you put the data in the table cell.
  17. jongpau

    Products

    AFAIK Symix Syteline (the latest/newest versions) is no longer a Progress application. The thing has been converted to VB or something like that. They probably still support the Progress app, but I think that there will be no new development for it. For all the others, well, just Google the...
  18. jongpau

    progress language faq's

    Hi there, For First starts a block with the first record that meets the criteria. You can use this for all sorts of purposes, including being lazy and having to type a little less code than with a "find first, if available" construction ;-) A stream is a handy little "thing" if you want to...
  19. jongpau

    FrameSet in WebSpeed

    Of course you can use a frameset in WebSpeed (however, depending on the use of the site you are about to develop it may be better not to do so, but that is another thing). Just define the frameset like you normally would in html and use your WebSpeed programs instead of html files as the...
  20. jongpau

    using Progess to seach Progress files.

    Try something like this:DEF VAR cLine AS CHAR NO-UNDO. DEF VAR cFile AS CHAR NO-UNDO. DEF STREAM sFile. cFile = "abc.p":U. INPUT STREAM sFile FROM VALUE(cFile) NO-ECHO. REPEAT: SET STREAM sFile cLine. /* Your processing goes here */ END. INPUT STREAM sFile CLOSE.
Back
Top