Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有一个想要命名的 VB6 控件 (VSFlexGrid)。我有一个类和 id 来引用它,我可以集中它,但我不知道我应该如何检索控件的名称。我将如何在 Autoit 中执行此操作?
在表单设计模式中,网格在属性窗口中被命名。
您可以通过代码中给出的名称来引用它。
所以在表单设计视图中选择网格并按 F4 - (name) 属性将类似于 VSFlexGrid1 或 myGrid 之类的东西。
在代码中,您可以将其称为 VSFlexGrid1.Position 或 VSFlexGrid1.Rows 或您需要使用的任何属性。
您可以做更多奇特的事情,例如遍历表单控件集合并检测它是否是 VSFlexGrid 类型,但这可能比您想要的要多。