
Signature
<>>< ><<> ><<> <>>< ><<> <>>< <>><<>
Graham Mayor - Word MVP
My web site www.gmayor.com
Word MVP web site http://word.mvps.org
<>>< ><<> ><<> <>>< ><<> <>>< <>><<>
Ofcourse you are right.
But the thing is I am helping out a friend, who is not at all familiar with
Word, with his business. That is... like many people he's able to write text
in Word and hard format it, that's about it. I can't ask him to preform an
action like open new document based on a template and look for the
template - that's what you mean right? Now he has buttons (within
Normal.dot) on his menubar that he clicks, and then provide him with a
document based on a customized template - I believe that's user friendly, or
am I wrong?
Thanks for your feedback. I am not at all a Word wiz but throughout the last
5 years I have now and again read a lot of MVP made material. I am still
studying at a university, and if you could see how people work with Word...
well let's just say with only my know how from MVP tutorials people think I
am pulling of magic tricks! And I don't even know proper VBA.
Oh btw maybe this is not the right place. But sometime ago I did some
spreadsheet modeling in Excel. Now I had this really cool workbook or
workmap - I am Dutch so I don't immediately know what the term is for a
collection of sheets in a .xls file. The first sheet contained a sort of
swithboard - well not a real switchboard like in a database but a collection
of buttons - wich allowed a user to navigate through the sheets, just for
fun! But I seem to have lost it! Could you tell me what VBA code I need to
assign to tell a button in Excel to direct the user after clicking to
another sheet within the same workbook?
Thanks again.
> This would be re-inventing the wheel, as the filenew dialog already
> provides such buttons (or shortcuts). However if you want to grow your
[quoted text clipped - 11 lines]
>> Regards
>> Kevin form the Netherlands
Suzanne S. Barnhill - 16 Jan 2007 19:38 GMT
My husband is not very adept at Word, and what he finds helpful is to have
shortcuts to templates on the desktop. This is a good solution for people
who don't keep Word open all the time but just open Word specifically to
create a particular type of document (letter or envelope, for example). When
you double-click on a template shortcut, Word opens with a document based on
that template.

Signature
Suzanne S. Barnhill
Microsoft MVP (Word)
Words into Type
Fairhope, Alabama USA
Word MVP FAQ site: http://word.mvps.org
Email cannot be acknowledged; please post all follow-ups to the newsgroup so
all may benefit.
> Ofcourse you are right.
> But the thing is I am helping out a friend, who is not at all familiar with
[quoted text clipped - 39 lines]
> >> Regards
> >> Kevin form the Netherlands
cartoonsmart - 16 Jan 2007 20:39 GMT
This is what I came up with for excel...
Private Sub CommandButton1_Click()
Sheets("Blad2").Select
End Sub
< btw thanx Suzanne for the tip...that migh ofcourse be very handy when many
documents are involved, since buttons for each doc would clutter up the
interface>
> My husband is not very adept at Word, and what he finds helpful is to have
> shortcuts to templates on the desktop. This is a good solution for people
[quoted text clipped - 57 lines]
>> >> Regards
>> >> Kevin form the Netherlands
Shauna Kelly - 18 Jan 2007 12:59 GMT
Hi cartoonsmart
The easiest way to create a button to go to a worksheet in Excel is to
create a textbox from the Drawing menu. Format it to suit your needs. Then
right-click, choose Hyperlink, and create a hyperlink to the worksheet.
Hope this helps.
Shauna Kelly. Microsoft MVP.
http://www.shaunakelly.com/word
> This is what I came up with for excel...
>
[quoted text clipped - 72 lines]
>>> >> Regards
>>> >> Kevin form the Netherlands