PC Review


Reply
Thread Tools Rate Thread

How do I link a macro to a CommandButton in a custom form, want us

 
 
=?Utf-8?B?Q3lib3JkZWxpYw==?=
Guest
Posts: n/a
 
      25th Jan 2005
I would like to map a macro to a button in a custom form that I have
designed. I already have the vbscript, which I got off of the VBScript
section of the MS website, and it works just fine. The script asks the user
if they want to visit the conference booking site, and when they click on yes
it opens the appropriate page. I just can't seem to figure out how to map
the macro to a button, so that when a user clicks the button in the form they
are asked if they want to visit the site, when they click yes an IE browser
windows opens directly to our conference booking site. I am trying to do
this using a CommandButton that I have inserted into my form, which I got
from the controls toolbox.

I am new at this and perhaps I am be trying to do something that cannot be
done in Outlook 2000, but I am not sure. I seem to remember using a form
once that had a button built into it that opened a webpage.

Any advice is appreciated.

Please advise.

Thank-you,
Charles
 
Reply With Quote
 
 
 
 
Sue Mosher [MVP-Outlook]
Guest
Posts: n/a
 
      25th Jan 2005
You need to be using not a VBA macro but VBScript code attached to your
button's Click event:

Sub CommandButton1_Click()
' your code goes here
End Sub



--
Sue Mosher, Outlook MVP
Author of
Microsoft Outlook Programming - Jumpstart for
Administrators, Power Users, and Developers
http://www.outlookcode.com/jumpstart.aspx


"Cybordelic" <(E-Mail Removed)> wrote in message
news:1012719E-AF42-43E2-ACDF-(E-Mail Removed)...
>I would like to map a macro to a button in a custom form that I have
> designed. I already have the vbscript, which I got off of the VBScript
> section of the MS website, and it works just fine. The script asks the
> user
> if they want to visit the conference booking site, and when they click on
> yes
> it opens the appropriate page. I just can't seem to figure out how to map
> the macro to a button, so that when a user clicks the button in the form
> they
> are asked if they want to visit the site, when they click yes an IE
> browser
> windows opens directly to our conference booking site. I am trying to do
> this using a CommandButton that I have inserted into my form, which I got
> from the controls toolbox.
>
> I am new at this and perhaps I am be trying to do something that cannot be
> done in Outlook 2000, but I am not sure. I seem to remember using a form
> once that had a button built into it that opened a webpage.
>
> Any advice is appreciated.
>
> Please advise.
>
> Thank-you,
> Charles



 
Reply With Quote
 
=?Utf-8?B?Q3lib3JkZWxpYw==?=
Guest
Posts: n/a
 
      25th Jan 2005
Thank-you for responding to my question. Where do I find the button's Click
event? I don't see it under the "CommandButton1" Properties or Advanced
Properties.

"Sue Mosher [MVP-Outlook]" wrote:

> You need to be using not a VBA macro but VBScript code attached to your
> button's Click event:
>
> Sub CommandButton1_Click()
> ' your code goes here
> End Sub
>
>
>
> --
> Sue Mosher, Outlook MVP
> Author of
> Microsoft Outlook Programming - Jumpstart for
> Administrators, Power Users, and Developers
> http://www.outlookcode.com/jumpstart.aspx
>
>
> "Cybordelic" <(E-Mail Removed)> wrote in message
> news:1012719E-AF42-43E2-ACDF-(E-Mail Removed)...
> >I would like to map a macro to a button in a custom form that I have
> > designed. I already have the vbscript, which I got off of the VBScript
> > section of the MS website, and it works just fine. The script asks the
> > user
> > if they want to visit the conference booking site, and when they click on
> > yes
> > it opens the appropriate page. I just can't seem to figure out how to map
> > the macro to a button, so that when a user clicks the button in the form
> > they
> > are asked if they want to visit the site, when they click yes an IE
> > browser
> > windows opens directly to our conference booking site. I am trying to do
> > this using a CommandButton that I have inserted into my form, which I got
> > from the controls toolbox.
> >
> > I am new at this and perhaps I am be trying to do something that cannot be
> > done in Outlook 2000, but I am not sure. I seem to remember using a form
> > once that had a button built into it that opened a webpage.
> >
> > Any advice is appreciated.
> >
> > Please advise.
> >
> > Thank-you,
> > Charles

