Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Posted to microsoft.public.vb.general.discussion,microsoft.public.powerpoint,microsoft.public.excel.programming,microsoft.public.vb.controls
external usenet poster
 
Posts: 9
Default embedded object

Hi,

I am trying to figure out how to create an object that users can insert
into Powerpoint and Excel by going to Insert--Object (and I will
hopefully be able to insert one programmatically as well).

The behavior I need from my object is very similar to that of MS Graph.
I want to be able to go to "Insert--Object", and instead of choosing
MSGraph, choose MyObject. Then, I would like to be able to click on the
created instance on the slide/worksheet and be able to format it--the
same way that a user can interact with MSGraph, but of course with
whatever functionality I write.

What is the best way to do this? I am getting a bit confused with
ActiveX controls/exes/dlls and OLE objects and not sure what to use. I
can create a control that can be added from the control toolbox, but not
through Insert--Object. Also, I'm not sure how to go about adding to
it the functionality similar to MSGraph.

I truly appreciate any help you might be able to give me!

Thanks in advance,

-Casey
  #2   Report Post  
Posted to microsoft.public.vb.controls,microsoft.public.vb.general.discussion,microsoft.public.excel.programming,microsoft.public.powerpoint
external usenet poster
 
Posts: 1
Default embedded object

Hi,

Check: http://www.powerpointmagician.com/ar...dynamicppt.htm

Look at the sections titled "A Show in a Show" and "Visual Basic and
PowerPoint"

Glenna

"C Williams" wrote:

Hi,

I am trying to figure out how to create an object that users can insert
into Powerpoint and Excel by going to Insert--Object (and I will
hopefully be able to insert one programmatically as well).

The behavior I need from my object is very similar to that of MS Graph.
I want to be able to go to "Insert--Object", and instead of choosing
MSGraph, choose MyObject. Then, I would like to be able to click on the
created instance on the slide/worksheet and be able to format it--the
same way that a user can interact with MSGraph, but of course with
whatever functionality I write.

What is the best way to do this? I am getting a bit confused with
ActiveX controls/exes/dlls and OLE objects and not sure what to use. I
can create a control that can be added from the control toolbox, but not
through Insert--Object. Also, I'm not sure how to go about adding to
it the functionality similar to MSGraph.

I truly appreciate any help you might be able to give me!

Thanks in advance,

-Casey

  #3   Report Post  
Posted to microsoft.public.vb.controls,microsoft.public.vb.general.discussion,microsoft.public.excel.programming,microsoft.public.powerpoint
external usenet poster
 
Posts: 9
Default embedded object

Thanks for the info, Glenna. However, I am already familiar with how to
insert existing objects, and I've worked a fair amount with VB and VBA
as they pertain to Powerpoint.

What I'm looking for specifically is how exactly to tell
Powerpoint/Excel about an (activex?) object I've written so that it will
appear in the dialog box that opens upon Insert--Object. Also, I would
like to know how to set up interactions between powerpoint and my
object, as I described below (similar to how one interacts with msgraph).

Thanks for anything you or anyone else might be able to contribute!

-Csey

PPTMagician wrote:
Hi,

Check: http://www.powerpointmagician.com/ar...dynamicppt.htm

Look at the sections titled "A Show in a Show" and "Visual Basic and
PowerPoint"

Glenna

"C Williams" wrote:


Hi,

I am trying to figure out how to create an object that users can insert
into Powerpoint and Excel by going to Insert--Object (and I will
hopefully be able to insert one programmatically as well).

The behavior I need from my object is very similar to that of MS Graph.
I want to be able to go to "Insert--Object", and instead of choosing
MSGraph, choose MyObject. Then, I would like to be able to click on the
created instance on the slide/worksheet and be able to format it--the
same way that a user can interact with MSGraph, but of course with
whatever functionality I write.

What is the best way to do this? I am getting a bit confused with
ActiveX controls/exes/dlls and OLE objects and not sure what to use. I
can create a control that can be added from the control toolbox, but not
through Insert--Object. Also, I'm not sure how to go about adding to
it the functionality similar to MSGraph.

I truly appreciate any help you might be able to give me!

Thanks in advance,

-Casey

  #4   Report Post  
Posted to microsoft.public.vb.controls,microsoft.public.vb.general.discussion,microsoft.public.excel.programming,microsoft.public.powerpoint
external usenet poster
 
Posts: 27
Default embedded object

What I'm looking for specifically is how exactly to tell
Powerpoint/Excel about an (activex?) object I've written so that it will
appear in the dialog box that opens upon Insert--Object. Also, I would
like to know how to set up interactions between powerpoint and my
object, as I described below (similar to how one interacts with msgraph).


You wouldn't need to tell PowerPoint about it specifically; it'd need to be a
server application that's registered with Windows itself. Beyond that, I'm
afraid I can't help much. MS Press has a book by Adam Denning (ActiveX
Controls Inside Out) that looks like it might be useful.



Thanks for anything you or anyone else might be able to contribute!

