Recent content by Robert

  1. Robert

    File Date and Time

    > I also notice you're on 8.3, and I didn't think FILE-INFO:FILE-CREATE-DATE, FILE-CREATE-TIME, FILE-MOD-DATE > and FILE-MOD-TIME were supported until V9? (I'm fully expecting to be corrected here). No correction needed Nick. You're right, the attributes FILE-MOD-DATE, FILE-MOD-TIME and...
  2. Robert

    File Date and Time

    For what Nick says FILE-MOD-DATE and FILE-MOD-TIME would be the only available alternative for you, on UNIX. But if this doesn't work, you could always do an os-command("ls -l " + filename + " > /tmp/tempfile") and then parse the contents of the file /tmp/tempfile, but I admit that this...
  3. Robert

    File Date and Time

    Check the FILE-INFO handle. Try: FILE-INFO:FILE-NAME = "/data/files/theFile" NO-ERROR. And then: DISPLAY String (FILE-INFO:FILE-CREATE-DATE, "99/99/9999") format "X(20)" STRING (FILE-INFO:FILE-CREATE-TIME, "HH:MM:SS") format "X(20)" . Also, it might be worth you looking up the...
  4. Robert

    How do I run another web object in a new window?

    Sorry, for solution 1 to run the script you must add: <form name="mainForm" action="MainPage.r" method="POST"> [your fields here....] <input type="button" value="Continue" onClick="getPages()"> </form> Also for an other alternative in solution 2 check the replace function (javascript).
  5. Robert

    How do I run another web object in a new window?

    >I am trying to run a second web object (using: run-web-object) >from my current page but it is appearing in the same window >above the first object. Aimee, you want to generate two pages on a single request? This can't be done on a single http request, that's just the way http works...
  6. Robert

    how to hide the url

    > i want to hide the part of /scripts/cgiip.exe/WService= > and leave it just like http://host-name is there a way to do it? You can hide the the cgiip.exe/Wservice=...... by setting up a WSC file. To configure this refer to the webspeed on-line docs...
  7. Robert

    How do you use WebSpeed

    > Some people think that Embedded Speedscript is the way to go, > others that CGI-Wrappers.... Roland, you know that you've got 3 options to develop your application: Speedscript, Mapped-HTML and CGI-wrappers. What direction you choose to develop you application depends on a number of...
  8. Robert

    How do you use WebSpeed

    > I take it the speedscript needs to be processed server-side like ASP? Yes, Webspeed does server-side scripting (only) like ASP. > How does this affect what web servers you can use? I've seen webspeed used with IIS and Netscape Enterprise. You can find a full list of webservers supported...
  9. Robert

    How do you use WebSpeed

    It's a rather bleak picture that you are painting. Roland, you say that you have a project on the way so I assume that you might not want to research around for alternative products and schedule a rewrite of what you have produced so far... If you are looking for an active webspeed...
  10. Robert

    Handling CDO.Configuration

    Hello there. I wonder if some of you may have used CDO from progress 4gl. What I'm trying to achieve is a batch program (under W2000) that will generate and send html formated e-mail. At the moment we have a MAPI based program that generates plain text e-mails. According to the...
Top