>
>
>

 
Reply With Quote
 
Sue Mosher [MVP-Outlook]
Guest
Posts: n/a
 
      25th Jan 2005
You have to create the event handler by typing the code into the form's View
Code window.
--
Sue Mosher, Outlook MVP
Author of
Microsoft Outlook Programming - Jumpstart for
Administrators, Power Users, and Developers
http://www.outlookcode.com/jumpstart.aspx


"Cybordelic" <(E-Mail Removed)> wrote in message
news:901B2BCA-890A-4523-874A-(E-Mail Removed)...
> Thank-you for responding to my question. Where do I find the button's
> Click
> event? I don't see it under the "CommandButton1" Properties or Advanced
> Properties.
>
> "Sue Mosher [MVP-Outlook]" wrote:
>
>> You need to be using not a VBA macro but VBScript code attached to your
>> button's Click event:
>>
>> Sub CommandButton1_Click()
>> ' your code goes here
>> End Sub
>>
>>
>>
>> --
>> Sue Mosher, Outlook MVP
>> Author of
>> Microsoft Outlook Programming - Jumpstart for
>> Administrators, Power Users, and Developers
>> http://www.outlookcode.com/jumpstart.aspx
>>
>>
>> "Cybordelic" <(E-Mail Removed)> wrote in message
>> news:1012719E-AF42-43E2-ACDF-(E-Mail Removed)...
>> >I would like to map a macro to a button in a custom form that I have
>> > designed. I already have the vbscript, which I got off of the VBScript
>> > section of the MS website, and it works just fine. The script asks the
>> > user
>> > if they want to visit the conference booking site, and when they click
>> > on
>> > yes
>> > it opens the appropriate page. I just can't seem to figure out how to
>> > map
>> > the macro to a button, so that when a user clicks the button in the
>> > form
>> > they
>> > are asked if they want to visit the site, when they click yes an IE
>> > browser
>> > windows opens directly to our conference booking site. I am trying to
>> > do
>> > this using a CommandButton that I have inserted into my form, which I
>> > got
>> > from the controls toolbox.
>> >
>> > I am new at this and perhaps I am be trying to do something that cannot
>> > be
>> > done in Outlook 2000, but I am not sure. I seem to remember using a
>> > form
>> > once that had a button built into it that opened a webpage.
>> >
>> > Any advice is appreciated.
>> >
>> > Please advise.
>> >
>> > Thank-you,
>> > Charles

>>
>>
>>



 
Reply With Quote
 
=?Utf-8?B?Q3lib3JkZWxpYw==?=
Guest
Posts: n/a
 
      25th Jan 2005
Excellent! I was successful in inserting the code.

The form works when I run the form and click on the button (opens in
Internet Explorer and goes to the right webpage). But if I save the file
..oft and close the form, then re-open the form and try to click the button is
does nothing. How do I save the form so that the button will work when I
open the form or send it to my co-workers pc.

The idea is that we want to allow all users to be able to double click the
..oft and open the form, fill it out, and send it the address that is already
populated in the To: field.

Thanks again!
Charles

"Cybordelic" wrote:

> I would like to map a macro to a button in a custom form that I have
> designed. I already have the vbscript, which I got off of the VBScript
> section of the MS website, and it works just fine. The script asks the user
> if they want to visit the conference booking site, and when they click on yes
> it opens the appropriate page. I just can't seem to figure out how to map
> the macro to a button, so that when a user clicks the button in the form they
> are asked if they want to visit the site, when they click yes an IE browser
> windows opens directly to our conference booking site. I am trying to do
> this using a CommandButton that I have inserted into my form, which I got
> from the controls toolbox.
>
> I am new at this and perhaps I am be trying to do something that cannot be
> done in Outlook 2000, but I am not sure. I seem to remember using a form
> once that had a button built into it that opened a webpage.
>
> Any advice is appreciated.
>
> Please advise.
>
> Thank-you,
> Charles

 
Reply With Quote
 
Sue Mosher [MVP-Outlook]
Guest
Posts: n/a
 
      25th Jan 2005
Code doesn't run in one-off or unpublished forms. The right procedure
depends on whether you are working in an Exchange environment and, if so, if
you can publish to the Organizational Forms library. See
http://www.outlookcode.com/d/formsec.htm

