a***@gmail.com
2005-11-30 06:11:44 UTC
Hello Everyone,
I have been working on web based content management system using:
VB 6.0 (Front End)
SQL Server 2000 (Back End)
Our System has 2 main ActiveX controls, which are installed at client
side when accessing the site:
1) Main GUI Control - Working with system
2) Editor - is used to create documents.
We are suppose to customize MS Word according to our requirements so
that it can be used as Editor.
As per the requirements we need to add our custom menu and menu items
into MS Word 2003 standard menu. We have done this using Add-in
project.
(E.g. "Test Menu" which will have 4 sub items - Open, Save, Save
As, Close)
Now we want that when user clicks any of these sub menu items, our Main
GUI control should be notified about this particular click, so that we
can do further processing and update the database accordingly.
Here are some of the details about my Add-in project:
I) I am using Office.CommandBarButton for declaring each click events.
(e.g.Public WithEvents mcmdBarMenuItemSave As Office.CommandBarButton)
I am getting the click event for each of the CommandBars
(e.g. Public Sub mcmdBarMenuItemSave_click)
II) I want to raise events in the main GUI Control for each click
event(s) called.
Or is there any other way for notifying the main GUI control regarding
which particular click event is called?
Any help will be greatly appreciated.
Thanks in advance.
Regards,
Atit
I have been working on web based content management system using:
VB 6.0 (Front End)
SQL Server 2000 (Back End)
Our System has 2 main ActiveX controls, which are installed at client
side when accessing the site:
1) Main GUI Control - Working with system
2) Editor - is used to create documents.
We are suppose to customize MS Word according to our requirements so
that it can be used as Editor.
As per the requirements we need to add our custom menu and menu items
into MS Word 2003 standard menu. We have done this using Add-in
project.
(E.g. "Test Menu" which will have 4 sub items - Open, Save, Save
As, Close)
Now we want that when user clicks any of these sub menu items, our Main
GUI control should be notified about this particular click, so that we
can do further processing and update the database accordingly.
Here are some of the details about my Add-in project:
I) I am using Office.CommandBarButton for declaring each click events.
(e.g.Public WithEvents mcmdBarMenuItemSave As Office.CommandBarButton)
I am getting the click event for each of the CommandBars
(e.g. Public Sub mcmdBarMenuItemSave_click)
II) I want to raise events in the main GUI Control for each click
event(s) called.
Or is there any other way for notifying the main GUI control regarding
which particular click event is called?
Any help will be greatly appreciated.
Thanks in advance.
Regards,
Atit