Recent content by Jupiter

  1. J

    Email Excel report

    If I have understood your requirement correctly; you are not sure where the Excel file was generated. You can save the file in a known location first and then send the file as an attachment through your email client.:)
  2. J

    Calling IExplore.exe from Progress Program

    Just replied to the same topic at http://www.progresstalk.com/showthread.php?t=114795
  3. J

    Calling IExplore.exe from Progress Program

    The following code can start IE Browser and one need not search for the location of the .exe file. DEFINE VARIABLE chBrowserApplication AS COM-HANDLE. Create "InternetExplorer.Application" chBrowserApplication. chBrowserApplication:visible = True. The HTML file can be loaded through a...
  4. J

    Star Office

    This is an old thread but the topic being in the same line I chose to reopen this thread instead of creating a new one. In a project where Star Office compliance is required, I am stuck with creating "Charts" in Start Office using 4GL. Please help. Thanks in advance.
  5. J

    Effort Estimation Template

    Hi, Can any body suggest an effort estimation template that suites Progress Development? Thanx in advance.
  6. J

    search inside the .p .w and .i files possible?

    Just wanted to share my experience. Windows search for a text string helps in Windows 2000 and 2003 but not in XP. But there are tools like ZTreeWin that does it for you. For example, if you want to know how many files in your source code uses "dbname.tablename.fieldname" string in a system with...
  7. J

    invoking Microsoft Word (spelling)though Progress problem

    Hi Mike, Just checked your code in Windows XP OS and with MS-Word 2007 and OE10.01B. This is working. So the issue may lie with Windows Vista. Regards
  8. J

    sending xml through progress

    Hi joey, please provide the link. Thanks Taqvia, for the code snippet. As of now, I have used an implementation which looks as follows: postRequest = 'POST ' + postUrl + ' HTTP/1.0~r~n' + 'Content-Type: text/xml~r~n' + 'Content-Length:' + string(length(postData)) +...
  9. J

    sending xml through progress

    Faced similar kind of problem. Need to send XML online to a web service through http POST method. How can this be implemented? Any help is deeply appreciated. Thanks
  10. J

    Star Office

    Thans Manfred. This will serve my purpose. Thanks again!
  11. J

    Star Office

    Hi, How do we integrate Star Office with Progress 4GL? Please help. Thanks in advance.
  12. J

    .Exe file for 4GL source code

    Hi, Please provide information on how to create .EXE file for 4GL source code. Also need information on required license. Thanks in advance.
  13. J

    Problem with database area

    Thnax a lot..
  14. J

    Progress DB + VB.NET

    You may use Data Direct for Open Edge or MEARNT for lower versions and create a ODBC Data Source and access through VB interface
  15. J

    Problem with database area

    Both 9.1D & 10.0B, OS: Windows 2000 Server & Windows 2003 server. Actually we have different deployments where Schema changes are done through incremental df loading. Tables are newly created transaction tables. Less than 100000 records.
Top