ID: Q140100
The information in this article applies to:
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.
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).
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 professionals 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
"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 : kbmacro kbui kbdtacode kbmacroexample winword macword word6 word7 word95
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
Last Reviewed: April 9, 1999