Search results

  1. A

    I Need Help !! I lost my source files!!

    There is a decompiler for version 6 code on FAST4GL in downloads/utilities. http://www.fast4gl.com/index.html
  2. A

    What books?

    Answers What is the extension for the file the DB is saved as? .db Where will I find it? You will normally have a copy of the demo sports database in your c:\DLC directory. Databases can be saved pretty much anywhere though. (On the client, on the server etc...). How is the...
  3. A

    Save Word Document on Database

    Ideas: Progress wouldnt have been my first choice in creating a file sharing system. Most servers allow you to assign rights to users for individual files. If you create a good network structure you should have no problems with this simple solution. You could of course create an Intranet...
  4. A

    Create a new MS Word document

    For using OLE commands there is a good example of this on the www.dotr.com website. But simply to open an existing word document you need the following commands: DEF VAR chWordApplication AS COM-HANDLE NO-UNDO. create "Word.Application" chWordApplication. chwordapplication:visible =...
  5. A

    Can I put a Windows Me question here?

    Luckily I havent had to expierence "Windows My Enemy" yet. Unfortunately these happy days are drawing to an end and my last source for windows 98 liscences has informed me he cant get them anymore. I shall start experimenting with Windows ME and if i find any problems/solutions will let you...
  6. A

    Action logging

    Not really a solution just another idea: A few of the databases have the following 4 fields in every table: Creator_User, Creator_Date, Changer_User, Changer_Date. Every save is then recorded in the record in the table directly. The problem is of course that you dont know what has been...
  7. A

    Book

    to be honest progress provide the best tool I know with the software in the form of Dynatext. There are lots of examples here. If you dont have the software already you can look at http://www.global-shared.com/api/index.htm?apisite.js this site has lots of helpful examples and starts off...
  8. A

    Extracting Lots of Data

    Progress You can check your progress version by double clicking the file called progress.cfg which is normally located in a directoy called or starting with DLC. if you locate the file called prowin 32 you can create a shortcut icon to it and then select the program _edit.p as schown...
  9. A

    Automation for Acrobat Reader

    Viper Checkout the tools4progress website and the software viper: http://www.tools4progress.com/english/viper1-eng.html This is a print system software which also prints to acrobat and creates pdf files. If you look at the source code after installing the program you may be able to solve...
  10. A

    JProgress

    Hi, You can download Jprogress from this link: http://www.peg.com/utilities/JProgress.zip There is also a link on this site too: http://www.compitum.nl/gen/english/progtool.htm hope this helps
  11. A

    Movax

    Nothing to do with progress - but has anyone heard of a computer system called movax? If so please let me know where i can find out more about it. Thanks Andrew Price
  12. A

    Error Leaving Excel Automation

    Think i solved it!!! I managed to manipulate your code to get it running without mfg/PRO and got the same problem... I played a bit and then realised that you haven't closed your workbook. The workbook can not of course remain open when excel is closed and therefore you get an error! The...
  13. A

    Prgrs73e

    er... What progress program are you trying to run. I have had a similar error with some ERP software. I tracked it down to the screen resolution first of all. Changing the screen resolution solved the problem but this was of course not satisfactory. In the end I located 2 unregistered ocx's...
  14. A

    Error Leaving Excel Automation

    Code example that works... I put your code into one of my old programmes... I changed it a bit to fit in with my data that i upload from a text file using the variable txtfile. The code worked fine so I have cut it out and pasted it here: /* ------ Start ---- */ DEF VAR...
  15. A

    Error Leaving Excel Automation

    perhaps this will help... I am not sure what the problem is... if the error is an excel error you could try writing this line under your create excelapplication code line: chExcelApplication:DisplayAlerts = FALSE. It turns off excels alerts, i use it when saving my files in excel from...
  16. A

    Error Leaving Excel Automation

    Sorting in Excel What is the error message? I have performed a sort in excel 2000 using the following code example: CHWORKSHEET:Range("A2:H4"):Sort( CHWORKSHEET:Range("B2"), /* Key1 */ 1, /* Order1 */ , /* Type1 */ CHWORKSHEET:Range("A2"), /* Key2 */ 1, /* Order2 */ , /* Type2...
  17. A

    Excel OLE Group function

    Can anyone help with the group function in excel? The group function has 4 parameters start, end, by, matrix. I can initiate a selection of a group using the following code: CHWORKSHEET:Range("A2:H" + string(vrow + 3)):Group( CHWORKSHEET:Range("B2:B" + string(vrow + 3)),,,). My...
  18. A

    Help!!!

    ODBC Sites Download Merant ODBC from: http://www.merant.com Or download Openlink ODBC and instructions from http://www.innov-8.de/Openlink2.htm
  19. A

    ODBC with Progress Version 8?

    Depends on your ERP system... The Merant driver is quite good, however I have not yet been able to get it successfully running with the proALPHa erp system which runs on version 8. If you are trying to connect to proALPHa I recommend trying the openlink drivers which can be downloaded from my...
  20. A

    Umlauts and Streams

    Can anyone help? I am using the "output to printer" command to send a stream containing adress fileds to the local printer. The problem is that the address fields contain umlauts (i.e. Ü). The umlauts are not properly printed. Does anyone have any idea how I can print the umlauts out using the...
Back
Top