Err Msg: "Invalid Number of Arguments" with DialogFrame

ID: Q133328


The information in this article applies to:
  • Microsoft Excel for Windows, version 5.0


SYMPTOMS

In Microsoft Excel, you can use the following syntax to change the caption for the dialog frame of a custom dialog box:


   DialogSheets(1).DialogFrame(1).Text="My Caption" 
Although Microsoft Excel does not generate an error, this syntax is incorrect. A custom dialog box does not have a DialogFrame collection since there is only one dialog frame for each dialog box.


STATUS

Microsoft has confirmed this to be a problem in the Microsoft products listed at the beginning of this article. This problem has been corrected in Microsoft Excel for Windows, version 5.0c.


MORE INFORMATION

This syntax is allowed in Microsoft Excel version 5.0 for Windows. However, if this syntax is used in Microsoft Excel version 5.0c for Windows, you will receive the following error message:

Runtime Error '1003'
Invalid Number of Arguments
The following correct syntax should be used instead:

   DialogSheets(1).DialogFrame.Text = "My Caption" 

Additional query words:

Keywords : kbprg
Version : WINDOWS:5.0
Platform : WINDOWS
Issue type :


Last Reviewed: October 22, 1999
© 2000 Microsoft Corporation. All rights reserved. Terms of Use.