How to embed information data and retrieve it from other applications
-
How to embed information data and retrieve it from other applications? I have a proprietary data file format that contains graphical data. I would like to embed customer and job related data and be able to extract the data to display in other applications (i.e. Excel). I would assume I could place the data in my file format anyway I want. But how does Excel or other application extract this data. Do I write a DLL with functions to extract the fields of information? I’m open to any ideas but I’m limited to VC++ 6.0 (no .NET, C#) Many thanks in advance Tony Teveris
-
How to embed information data and retrieve it from other applications? I have a proprietary data file format that contains graphical data. I would like to embed customer and job related data and be able to extract the data to display in other applications (i.e. Excel). I would assume I could place the data in my file format anyway I want. But how does Excel or other application extract this data. Do I write a DLL with functions to extract the fields of information? I’m open to any ideas but I’m limited to VC++ 6.0 (no .NET, C#) Many thanks in advance Tony Teveris
-
How to embed information data and retrieve it from other applications? I have a proprietary data file format that contains graphical data. I would like to embed customer and job related data and be able to extract the data to display in other applications (i.e. Excel). I would assume I could place the data in my file format anyway I want. But how does Excel or other application extract this data. Do I write a DLL with functions to extract the fields of information? I’m open to any ideas but I’m limited to VC++ 6.0 (no .NET, C#) Many thanks in advance Tony Teveris
Yes, you can do it. To be specific it should be ATL COM Dll which implemenets IDExtensibilty2 interface. This COM dll will be loaded when excel comes up. When user chooses to open the selected file, a notification will be fired by excel application to all the listners of IAppEvents. At this stage, component should read from file and stuff it in Excel columns. Check out more for COM add-in dlls in Office applications. Hth, Ramu
-
How to embed information data and retrieve it from other applications? I have a proprietary data file format that contains graphical data. I would like to embed customer and job related data and be able to extract the data to display in other applications (i.e. Excel). I would assume I could place the data in my file format anyway I want. But how does Excel or other application extract this data. Do I write a DLL with functions to extract the fields of information? I’m open to any ideas but I’m limited to VC++ 6.0 (no .NET, C#) Many thanks in advance Tony Teveris