CodeGuru Home VC++ / MFC / C++ .NET / C# Visual Basic VB Forums Developer.com
Results 1 to 4 of 4
  1. #1
    Join Date
    Apr 1999
    Posts
    12

    Best way to share data with other apps?

    I need to be able to share data from one of my apps with other apps like excel, etc. I know it is possible to control Excel, but I would rather be able to access data from Excel rather than push data into it. I am told that this used to be done with a DDE server. I am not very experienced with Visual C++ and would like to know the easiest way to do this.


  2. #2
    Join Date
    Apr 1999
    Posts
    19

    Re: Best way to share data with other apps?

    As a fellow beginner, I'm kinda shy in the knowledge you need. I do know that the newer form of DDE is the ActiveX system. You may want to focus your energies into that arena of research...




  3. #3
    Join Date
    May 1999
    Location
    Atlanta, GA, USA
    Posts
    443

    Re:Txt file can share with Excel and your application

    Hi.

    If you can keep your data in txt file, you can share this txt file with Excel and your application.
    Excel -> Excel automaiton and its OpenText function which deasl with Text wizard if you open txt file at Excel.
    Your application open txt file CFile and CStudio file and assign the data to your child control.

    HTH.
    -Masaaki Onishi-


  4. #4
    Join Date
    May 1999
    Location
    Canberra, Australia
    Posts
    21

    Re: Best way to share data with other apps?

    You may want to check out the http://www.codeguru.com/atl section for hints on automaticing Office and Excel.

    Chris Maunder

    CodeGuru - the website for developers
    http://www.codeguru.com

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  





Click Here to Expand Forum to Full Width

Featured