XL5: Error Message: "Invalid Number of Arguments" with DialogFrame (133328)



The information in this article applies to:

  • Microsoft Excel for Windows 5.0

This article was previously published under Q133328

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"
				

Modification Type:MajorLast Reviewed:7/12/2001
Keywords:kberrmsg KB133328