You are not logged in. You can browse in the PowerBASIC Community, but you must click Login (top right) before you can post. If this is your first visit, check out the FAQ or Sign Up.
DOS and Windows programs cannot communicate directly (to the best of my knowledge). Interprocess communication (the preferred method of sharing data between two or more 32-bit Windows applications) is not supported between DOS apps and Windows apps. But DOS apps can access the Windows clipboard (in limited ways), posting information on it for the Windows application and reading information from it.
You can use a file to share data between applications. You must be careful to lock the file when writing to it, and you may have to do some extra work if your program supports multiple users over a network, but there is no inherent reason the programs cannot use a file.
When you said, "I could not use an ASCII file...", was this a design issue, or did you get some kind of error message? (If you are not locking the file, you will almost certainly have problems.)
Alan
------------------
Alan C. Earnshaw
Information Management Systems, Inc. http://www.infoms.com
We process personal data about users of our site, through the use of cookies and other technologies, to deliver our services, and to analyze site activity. For additional details, refer to our Privacy Policy.
By clicking "I AGREE" below, you agree to our Privacy Policy and our personal data processing and cookie practices as described therein. You also acknowledge that this forum may be hosted outside your country and you consent to the collection, storage, and processing of your data in the country where this forum is hosted.
Comment