Click here to Skip to main content
15,895,740 members
Home / Discussions / C#
   

C#

 
GeneralRe: merge using C# [modified] Pin
StoneCOLD70918-Mar-09 8:04
StoneCOLD70918-Mar-09 8:04 
Questionerror while inserting table with autonumber using MsAccess Pin
sakthi06karthi18-Mar-09 3:51
sakthi06karthi18-Mar-09 3:51 
AnswerRe: error while inserting table with autonumber using MsAccess Pin
Jerry.Wang18-Mar-09 3:58
Jerry.Wang18-Mar-09 3:58 
GeneralRe: error while inserting table with autonumber using MsAccess Pin
sakthi06karthi18-Mar-09 4:06
sakthi06karthi18-Mar-09 4:06 
GeneralRe: error while inserting table with autonumber using MsAccess Pin
sakthi06karthi18-Mar-09 4:09
sakthi06karthi18-Mar-09 4:09 
GeneralRe: error while inserting table with autonumber using MsAccess Pin
Xmen Real 18-Mar-09 4:12
professional Xmen Real 18-Mar-09 4:12 
AnswerRe: error while inserting table with autonumber using MsAccess Pin
musefan18-Mar-09 4:19
musefan18-Mar-09 4:19 
QuestionCopying embedded powerpoint object from richtextbox into powerpoint Pin
mailtogj18-Mar-09 3:33
mailtogj18-Mar-09 3:33 
Hi
I have an application that contains a richtextbox with ole objects embedded into it.
The ole objects are imported from source files.
I am able to edit all embedded objects in their respective native applications except for powerpoint objects.
The powerpoint objects are activated as powerpoint slideshows and thus its not possible to edit these objects in native application.

Is it possible to change the default activation of ole powerpoint embedded objects from powerpoint slideshow mode to powerpoint presentation editing mode?

If not i also worked with the code (http://www.codeproject.com/KB/edit/richtextboxplus.aspx)

IRichEditOle richEditInterface = this.RichText.GetRichEditOleInterface();
// Create an object to hold info about the requested RTF object.
REOBJECT reObject = new REOBJECT();
IntPtr pPptObject = IntPtr.Zero;
richEditInterface.GetObject(0, reObject, GetObjectOptions.REO_GETOBJ_POLEOBJ)
// (You can get a GUID using the OLE/COM object viewer.
Guid guid = new Guid("{64818D10-4F9B-11CF-86EA-00AA00B929E8}"); // this is the GUID for powerpoint
// Query for the interface we want.
Marshal.QueryInterface(reObject.poleobj, ref guid, out pPptObject );
//i hope the following code typecasts the ole object (actually a powerpoint) into a powerpoint - but i have no clue of it
PowerPoint.Presentation ppt = (PowerPoint.Presentation)Marshal.GetTypedObjectForIUnknown(pPptObject, typeof(PowerPoint.Presentation));

Is it possible to use above code to activate this in powerpoint application editing mode?

Regards
GJ
QuestionExecute a C# App without installing .Net Framework ! Pin
Mohammad Dayyan18-Mar-09 3:08
Mohammad Dayyan18-Mar-09 3:08 
AnswerRe: Execute a C# App without installing .Net Framework ! Pin
musefan18-Mar-09 3:12
musefan18-Mar-09 3:12 
GeneralRe: Execute a C# App without installing .Net Framework ! Pin
Mohammad Dayyan18-Mar-09 3:26
Mohammad Dayyan18-Mar-09 3:26 
GeneralRe: Execute a C# App without installing .Net Framework ! Pin
musefan18-Mar-09 3:40
musefan18-Mar-09 3:40 
GeneralRe: Execute a C# App without installing .Net Framework ! Pin
Mohammad Dayyan18-Mar-09 3:43
Mohammad Dayyan18-Mar-09 3:43 
GeneralRe: Execute a C# App without installing .Net Framework ! Pin
Xmen Real 18-Mar-09 3:49
professional Xmen Real 18-Mar-09 3:49 
AnswerRe: Execute a C# App without installing .Net Framework ! Pin
Jerry.Wang18-Mar-09 3:13
Jerry.Wang18-Mar-09 3:13 
GeneralRe: Execute a C# App without installing .Net Framework ! Pin
Mohammad Dayyan18-Mar-09 3:16
Mohammad Dayyan18-Mar-09 3:16 
GeneralRe: Execute a C# App without installing .Net Framework ! Pin
Dan Neely18-Mar-09 4:35
Dan Neely18-Mar-09 4:35 
AnswerRe: Execute a C# App without installing .Net Framework ! Pin
#realJSOP18-Mar-09 3:30
mve#realJSOP18-Mar-09 3:30 
GeneralRe: Execute a C# App without installing .Net Framework ! Pin
Mohammad Dayyan18-Mar-09 3:39
Mohammad Dayyan18-Mar-09 3:39 
AnswerRe: Execute a C# App without installing .Net Framework ! Pin
Rob Philpott18-Mar-09 3:30
Rob Philpott18-Mar-09 3:30 
GeneralRe: Execute a C# App without installing .Net Framework ! Pin
Mohammad Dayyan18-Mar-09 3:40
Mohammad Dayyan18-Mar-09 3:40 
AnswerRe: Execute a C# App without installing .Net Framework ! Pin
12Code18-Mar-09 3:44
12Code18-Mar-09 3:44 
GeneralRe: Execute a C# App without installing .Net Framework ! Pin
Xmen Real 18-Mar-09 3:53
professional Xmen Real 18-Mar-09 3:53 
GeneralRe: Execute a C# App without installing .Net Framework ! Pin
Mohammad Dayyan18-Mar-09 3:54
Mohammad Dayyan18-Mar-09 3:54 
GeneralRe: Execute a C# App without installing .Net Framework ! Pin
Mohammad Dayyan18-Mar-09 3:53
Mohammad Dayyan18-Mar-09 3:53 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.