--
Sue Mosher, Outlook MVP
Author of
Microsoft Outlook Programming - Jumpstart for
Administrators, Power Users, and Developers
http://www.outlookcode.com/jumpstart.aspx


"Cybordelic" <(E-Mail Removed)> wrote in message
news:16EEBA0F-02DE-4D01-AF99-(E-Mail Removed)...
> Excellent! I was successful in inserting the code.
>
> The form works when I run the form and click on the button (opens in
> Internet Explorer and goes to the right webpage). But if I save the file
> .oft and close the form, then re-open the form and try to click the button
> is
> does nothing. How do I save the form so that the button will work when I
> open the form or send it to my co-workers pc.
>
> The idea is that we want to allow all users to be able to double click the
> .oft and open the form, fill it out, and send it the address that is
> already
> populated in the To: field.
>
> Thanks again!
> Charles
>
> "Cybordelic" wrote:
>
>> I would like to map a macro to a button in a custom form that I have
>> designed. I already have the vbscript, which I got off of the VBScript
>> section of the MS website, and it works just fine. The script asks the
>> user
>> if they want to visit the conference booking site, and when they click on
>> yes
>> it opens the appropriate page. I just can't seem to figure out how to
>> map
>> the macro to a button, so that when a user clicks the button in the form
>> they
>> are asked if they want to visit the site, when they click yes an IE
>> browser
>> windows opens directly to our conference booking site. I am trying to do
>> this using a CommandButton that I have inserted into my form, which I got
>> from the controls toolbox.
>>
>> I am new at this and perhaps I am be trying to do something that cannot
>> be
>> done in Outlook 2000, but I am not sure. I seem to remember using a form
>> once that had a button built into it that opened a webpage.
>>
>> Any advice is appreciated.
>>
>> Please advise.
>>
>> Thank-you,
>> Charles



 
Reply With Quote
 
=?Utf-8?B?Q3lib3JkZWxpYw==?=
Guest
Posts: n/a
 
      26th Jan 2005
When I click on your hyperlink below I get the message "The page cannot be
found".

"Sue Mosher [MVP-Outlook]" wrote:

> Code doesn't run in one-off or unpublished forms. The right procedure
> depends on whether you are working in an Exchange environment and, if so, if
> you can publish to the Organizational Forms library. See
> http://www.outlookcode.com/d/formsec.htm
>
> --
> Sue Mosher, Outlook MVP
> Author of
> Microsoft Outlook Programming - Jumpstart for
> Administrators, Power Users, and Developers
> http://www.outlookcode.com/jumpstart.aspx
>
>
> "Cybordelic" <(E-Mail Removed)> wrote in message
> news:16EEBA0F-02DE-4D01-AF99-(E-Mail Removed)...
> > Excellent! I was successful in inserting the code.
> >
> > The form works when I run the form and click on the button (opens in
> > Internet Explorer and goes to the right webpage). But if I save the file
> > .oft and close the form, then re-open the form and try to click the button
> > is
> > does nothing. How do I save the form so that the button will work when I
> > open the form or send it to my co-workers pc.
> >
> > The idea is that we want to allow all users to be able to double click the
> > .oft and open the form, fill it out, and send it the address that is
> > already
> > populated in the To: field.
> >
> > Thanks again!
> > Charles
> >
> > "Cybordelic" wrote:
> >
> >> I would like to map a macro to a button in a custom form that I have
> >> designed. I already have the vbscript, which I got off of the VBScript
> >> section of the MS website, and it works just fine. The script asks the
> >> user
> >> if they want to visit the conference booking site, and when they click on
> >> yes
> >> it opens the appropriate page. I just can't seem to figure out how to
> >> map
> >> the macro to a button, so that when a user clicks the button in the form
> >> they
> >> are asked if they want to visit the site, when they click yes an IE
> >> browser
> >> windows opens directly to our conference booking site. I am trying to do
> >> this using a CommandButton that I have inserted into my form, which I got
> >> from the controls toolbox.
> >>
> >> I am new at this and perhaps I am be trying to do something that cannot
> >> be
> >> done in Outlook 2000, but I am not sure. I seem to remember using a form
> >> once that had a button built into it that opened a webpage.
> >>
> >> Any advice is appreciated.
> >>
> >> Please advise.
> >>
> >> Thank-you,
> >> Charles

