本文介绍了启动表单的名称的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧! 问题描述 这可能是一个愚蠢的问题,但我已经让自己感到困惑。 我的应用程序有两种形式,form1和form2。 form1是 propers中的启动对象。 form1中的事件实例化form2。 将myForm调暗为HardwareStore myForm = New HardwareStore myForm.Show() 我明白我的form2可以被引用 myForm.blah 什么是表格form1的名称,以便我可以从form2引用它 (myForm)? form1.blah 不行。 对不起这个基本问题,但我想在这里学习,哈哈哈。 伯尼 This is probably a silly question, but I''ve gotten myself confused. My app has two forms, form1 and form2. form1 is the start up object in thepropers. An event in form1 instantiates form2. Dim myForm as HardwareStoremyForm = New HardwareStoremyForm.Show() I understand that my form2 can be referenced by myForm.blah What is the form name for form1 so that I can reference it from form2(myForm)? form1.blah Doesn''t work. Sorry for such a basic question, but I''m trying to learn here, hahaha. Bernie推荐答案 这篇关于启动表单的名称的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持! 09-26 10:36