Click here to Skip to main content
15,924,367 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
hi I asked the question in the wrong place, I'm sorry. My first question is
In VB6 or delphi xe for the ole files and Powerpoit and Excell ... I used
But now I can not find this tool in VS 2010
Example :
in VB6

picture ole in vb6

in Delphi xe

Picture ole in Delphi xe


ole in Visual Studio ?!
Posted
Updated 2-Aug-12 16:57pm
v2
Comments
Christian Graus 2-Aug-12 22:35pm    
Your links do not work, or link to anything legible to me. What are you asking for exactly ? When I google OLE, I find OLE DB, which is not the same thing. I think the answer is, stop using ideas that belong to obsolete languages and use a modern solution, but it's not clear to me what your problem is.
Kenneth Haugland 2-Aug-12 23:33pm    
From OP:

thank you
links change
Please see the pictures
Sergey Alexandrovich Kryukov 3-Aug-12 0:19am    
Agree. OLE was introduces, based on COM, had limited success, than re-branded, revived... The COM itself was a tool to bind OOP languages with non-OOP OS, that is, the crutches...

Now, CLR is OOP-based from the ground level. Talking OLE and COM is just ridiculous, only for compatibility with old trash which never saw real success...
--SA
mohammadriano 3-Aug-12 1:48am    
So, Excel or PowerPoint file on how to use Visual Studio 2010?
Sergey Alexandrovich Kryukov 3-Aug-12 2:08am    
??..

 
Share this answer
 
Comments
Volynsky Alex 3-Aug-12 10:31am    
Please look following article too:
http://www.experts-exchange.com/Programming/Languages/.NET/Visual_CSharp/Q_24938382.html
http://social.msdn.microsoft.com/Forums/pl-PL/clr/thread/c31f2b40-e0ff-4fed-90e7-caac8a4896e0
Sandeep Mewara 3-Aug-12 10:50am    
5!
Volynsky Alex 3-Aug-12 11:02am    
Thanks
Create a windows Application in Visual studio 2010 and copy paste the below code in Form.cs file and run the application.
C#
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Windows.Forms;
using System.Diagnostics;
using System.Threading;

namespace WindowsFormsApplication1
{
    public partial class Form1 : Form
    {
        public Form1()
        {
            InitializeComponent();
        }

        private void button1_Click(object sender, EventArgs e)
        {
            //Use excel.exe for excel and notepad.exe for notepad
            Process p = Process.Start("powerpnt.exe"); 
            Thread.Sleep(500); // Allow the process to open it's window
        }
    }
}
 
Share this answer
 
v2

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900