Search results

  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.
  16. J

    How to use SQL select result in a 4GL procedure

    If it is really necessary, you may take the output of the SELECT query in a text file and populate a temp table afterwards.
  17. J

    Problem with database area

    How can I move a table , mistakenly created in the Index Area to the Data Area, without dropping the table and dump and load activity? Thanx in advance.
  18. J

    Mouse Position??

    Hmm... good piece of lateral thinking! ;) Now Rabbit has more than one options!
  19. J

    Mouse Position??

    Define Variable vx As Memptr. Set-size (vx) = 8. Procedure GetCursorPos External "USER32.DLL": Define Output Parameter vX As Memptr. End Procedure. Run GetCursorPos (Output vx). MESSAGE Get-long (vx,1) Get-long (vx,5) VIEW-AS ALERT-BOX INFO BUTTONS OK. Please check if this works with...
  20. J

    Mouse Position??

    Define Var vX As Int Extent 2 No-undo. Procedure GetCursorPos External "USER32.DLL": Define Output Parameter vX As Long. End Procedure. Run GetCursorPos (Output vx). Message vx[1] vx[2] View-as Alert-box Info Buttons Ok. The above code returns you mouse positions. The rest should be...
Top