>
>
>

 
Reply With Quote
 
Sue Mosher [MVP-Outlook]
Guest
Posts: n/a
 
      26th Jan 2005
My typing appears to be particularly dyslexic this morning. Try
http://www.outlookcode.com/d/secforms.htm

--
Sue Mosher, Outlook MVP
Author of
Microsoft Outlook Programming - Jumpstart for
Administrators, Power Users, and Developers
http://www.outlookcode.com/jumpstart.aspx


"Cybordelic" <(E-Mail Removed)> wrote in message
news:64CAA371-2743-4D47-AB1A-(E-Mail Removed)...
> When I click on your hyperlink below I get the message "The page cannot be
> found".
>
> "Sue Mosher [MVP-Outlook]" wrote:
>
>> Code doesn't run in one-off or unpublished forms. The right procedure
>> depends on whether you are working in an Exchange environment and, if so,
>> if
>> you can publish to the Organizational Forms library. See
>> http://www.outlookcode.com/d/formsec.htm
>>
>> --
>> Sue Mosher, Outlook MVP
>> Author of
>> Microsoft Outlook Programming - Jumpstart for
>> Administrators, Power Users, and Developers
>> http://www.outlookcode.com/jumpstart.aspx
>>
>>
>> "Cybordelic" <(E-Mail Removed)> wrote in message
>> news:16EEBA0F-02DE-4D01-AF99-(E-Mail Removed)...
>> > Excellent! I was successful in inserting the code.
>> >
>> > The form works when I run the form and click on the button (opens in
>> > Internet Explorer and goes to the right webpage). But if I save the
>> > file
>> > .oft and close the form, then re-open the form and try to click the
>> > button
>> > is
>> > does nothing. How do I save the form so that the button will work when
>> > I
>> > open the form or send it to my co-workers pc.
>> >
>> > The idea is that we want to allow all users to be able to double click
>> > the
>> > .oft and open the form, fill it out, and send it the address that is
>> > already
>> > populated in the To: field.
>> >
>> > Thanks again!
>> > Charles
>> >
>> > "Cybordelic" wrote:
>> >
>> >> I would like to map a macro to a button in a custom form that I have
>> >> designed. I already have the vbscript, which I got off of the
>> >> VBScript
>> >> section of the MS website, and it works just fine. The script asks
>> >> the
>> >> user
>> >> if they want to visit the conference booking site, and when they click
>> >> on
>> >> yes
>> >> it opens the appropriate page. I just can't seem to figure out how to
>> >> map
>> >> the macro to a button, so that when a user clicks the button in the
>> >> form
>> >> they
>> >> are asked if they want to visit the site, when they click yes an IE
>> >> browser
>> >> windows opens directly to our conference booking site. I am trying to
>> >> do
>> >> this using a CommandButton that I have inserted into my form, which I
>> >> got
>> >> from the controls toolbox.
>> >>
>> >> I am new at this and perhaps I am be trying to do something that
>> >> cannot
>> >> be
>> >> done in Outlook 2000, but I am not sure. I seem to remember using a
>> >> form
>> >> once that had a button built into it that opened a webpage.
>> >>
>> >> Any advice is appreciated.
>> >>
>> >> Please advise.
>> >>
>> >> Thank-you,
>> >> Charles

>>
>>
>>



 
Reply With Quote
 
=?Utf-8?B?Q3lib3JkZWxpYw==?=
Guest
Posts: n/a
 
      27th Jan 2005
Thank-you for all of your help Sue!
Since I cannot publish to the "Organizational Forms Library" due to
permissions, what I have suggested as a solution for those people who will
need to use the form is this: first I emailed it to them, then they can
Publish the form and save it in their Personal Form library, and then they
can open the custom form from there. This seems to be working ok. Would you
recommend I do this differently? Can you see a problem with this method?

Charles

"Sue Mosher [MVP-Outlook]" wrote:

