Embedding powerpoing in a windows form

  • Thread starter Aneesh Pulukkul[MCSD.Net]
  • Start date
A

Aneesh Pulukkul[MCSD.Net]

Hi,

I need the some of the functionalities of powerpoint(like wordart,
background template etc) in a windows forms application. Requirement
is to modify/customize the template/theme for letter/invitaions etc.
Is there any way to embedd powerpoint in a windows form. Alternative
is to add the required functionality using custom code,I think. Could
anyone suggest better methods/ solutions. Thanks in advance.

Aneesh P
 
N

Nicholas Paldino [.NET/C# MVP]

Aneesh,

You could try and make your form an active document host, but it would
require a huge amount of effort on your part (using COM interop). There
used to be an OLE Document control in VB6, but it was never brought over to
..NET.
 
A

Aneesh Pulukkul[MCSD.Net]

Aneesh,

You could try and make your form an active document host, but it would
require a huge amount of effort on your part (using COM interop). There
used to be an OLE Document control in VB6, but it was never brought over to
.NET.

--
- Nicholas Paldino [.NET/C# MVP]
- (e-mail address removed)




I need the some of the functionalities of powerpoint(like wordart,
background template etc) in a windows forms application. Requirement
is to modify/customize the template/theme for letter/invitaions etc.
Is there any way to embedd powerpoint in a windows form. Alternative
is to add the required functionality using custom code,I think. Could
anyone suggest better methods/ solutions. Thanks in advance.
Aneesh P- Hide quoted text -

- Show quoted text -

Yeah I was asking about some OLE stuff that can be used in form as
we'd done in VB6.

Thanks Nicholas for the details.

Is there any WYSIWYG editor that can be used in windows form to
simulate the functionality of powerpoint?. I understand that we can
develop a similiar app, but due to time contraints I would need a
ready made one.

Thanks again.
 
N

Nicholas Paldino [.NET/C# MVP]

Aneesh,

There is nothing I can think of offhand that does this. You could
create a user control in VB6 which exposes the OLE Document control and then
access that through COM interop (using an AxHost-derived wrapper).


--
- Nicholas Paldino [.NET/C# MVP]
- (e-mail address removed)

Aneesh Pulukkul said:
Aneesh,

You could try and make your form an active document host, but it
would
require a huge amount of effort on your part (using COM interop). There
used to be an OLE Document control in VB6, but it was never brought over
to
.NET.

--
- Nicholas Paldino [.NET/C# MVP]
- (e-mail address removed)




I need the some of the functionalities of powerpoint(like wordart,
background template etc) in a windows forms application. Requirement
is to modify/customize the template/theme for letter/invitaions etc.
Is there any way to embedd powerpoint in a windows form. Alternative
is to add the required functionality using custom code,I think. Could
anyone suggest better methods/ solutions. Thanks in advance.
Aneesh P- Hide quoted text -

- Show quoted text -

Yeah I was asking about some OLE stuff that can be used in form as
we'd done in VB6.

Thanks Nicholas for the details.

Is there any WYSIWYG editor that can be used in windows form to
simulate the functionality of powerpoint?. I understand that we can
develop a similiar app, but due to time contraints I would need a
ready made one.

Thanks again.
 
A

Aneesh Pulukkul[MCSD.Net]

Aneesh,

There is nothing I can think of offhand that does this. You could
create a user control in VB6 which exposes the OLE Document control and then
access that through COM interop (using an AxHost-derived wrapper).

--
- Nicholas Paldino [.NET/C# MVP]
- (e-mail address removed)




Aneesh,
You could try and make your form an active document host, but it
would
require a huge amount of effort on your part (using COM interop). There
used to be an OLE Document control in VB6, but it was never brought over
to
.NET.
--
- Nicholas Paldino [.NET/C# MVP]
- (e-mail address removed)

Hi,
I need the some of the functionalities of powerpoint(like wordart,
background template etc) in a windows forms application. Requirement
is to modify/customize the template/theme for letter/invitaions etc.
Is there any way to embedd powerpoint in a windows form. Alternative
is to add the required functionality using custom code,I think. Could
anyone suggest better methods/ solutions. Thanks in advance.
Aneesh P- Hide quoted text -
- Show quoted text -
Yeah I was asking about some OLE stuff that can be used in form as
we'd done in VB6.
Thanks Nicholas for the details.
Is there any WYSIWYG editor that can be used in windows form to
simulate the functionality of powerpoint?. I understand that we can
develop a similiar app, but due to time contraints I would need a
ready made one.
Thanks again.- Hide quoted text -

- Show quoted text -

Okay Nicholas, thanks for your time.

Im planning to send the datafrom windows app to powerpoint using VSTO
and get the updated data from PPT back to win form. Does
interoperability supports asynchronous calls?. Actually I would need
to capture the modified data from PPT once the user saves the data in
PPT. In that case it would be better to have async calls to check
whether user modification is completed.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top