-Csey

PPTMagician wrote:
Hi,

Check: http://www.powerpointmagician.com/ar...dynamicppt.htm

Look at the sections titled "A Show in a Show" and "Visual Basic and
PowerPoint"

Glenna

"C Williams" wrote:


Hi,

I am trying to figure out how to create an object that users can insert
into Powerpoint and Excel by going to Insert--Object (and I will
hopefully be able to insert one programmatically as well).

The behavior I need from my object is very similar to that of MS Graph.
I want to be able to go to "Insert--Object", and instead of choosing
MSGraph, choose MyObject. Then, I would like to be able to click on the
created instance on the slide/worksheet and be able to format it--the
same way that a user can interact with MSGraph, but of course with
whatever functionality I write.

What is the best way to do this? I am getting a bit confused with
ActiveX controls/exes/dlls and OLE objects and not sure what to use. I
can create a control that can be added from the control toolbox, but not
through Insert--Object. Also, I'm not sure how to go about adding to
it the functionality similar to MSGraph.

I truly appreciate any help you might be able to give me!

Thanks in advance,

-Casey



-----------------------------------------
Steve Rindsberg, PPT MVP
PPT FAQ: www.pptfaq.com
PPTools: www.pptools.com
================================================


  #5   Report Post  
Posted to microsoft.public.vb.controls,microsoft.public.vb.general.discussion,microsoft.public.excel.programming,microsoft.public.powerpoint
external usenet poster
 
Posts: 9
Default embedded object

Thanks, Steve--I'll check that book out. And yeah, you're right--I can
see that this isn't specific to PowerPoint or Excel, but I was hoping
(and still am!) that someone might have tried something like this before!

Thanks!

-Casey

Steve Rindsberg wrote:
What I'm looking for specifically is how exactly to tell
Powerpoint/Excel about an (activex?) object I've written so that it will
appear in the dialog box that opens upon Insert--Object. Also, I would
like to know how to set up interactions between powerpoint and my
object, as I described below (similar to how one interacts with msgraph).



You wouldn't need to tell PowerPoint about it specifically; it'd need to be a
server application that's registered with Windows itself. Beyond that, I'm
afraid I can't help much. MS Press has a book by Adam Denning (ActiveX
Controls Inside Out) that looks like it might be useful.



Thanks for anything you or anyone else might be able to contribute!

-Csey

PPTMagician wrote:

Hi,

Check: http://www.powerpointmagician.com/ar...dynamicppt.htm

Look at the sections titled "A Show in a Show" and "Visual Basic and
PowerPoint"

Glenna

"C Williams" wrote:



Hi,

I am trying to figure out how to create an object that users can insert
into Powerpoint and Excel by going to Insert--Object (and I will
hopefully be able to insert one programmatically as well).

The behavior I need from my object is very similar to that of MS Graph.
I want to be able to go to "Insert--Object", and instead of choosing
MSGraph, choose MyObject. Then, I would like to be able to click on the
created instance on the slide/worksheet and be able to format it--the
same way that a user can interact with MSGraph, but of course with
whatever functionality I write.

What is the best way to do this? I am getting a bit confused with
ActiveX controls/exes/dlls and OLE objects and not sure what to use. I
can create a control that can be added from the control toolbox, but not
through Insert--Object. Also, I'm not sure how to go about adding to
it the functionality similar to MSGraph.

I truly appreciate any help you might be able to give me!

Thanks in advance,

-Casey



-----------------------------------------
Steve Rindsberg, PPT MVP
PPT FAQ: www.pptfaq.com
PPTools: www.pptools.com
================================================




  #6   Report Post  
Posted to microsoft.public.vb.controls,microsoft.public.vb.general.discussion,microsoft.public.excel.programming,microsoft.public.powerpoint
external usenet poster
 
Posts: 27
Default embedded object

In article <TvzGd.4503$Vx2.3401@trndny01, C Williams wrote:
Thanks, Steve--I'll check that book out. And yeah, you're right--I can
see that this isn't specific to PowerPoint or Excel, but I was hoping
(and still am!) that someone might have tried something like this before!


Certainly it's been done. You just need to find out how and by whom. ;-)

"Just" he says.


Thanks!

-Casey

Steve Rindsberg wrote:
What I'm looking for specifically is how exactly to tell
Powerpoint/Excel about an (activex?) object I've written so that it will
appear in the dialog box that opens upon Insert--Object. Also, I would
like to know how to set up interactions between powerpoint and my
object, as I described below (similar to how one interacts with msgraph).



You wouldn't need to tell PowerPoint about it specifically; it'd need to be a
server application that's registered with Windows itself. Beyond that, I'm
afraid I can't help much. MS Press has a book by Adam Denning (ActiveX
Controls Inside Out) that looks like it might be useful.



Thanks for anything you or anyone else might be able to contribute!

-Csey

PPTMagician wrote:

Hi,

Check: http://www.powerpointmagician.com/ar...dynamicppt.htm