> My typing appears to be particularly dyslexic this morning. Try
> http://www.outlookcode.com/d/secforms.htm
>
> --
> Sue Mosher, Outlook MVP
> Author of
> Microsoft Outlook Programming - Jumpstart for
> Administrators, Power Users, and Developers
> http://www.outlookcode.com/jumpstart.aspx
>
>
> "Cybordelic" <(E-Mail Removed)> wrote in message
> news:64CAA371-2743-4D47-AB1A-(E-Mail Removed)...
> > When I click on your hyperlink below I get the message "The page cannot be
> > found".
> >
> > "Sue Mosher [MVP-Outlook]" wrote:
> >
> >> Code doesn't run in one-off or unpublished forms. The right procedure
> >> depends on whether you are working in an Exchange environment and, if so,
> >> if
> >> you can publish to the Organizational Forms library. See
> >> http://www.outlookcode.com/d/formsec.htm
> >>
> >> --
> >> Sue Mosher, Outlook MVP
> >> Author of
> >> Microsoft Outlook Programming - Jumpstart for
> >> Administrators, Power Users, and Developers
> >> http://www.outlookcode.com/jumpstart.aspx
> >>
> >>
> >> "Cybordelic" <(E-Mail Removed)> wrote in message
> >> news:16EEBA0F-02DE-4D01-AF99-(E-Mail Removed)...
> >> > Excellent! I was successful in inserting the code.
> >> >
> >> > The form works when I run the form and click on the button (opens in
> >> > Internet Explorer and goes to the right webpage). But if I save the
> >> > file
> >> > .oft and close the form, then re-open the form and try to click the
> >> > button
> >> > is
> >> > does nothing. How do I save the form so that the button will work when
> >> > I
> >> > open the form or send it to my co-workers pc.
> >> >
> >> > The idea is that we want to allow all users to be able to double click
> >> > the
> >> > .oft and open the form, fill it out, and send it the address that is
> >> > already
> >> > populated in the To: field.
> >> >
> >> > Thanks again!
> >> > Charles
> >> >
> >> > "Cybordelic" wrote:
> >> >
> >> >> I would like to map a macro to a button in a custom form that I have
> >> >> designed. I already have the vbscript, which I got off of the
> >> >> VBScript
> >> >> section of the MS website, and it works just fine. The script asks
> >> >> the
> >> >> user
> >> >> if they want to visit the conference booking site, and when they click
> >> >> on
> >> >> yes
> >> >> it opens the appropriate page. I just can't seem to figure out how to
> >> >> map
> >> >> the macro to a button, so that when a user clicks the button in the
> >> >> form
> >> >> they
> >> >> are asked if they want to visit the site, when they click yes an IE
> >> >> browser
> >> >> windows opens directly to our conference booking site. I am trying to
> >> >> do
> >> >> this using a CommandButton that I have inserted into my form, which I
> >> >> got
> >> >> from the controls toolbox.
> >> >>
> >> >> I am new at this and perhaps I am be trying to do something that
> >> >> cannot
> >> >> be
> >> >> done in Outlook 2000, but I am not sure. I seem to remember using a
> >> >> form
> >> >> once that had a button built into it that opened a webpage.
> >> >>
> >> >> Any advice is appreciated.
> >> >>
> >> >> Please advise.
> >> >>
> >> >> Thank-you,
> >> >> Charles
> >>
> >>
> >>

>
>
>

 
Reply With Quote
 
Sue Mosher [MVP-Outlook]
Guest
Posts: n/a
 
      27th Jan 2005
That should work just fine. Congratulations on writing what must have been
clear instructions!

--
Sue Mosher, Outlook MVP
Author of
Microsoft Outlook Programming - Jumpstart for
Administrators, Power Users, and Developers
http://www.outlookcode.com/jumpstart.aspx


"Cybordelic" <(E-Mail Removed)> wrote in message
news:8687B601-BAAE-4192-94F7-(E-Mail Removed)...
> Thank-you for all of your help Sue!
> Since I cannot publish to the "Organizational Forms Library" due to
> permissions, what I have suggested as a solution for those people who will
> need to use the form is this: first I emailed it to them, then they can
> Publish the form and save it in their Personal Form library, and then they
> can open the custom form from there. This seems to be working ok. Would
> you
> recommend I do this differently? Can you see a problem with this method?
>
> Charles
>
> "Sue Mosher [MVP-Outlook]" wrote:
>
>> My typing appears to be particularly dyslexic this morning. Try
>> http://www.outlookcode.com/d/secforms.htm


