private void textBox2_KeyDown(object sender, KeyEventArgs e)
{
if (e.KeyCode == Keys.Enter)
{
//这里怎么锁定 一个button
// textbox有没有在哪可以设定不能按回车的吗?
}
-------------------------------------------------------------------
string files = this.textBox1.Text;
string filesx = (this.textBox2.Text + ".exe");
if ((this.textBox1.Text == "") || (this.textBox2.Text == "") )
{
MessageBox.Show("你还没有选择应用程序!\n或者还没有填写缩写名!", "提示信息");
}
else
{
if (MessageBox.Show("你确定想把程序\n" + files + "\n" + "加入到运行栏,缩写名为[" + filesx + "]", "True?",
MessageBoxButtons.OKCancel, MessageBoxIcon.Information) == DialogResult.OK)
{
RegistryKey opregkey = Registry.LocalMachine.OpenSubKey(@"\SOFTWARE\Microsoft\Windows\CurrentVersion\App Paths\", true);
opregkey.CreateSubKey(filesx); // 这里运行报错....说没有实例化就用. 未将对象引用设置到对象的实例。
//想了N久都没有办法!!!! ^_^!