本文介绍了如何在visual basic中获取菜单项的索引?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
嘿伙计..
如何获取菜单项的索引?我尝试了以下代码:
Hey Guys..
How do I get the index of a menu-item? I tried the following code:
If mnuImport.Item.index = 1 Then
mnuImport.Item.Caption = "Import"
End If
但我总是得到编译错误:参数不是可选的。
我不明白为什么?
valentigra
But I always get the Compile error: Argument not optional.
I don't understand why?
valentigra
推荐答案
If mnuImport.Item.index = 1 Then
mnuImport.Item.Caption = "Import"
End If
我只使用以下代码:
I just use the following code:
mnuImport(1).Caption = "Import"
这就是全部,非常简单:)
问候
valentigra
That's all, very simple :)
Greetings
valentigra
Debug.Print(Me.MenuStrip1.Items(1).Text) '2nd highlevel menu item
Me.Menu2Subitem1ToolStripMenuItem.Text = "Import" 'This was the name of my first sub-item on my 2nd menu item
这篇关于如何在visual basic中获取菜单项的索引?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!