The information in this article applies to:
SYMPTOMSA 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. CAUSEYou 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). RESOLUTIONMicrosoft 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:
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 : kbmacro kbui kbdtacode kbmacroexample winword macword word6 word7 word95 |
Last Reviewed: December 15, 1999 © 2000 Microsoft Corporation. All rights reserved. Terms of Use. |