Re: is it possible to customize text in the help pane?

Tech Tip: Click here to run a free scan for Windows Errors and optimize PC performance



Tom wrote:
Is it possible to customize the text in Microsoft's help pane? I tried
using the Office Assistant, but two people's computers hung and
crashed when I did that. I'm thinking maybe the help pane may be more
stable. But it looks like I'd have to do some serious code editing to
make that work. Any tips?

I wouldn't try to customize the existing task pane for something that should
be so trivial. Programming the Assistant is this simple:

Sub ShowCustomAssistantText()
Dim wasEnabled As Boolean
Dim wasVisible As Boolean
Dim myBalloon As Balloon

With Application.Assistant
wasEnabled = .On
wasVisible = .Visible
.On = True
.Visible = True
Set myBalloon = .NewBalloon
With myBalloon
.Text = "This is custom text"
.Show
End With
Set myBalloon = Nothing
.Visible = wasVisible
.On = wasEnabled
End With
End Sub

If you still want to hack the task pane, have a look at
http://support.microsoft.com/?kbid=288542 and especially
http://www.word.mvps.org/FAQs/MacrosVBA/TaskPanesReference.htm. Be prepared
to find that you can't do what you want.

--
Regards,
Jay Freedman
Microsoft Word MVP FAQ: http://word.mvps.org
Email cannot be acknowledged; please post all follow-ups to the newsgroup so
all may benefit.


.



Relevant Pages

  • Re: SendKeys "(^ {HOME})"
    ... single Pane and dual Pane Windows. ... Dim bWkshtWasProtected As Boolean ... Dim lUpLfPaneMaxColNum As Long ... Dim lLoRtPaneMinColNum As Long ...
    (microsoft.public.excel.programming)
  • Re: How to transfer a range from sheet to sheet?
    ... Now the pane on the right should be completely blank, ... Dim PasteSheet As Worksheet ... 'Refresh the screen to update changes ... MsgBox "An unknown error ocurred within the CustomPaste ...
    (microsoft.public.excel.misc)
  • Re: Created Form, Published it, but sent emails dont have form da
    ... outlook should render the preview pane or not. ... Dim objCDOMail As MAPI.Message ... Dim strStoreID ... Set objCDOMail = gobjCDO.Session.GetMessage(strEntryID, ...
    (microsoft.public.outlook.program_forms)
  • RE: split removal
    ... Dim myPane As Pane ... I'll vote for the suggestion to get this fixed. ... > Point well taken, but if you close a window by clicking the 'X', Windows ...
    (microsoft.public.word.docmanagement)
  • Re: Outlook Out of Office.
    ... Robert Sparnaaij [MVP-Outlook] ... -Navigation Pane Tips & Tricks ... > Has anyone ran across the following error message, ... > The Out of Office Assistant could not be displayed. ...
    (microsoft.public.outlook)