Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 10
Default Create a help file for VB functions

How do I make help files for the VB functions I have
written. Small explanations when using formula insert
would also do.

Many thanks in advance.
  #2   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 11,272
Default Create a help file for VB functions

Serkan,

Check out this previous post on the topic.

http://tinyurl.com/352zx


--

HTH

Bob Phillips
... looking out across Poole Harbour to the Purbecks
(remove nothere from the email address if mailing direct)

"Serkan" wrote in message
...
How do I make help files for the VB functions I have
written. Small explanations when using formula insert
would also do.

Many thanks in advance.



  #3   Report Post  
Posted to microsoft.public.excel.programming
No Name
 
Posts: n/a
Default Create a help file for VB functions

Thnx Bob!

-----Original Message-----
Serkan,

Check out this previous post on the topic.

http://tinyurl.com/352zx


--

HTH

Bob Phillips
... looking out across Poole Harbour to the Purbecks
(remove nothere from the email address if mailing direct)

"Serkan" wrote in

message
...
How do I make help files for the VB functions I have
written. Small explanations when using formula insert
would also do.

Many thanks in advance.



.

  #4   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 11
Default Create a help file for VB functions

Hi,
Simplest way is with cell comments, which appear when
user moves mouse over cell

Application.DisplayCommentIndicator =
xlCommentIndicatorOnly

or you could create a Text Box (named HelpText below)
from the Drawing toolbar, then add a button that'll
toggle the visible property

Sub ToggleHelp()
ActiveSheet.TextBoxes("HelpText"). Visible = _
Not ActiveSheet.TextBoxes("HelpText").Visible
End Sub

-----Original Message-----
How do I make help files for the VB functions I have
written. Small explanations when using formula insert
would also do.

Many thanks in advance.
.

Reply
Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes

Posting Rules

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


Similar Threads
Thread Thread Starter Forum Replies Last Post
Create graphs of functions Kaichie Excel Worksheet Functions 2 August 5th 07 10:52 PM
how to create my own functions?? anthropomorfic Excel Worksheet Functions 2 February 9th 06 10:06 PM
Create a dll with functions to excel Rui Cruz Excel Worksheet Functions 0 January 23rd 06 04:50 PM
How can I create a formula out of more than 7 functions in excel? Dolores Excel Worksheet Functions 3 May 19th 05 09:28 PM
How do I create complex functions? Chris Excel Worksheet Functions 2 November 1st 04 12:28 AM


All times are GMT +1. The time now is 05:46 AM.

Powered by vBulletin® Copyright ©2000 - 2024, Jelsoft Enterprises Ltd.
Copyright ©2004-2024 ExcelBanter.
The comments are property of their posters.
 

About Us

"It's about Microsoft Excel"