| View previous topic :: View next topic |
| Author |
Message |
kpitn Newbie

Joined: 03 Feb 2005 Posts: 4
|
Posted: Fri Feb 11, 2005 5:36 am Post subject: oOo Basic Command |
|
|
Hi,
I want to do the same thing than that :
| Code: | OfficeCommand command = new OfficeCommand(IDCOMMAND_MENUBAR);
command.appendParameter("MenuBarVisible", new Boolean(visible));
command.execute(this); |
But in oOo Basic
How can i do That ? |
|
| Back to top |
|
 |
Cybb20 Super User


Joined: 02 Mar 2004 Posts: 1569 Location: Frankfurt, Germany
|
Posted: Fri Feb 11, 2005 6:27 am Post subject: |
|
|
this is ucb stuff and I generally don't like the way you do these dispatch calls.
It's much nicer, in my opinion, to use the dispatchhelper service as described in many threads already but the one you want to execute is put down here:
http://www.oooforum.org/forum/viewtopic.phtml?t=6890
Hope this helps.
Christian _________________ - Knowledge is Power - |
|
| Back to top |
|
 |
DannyB Moderator


Joined: 02 Apr 2003 Posts: 3991 Location: Lawrence, Kansas, USA
|
Posted: Sat Feb 12, 2005 11:07 am Post subject: Re: oOo Basic Command |
|
|
| kpitn wrote: |
I want to do the same thing than that :
| Code: | OfficeCommand command = new OfficeCommand(IDCOMMAND_MENUBAR);
command.appendParameter("MenuBarVisible", new Boolean(visible));
command.execute(this); |
But in oOo Basic
How can i do That ? |
I wish I understood your question. I don't understand the question. _________________ Want to make OOo Drawings like the colored flower design to the left? |
|
| Back to top |
|
 |
|