Using objcets of Office Library

S

Scott McDaniel

The developer editon of Access provides you with the methods (and licensing)
to distribute the .ocx, .olb etc etc associated with the various references
you make while developing. Other than that, you would have to have to
develop specific versions of the app for each target (i.e. one for OL98, one
for OL2000 etc).
 
M

Marshall Barton

Roy said:
Hello there

For short time ago i've started controling the menu bar.

One of the functions is to diterme which type of control is on the menu bar.

For this i use CommandBarPopup object which is part of Office library:

if typeof ctl is CommandBarPopup

The problem is that the application will be able to run only on computer
with Office 2000. Not on computer with Office 97, XP or office not installed
at all,

Is ther a way to use the Object CommandBarPopup without using the Office
Referance?

I'm not sure of all the details with this, but I'm pretty
sure that you can eliminate the reference by using Late
Binding (see Help) to the CommandBar object.

I don't think the developer edition will do anything for you
in this case.
 
R

Roy Goldhammer

Hello there

For short time ago i've started controling the menu bar.

One of the functions is to diterme which type of control is on the menu bar.

For this i use CommandBarPopup object which is part of Office library:

if typeof ctl is CommandBarPopup

The problem is that the application will be able to run only on computer
with Office 2000. Not on computer with Office 97, XP or office not installed
at all,

Is ther a way to use the Object CommandBarPopup without using the Office
Referance?

any help would be useful
 

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