>>
>> "Cybordelic" <(E-Mail Removed)> wrote in message
>> news:64CAA371-2743-4D47-AB1A-(E-Mail Removed)...
>> > When I click on your hyperlink below I get the message "The page cannot
>> > be
>> > found".
>> >
>> > "Sue Mosher [MVP-Outlook]" wrote:
>> >
>> >> Code doesn't run in one-off or unpublished forms. The right procedure
>> >> depends on whether you are working in an Exchange environment and, if
>> >> so,
>> >> if
>> >> you can publish to the Organizational Forms library. See
>> >> http://www.outlookcode.com/d/formsec.htm
>> >>
>> >> --
>> >> Sue Mosher, Outlook MVP
>> >> Author of
>> >> Microsoft Outlook Programming - Jumpstart for
>> >> Administrators, Power Users, and Developers
>> >> http://www.outlookcode.com/jumpstart.aspx
>> >>
>> >>
>> >> "Cybordelic" <(E-Mail Removed)> wrote in message
>> >> news:16EEBA0F-02DE-4D01-AF99-(E-Mail Removed)...
>> >> > Excellent! I was successful in inserting the code.
>> >> >
>> >> > The form works when I run the form and click on the button (opens in
>> >> > Internet Explorer and goes to the right webpage). But if I save the
>> >> > file
>> >> > .oft and close the form, then re-open the form and try to click the
>> >> > button
>> >> > is
>> >> > does nothing. How do I save the form so that the button will work
>> >> > when
>> >> > I
>> >> > open the form or send it to my co-workers pc.
>> >> >
>> >> > The idea is that we want to allow all users to be able to double
>> >> > click
>> >> > the
>> >> > .oft and open the form, fill it out, and send it the address that is
>> >> > already
>> >> > populated in the To: field.
>> >> >
>> >> > Thanks again!
>> >> > Charles
>> >> >
>> >> > "Cybordelic" wrote:
>> >> >
>> >> >> I would like to map a macro to a button in a custom form that I
>> >> >> have
>> >> >> designed. I already have the vbscript, which I got off of the
>> >> >> VBScript
>> >> >> section of the MS website, and it works just fine. The script asks
>> >> >> the
>> >> >> user
>> >> >> if they want to visit the conference booking site, and when they
>> >> >> click
>> >> >> on
>> >> >> yes
>> >> >> it opens the appropriate page. I just can't seem to figure out how
>> >> >> to
>> >> >> map
>> >> >> the macro to a button, so that when a user clicks the button in the
>> >> >> form
>> >> >> they
>> >> >> are asked if they want to visit the site, when they click yes an IE
>> >> >> browser
>> >> >> windows opens directly to our conference booking site. I am trying
>> >> >> to
>> >> >> do
>> >> >> this using a CommandButton that I have inserted into my form, which
>> >> >> I
>> >> >> got
>> >> >> from the controls toolbox.
>> >> >>
>> >> >> I am new at this and perhaps I am be trying to do something that
>> >> >> cannot
>> >> >> be
>> >> >> done in Outlook 2000, but I am not sure. I seem to remember using
>> >> >> a
>> >> >> form
>> >> >> once that had a button built into it that opened a webpage.
>> >> >>
>> >> >> Any advice is appreciated.
>> >> >>
>> >> >> Please advise.
>> >> >>
>> >> >> Thank-you,
>> >> >> Charles
>> >>
>> >>
>> >>

>>
>>
>>



 
Reply With Quote
 
 
 
Reply

Thread Tools
Rate This Thread
Rate This Thread:

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

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


Similar Threads
Thread Thread Starter Forum Replies Last Post
Custom shortcutmenu for commandbutton to open form with arguments xcskiier Microsoft Access Form Coding 0 5th Jan 2010 03:46 AM
Link an addin macro to a custom button Chad Cameron Microsoft Excel Discussion 2 25th Jun 2009 10:43 PM
On custom toolbar, how to save macro link to flashdrive ? John Nelson Microsoft Excel Misc 1 10th Feb 2009 10:49 PM
How do I make a commandbutton in Excel 'launch' a custom form? =?Utf-8?B?Y2hvcmlzbW9z?= Microsoft Excel Programming 2 12th Oct 2006 04:12 PM
CommandButton Link to Macro KMassey1976 Microsoft Excel Programming 2 22nd Mar 2006 08:27 PM


Features
 

Advertising
 

Newsgroups
 


All times are GMT +1. The time now is 03:31 AM.