本文介绍了如何以其他形式访问工具条项目?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我创建了一个具有mdiparent控件和多种形式的软件。



基本上我有登录表单,如果登录用户名和密码正确,它将启用所有其他工具条菜单

其他

它会保持不变。



所以我以登录形式开发了代码?

喜欢这个...



 如果 (name == UName.Text&& pass == PWord.Text)
{

ClassEnq.Uname = UName.Text;
MessageBox.Show( 密码已接受);
this .Close();
ParentWindow.enquiryToolStripMenuItem.Enabled = true ;
}



但它会给我一个错误

因保护级别无法访问?



我可以为这个问题做些什么。?

解决方案



i have created a software which has mdiparent control and serveral form.

basically i have login form and if login username and password correct it will enable all other toolstrip menu
else
it will remain same.

so i developed a code in login form?
like this...

if (name == UName.Text && pass == PWord.Text)
                    {

                        ClassEnq.Uname = UName.Text;
                        MessageBox.Show("Password Accepted");
                        this.Close();
                        ParentWindow.enquiryToolStripMenuItem.Enabled = true;
                    }


but it''ll give me an error
inaccessable due to protection level?

what i can do for this issue.?

解决方案



这篇关于如何以其他形式访问工具条项目?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

10-23 09:57