WD: WordBasic: No Result with Custom Dialog Boxes

Last reviewed: February 3, 1998
Article ID: Q140100
The information in this article applies to:
  • Microsoft Word for Windows, versions 6.0, 6.0a, 6.0c
  • Microsoft Word for Windows NT, version 6.0
  • Microsoft Word for Windows 95, versions 7.0, 7.0a
  • Microsoft Word for the Macintosh, versions 6.0, 6.0.1

SYMPTOMS

A custom dialog box does not give you the results you expected. For example, if the custom dialog box prompts you for information, the information may not be inserted in your document, even though all of the WordBasic code appears to be correct.

CAUSE

You used 1 instead of -1 to represent the value of the button for the dialog function. By design, the OK button returns a value of -1 and Cancel returns a value of 0 (zero). Any other number, such as 1, returns the default value, which is equivalent to 0 (zero).

RESOLUTION

Microsoft provides programming examples for illustration only, without warranty either expressed or implied, including, but not limited to, the implied warranties of merchantability and/or fitness for a particular purpose. This article assumes that you are familiar with the programming language being demonstrated and the tools used to create and debug procedures. Microsoft support engineers can help explain the functionality of a particular procedure, but they will not modify these examples to provide added functionality or construct procedures to meet your specific needs. If you have limited programming experience, you may want to contact the Microsoft fee-based consulting line at (800) 936-5200. For more information about the support options available from Microsoft, please see the following page on the World Wide Web:

   http://www.microsoft.com/supportnet/refguide/ 

Edit your macro so that the button choice value equals -1 instead of 1. The following sample macro demonstrates this:

   Sub MAIN
      Begin Dialog UserDialog 504, 238, "Microsoft Word"
      Text 10, 6, 44, 13, "&Name", .Text1
      TextBox 10, 22, 160, 18, .Name
      OKButton 10, 123, 88, 21
      CancelButton 10, 147, 88, 21
      End Dialog
      Dim dlg As UserDialog      ' Dimensionize the dialog record
      ButtonChoice = Dialog(dlg) ' Display the dialog box. ButtonChoice
      If ButtonChoice = - 1 Then '   is the value returned by the dialog.
         Insert dlg.Name
      EndIf
   End Sub

REFERENCES

"Microsoft Word Developer's Kit," version 6.0, 2nd Edition, page 635


Additional query words: WordBasic macros update word basic no result wrong
incorrect nothing nil empty
Keywords : kbmacroexample macword winword word6 word7 word95 kbcode kbmacro kbui
Version : WINDOWS:6.0,6.0a,6.0c,7.0,7.0a; MACINTOSH:6.0,6.0.1,6.0.1a
Platform : MACINTOSH Win95 WINDOWS winnt
Issue type : kbprb
Solution Type : kbworkaround


THE INFORMATION PROVIDED IN THE MICROSOFT KNOWLEDGE BASE IS PROVIDED "AS IS" WITHOUT WARRANTY OF ANY KIND. MICROSOFT DISCLAIMS ALL WARRANTIES, EITHER EXPRESS OR IMPLIED, INCLUDING THE WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. IN NO EVENT SHALL MICROSOFT CORPORATION OR ITS SUPPLIERS BE LIABLE FOR ANY DAMAGES WHATSOEVER INCLUDING DIRECT, INDIRECT, INCIDENTAL, CONSEQUENTIAL, LOSS OF BUSINESS PROFITS OR SPECIAL DAMAGES, EVEN IF MICROSOFT CORPORATION OR ITS SUPPLIERS HAVE BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES. SOME STATES DO NOT ALLOW THE EXCLUSION OR LIMITATION OF LIABILITY FOR CONSEQUENTIAL OR INCIDENTAL DAMAGES SO THE FOREGOING LIMITATION MAY NOT APPLY.

Last reviewed: February 3, 1998
© 1998 Microsoft Corporation. All rights reserved. Terms of Use.