sorry for pseudo code....
what you simply do is this:
onToolStripClick(sender, arguments)
{
   really big
   bunch of
   the
   code
}
and you want to call this method onToolStripClick.

Better is:
myMethod(something)
{
   really big
   bunch of
   the
   code
}

onToolStripClick(sender, arguments)
{
   myMethod(someArgument)
}

and anywhere in the code you can call the same as in the on Click method:
myMethod(someArgument).

2010/5/28 wbidin <[email protected]>

> Ok, I search a response in Google over again. But in my last search,
> the responses did not presented none new idea to my need.
> Well, I go back to Google,  thanks for your help,
> Good week end to all members.
>
>
>
>
> On May 27, 11:19 am, Stephen Russell <[email protected]> wrote:
> > On Wed, May 26, 2010 at 2:01 PM, wbidin <[email protected]> wrote:
> > > HTH and Members,
> > > Ok, I understood your idea, but, you can send me a path to study? I do
> > > not have the minimum idea to do how it.
> >
> > ------------
> >
> > Sorry.
> >
> > try this.
> >
> > <
> http://www.lmgtfy.com/?q=How+to+a+perform+a+click+in+a+ToolStripMenuItem>
> >
> > --
> > Stephen Russell
> >
> > Sr. Production Systems Programmer
> > CIMSgts
> >
> > 901.246-0159 cell
>

Reply via email to