Search results

  1. C

    Change Broker URL

    I'm having problems figuring out how to change the broker URL for my CGI Wrapper. I've created a new broker and want to reference it whenever I compile my program. I've changed the broker name the Broker URL text box when I select Preferences and go to the WebSpeed tab. The changes have been...
  2. C

    Temp-Table Data Not Available

    In my WebSpeed application, I'm creating a temp-table and storing a large amount of data in it whenever a user goes between two specific screens. Everything had been working correctly for a while now until today. The data is being written to the temp-table correctly. When the user clicks...
  3. C

    Output File to Mapped Drive

    I'm having problems getting WebSpeed to write a file out to a mapped network drive. Originally, I had WebSpeed output the file to the C:\. This works without any problems. /* Write file to Server_A */ ASSIGN tmpFN = "C:\xml24\MPR\" + tmpRN + ".xml". OUTPUT TO value(tmpFN). I mapped a...
  4. C

    WebSpeed and Firewalls

    I'm not very educated when it comes to working with network related issues, so hopefully what I'm asking will make sense. I'd like to move my WebSpeed app over from our development server to the DMZ. On our DMZ we're running IIS on W2K. We also have Progress Explorer installed on the DMZ...
  5. C

    How to handle apostrophe?

    What is the best way to handle an apostrophe when working with WebSpeed? I've tried the following: ASSIGN MyName = REPLACE(MyName, "'", "''"). But I just end up with: Joe''s Seafood After a few post backs to the server, Joe''s Seafood eventually gets truncated down to Joe. Thanks, CR Junk
  6. C

    Run Non-WebSpeed Procedure

    Can WebSpeed run an existing Progress procedure that is used with one of our existing desktop applications? I tried adding the following to the Main Block in my CGI Wrapper: RUN cp.p. Is this possible? Thanks, CR Junk
  7. C

    Beginner Question - For Each

    I have a "For Each" statement in my code that I'm running. Once a certain condition has been met inside the "For Each" statement, I would like to kill the "For Each" statement. What syntax is used to stop a "For Each" statement? Thanks, CR Junk
  8. C

    Read String Character by Character

    This is really simple, but I'm having problems finding out the correct syntax and function in the Help files for reading a string character by character. Basically I want to get get the lenght of the string and then use a Do loop to read the the string character by character. ASSIGN MyItem =...
  9. C

    Using JavaScript Confirm Pop Up

    I would like to write a JavaScript that will launch a confirmation widow asking the user if they want to process their record. If they click yes, then my Progress code runs. If they click no, then nothing happens. First of all, is this possible? If so, can someone refer me to a sample of this...
  10. C

    Obtain Unique Record with For Each Statement

    Can someone show or refer me to an example that will accomplish this? I'll try my best to explain what I would like to do. I want to obtain the last Customer record in my table using a FOR EACH where the city is unique, ordered by Cust, City. For instance, if this is the data in my Customer...
  11. C

    Beginner Output To Question

    I'm not having much luck on finding out how to do this. I'm new to Progress and I'm still not very familiar with the syntax. I'm writing data out to a text file. I want to give the text file a 4 digit random number, but I can't figure out how to pass this to the OUTPUT TO statement. This is...
  12. C

    Adding Include Files

    This is a newbie question that I have. I'm trying to reference an include (.i) file in my CGI Wrapper, but I am receiving a " pdf_inc.i was not found. (293)" error. Can someone tell me how to reference an include file? I've placed the pdf_inc.i file in the following location on the WebSpeed...
  13. C

    Obtain Values From ASP Pages

    The front-end of our extranet uses an ASP web page to log a user into our system so that they can see our list of online applications. Each user account has a unique ID that is used to query only their records. I am able to pass this ID to other ASP online applications through a session...
  14. C

    Display Report as PDF

    I need to create report as a PDF through WebSpeed. I'm new to WebSpeed so this is all one big learning process for me. This will be an invoice that users will print out and mail in to us. Is it possible to run a CrystalReport through WebSpeed and have it return a PDF to the browser? Are there...
  15. C

    Connect to Progress with ASP.NET

    I'm new to Progress and I was wondering if there are any problems connecting to a Progress database or if there are any limitations. I'm thinking of using ASP.NET and Progress together. In the past, I've always used SQL Server 2000 when working with ASP.NET. Are there any big differences...
Top