how to open excel file directly from mfg/pro

mjdarm

Member
Would like to know whether we can open an excel file directly from mfg/pro?
say i have c.xls in my desktop. while iam in mfg/pro, i would like to open this file directly without getting into excel application.
 
The problem is you have to open the file in something else as MFG/PRO doesn't support things like Excel.

You could have a program that embeds Internet Explorer into a window then opens up the .xls file in that window, so that it looks as though it is part of MFG/PRO and doesn't open up a new application window.
 
I am know how to open internet explorer with window...IS is related to web speed?
and one more thing sir , I am looking for JOB , I have 8 months..exps in MFG/PRO . IS there any apportunity in your company?
 
What are you planning to do by opening/reading Excel files in Mfg/Pro? A little more details would be helpful.

I have developed tools to convert Mfg/Pro reports to Excel directly as well as to read Excel files to import data in Mfg/Pro.

-sanju
 
hi..

I have checked following code by attaching it to MFG/PRO menu.
this code opens the 'c:\test.xls' excel direcly.

eg:
DEFINE STREAM data-export.
DEFINE VARIABLE excelAppl AS COM-HANDLE.
CREATE "Excel.Application" excelAppl.
excelAppl:Visible=true.
excelAppl:Workbooks:OPEN('c:\test.xls').
RELEASE OBJECT excelAppl.

OUTPUT STREAM data-export CLOSE.



hope it wll help u...
 
Back
Top