本文介绍了将组合框值传递给类文件集失败的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

Object reference not set to an instance of an object










Form2 fr2 = new Form2();
                    
                     string srv = fr2.sqlServerComboBox.SelectedItem.ToString();
                     string pass = fr2.passwordTextBox.Text.ToString();
                     string database = fr2.databaseComboBox.SelectedItem.ToString();
                   

                   string str = @"Data Source=srv;" + "Initial Catalog=database;" + "Persist Security Info=True;" + "User ID=sa;" + "Password=pass";

推荐答案



这篇关于将组合框值传递给类文件集失败的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

10-26 20:57