Look at the sections titled "A Show in a Show" and "Visual Basic and
PowerPoint"

Glenna

"C Williams" wrote:



Hi,

I am trying to figure out how to create an object that users can insert
into Powerpoint and Excel by going to Insert--Object (and I will
hopefully be able to insert one programmatically as well).

The behavior I need from my object is very similar to that of MS Graph.
I want to be able to go to "Insert--Object", and instead of choosing
MSGraph, choose MyObject. Then, I would like to be able to click on the
created instance on the slide/worksheet and be able to format it--the
same way that a user can interact with MSGraph, but of course with
whatever functionality I write.

What is the best way to do this? I am getting a bit confused with
ActiveX controls/exes/dlls and OLE objects and not sure what to use. I
can create a control that can be added from the control toolbox, but not
through Insert--Object. Also, I'm not sure how to go about adding to
it the functionality similar to MSGraph.

I truly appreciate any help you might be able to give me!

Thanks in advance,

-Casey



-----------------------------------------
Steve Rindsberg, PPT MVP
PPT FAQ: www.pptfaq.com
PPTools: www.pptools.com
================================================




-----------------------------------------
Steve Rindsberg, PPT MVP
PPT FAQ: www.pptfaq.com
PPTools: www.pptools.com
================================================


  #7   Report Post  
Posted to microsoft.public.vb.controls,microsoft.public.vb.general.discussion,microsoft.public.excel.programming,microsoft.public.powerpoint
external usenet poster
 
Posts: 9
Default embedded object

Ah yes...the big "just." I will post back here if I figure it out
before someone else clues me in.

Steve Rindsberg wrote:

In article <TvzGd.4503$Vx2.3401@trndny01, C Williams wrote:

Thanks, Steve--I'll check that book out. And yeah, you're right--I can
see that this isn't specific to PowerPoint or Excel, but I was hoping
(and still am!) that someone might have tried something like this before!



Certainly it's been done. You just need to find out how and by whom. ;-)

"Just" he says.


Thanks!

-Casey

Steve Rindsberg wrote:

What I'm looking for specifically is how exactly to tell
Powerpoint/Excel about an (activex?) object I've written so that it will
appear in the dialog box that opens upon Insert--Object. Also, I would
like to know how to set up interactions between powerpoint and my
object, as I described below (similar to how one interacts with msgraph).


You wouldn't need to tell PowerPoint about it specifically; it'd need to be a
server application that's registered with Windows itself. Beyond that, I'm
afraid I can't help much. MS Press has a book by Adam Denning (ActiveX
Controls Inside Out) that looks like it might be useful.




Thanks for anything you or anyone else might be able to contribute!

-Csey

PPTMagician wrote:


Hi,

Check: http://www.powerpointmagician.com/ar...dynamicppt.htm

Look at the sections titled "A Show in a Show" and "Visual Basic and
PowerPoint"

Glenna

"C Williams" wrote:




Hi,

I am trying to figure out how to create an object that users can insert
into Powerpoint and Excel by going to Insert--Object (and I will
hopefully be able to insert one programmatically as well).

The behavior I need from my object is very similar to that of MS Graph.
I want to be able to go to "Insert--Object", and instead of choosing
MSGraph, choose MyObject. Then, I would like to be able to click on the
created instance on the slide/worksheet and be able to format it--the
same way that a user can interact with MSGraph, but of course with
whatever functionality I write.

What is the best way to do this? I am getting a bit confused with
ActiveX controls/exes/dlls and OLE objects and not sure what to use. I
can create a control that can be added from the control toolbox, but not
through Insert--Object. Also, I'm not sure how to go about adding to
it the functionality similar to MSGraph.

I truly appreciate any help you might be able to give me!

Thanks in advance,

-Casey


-----------------------------------------
Steve Rindsberg, PPT MVP
PPT FAQ: www.pptfaq.com
PPTools: www.pptools.com
=============================================== =




-----------------------------------------
Steve Rindsberg, PPT MVP
PPT FAQ: www.pptfaq.com
PPTools: www.pptools.com
================================================


Reply
Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes

Posting Rules

Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On


Similar Threads
Thread Thread Starter Forum Replies Last Post
Is the object linked, or embedded? JustSomeGuy Excel Discussion (Misc queries) 5 March 11th 08 07:08 PM
embedded pdf object [email protected] Excel Worksheet Functions 1 October 8th 07 04:32 PM
Getting an embedded object to stay put paulsuk Excel Discussion (Misc queries) 2 March 6th 07 03:27 PM
Link To Embedded Object Brainfire Excel Discussion (Misc queries) 0 June 21st 06 02:40 PM
Embedded Object Flickering dlerh Excel Discussion (Misc queries) 0 May 2nd 06 07:56 PM


All times are GMT +1. The time now is 04:17 PM.

Powered by vBulletin® Copyright ©2000 - 2025, Jelsoft Enterprises Ltd.
Copyright ©2004-2025 ExcelBanter.
The comments are property of their posters.
 

About Us

"It's about Microsoft Excel"