| 网站首页 | 业界新闻 | 小组 | 威客 | 人才 | 下载频道 | 博客 | 代码贴 | 在线编程 | 编程论坛
欢迎加入我们,一同切磋技术
用户名:   
 
密 码:  
共有 1017 人关注过本帖
标题:不知为何错误
只看楼主 加入收藏
wx_ywd
Rank: 1
等 级:新手上路
帖 子:32
专家分:0
注 册:2008-3-1
收藏
 问题点数:0 回复次数:4 
不知为何错误
我做了两个窗口,Form1和Form2,点击Form1的某个菜单项应跳出Form2,代码如下:
以下是Form1中的代码:
using System;
using System.Collections.Generic;
using
using System.Data;
using System.Drawing;
using System.Text;
using System.Windows.Forms;

namespace Function_Ontology
{
    public partial class Form1 : Form
    {
        public Form1()
        {
            InitializeComponent();
        }

        private void 退出ToolStripMenuItem_Click(object sender, EventArgs e)
        {
            this.Close();
        }

        private void 定义产品模型ToolStripMenuItem_Click(object sender, EventArgs e)
        {
            Form2 newform2 = new Form2();   //进入定义产品模型界面
            newform2.Show();
            this.Hide();
        }
    }
}
以下是Form2中的代码:
using System;
using System.Collections.Generic;
using
using System.Data;
using System.Drawing;
using System.Text;
using System.Windows.Forms;

namespace Function_Ontology
{
    public partial class Form2 : Form
    {
        public Form2()
        {
            InitializeComponent();
        }
    }
}
但是运行后出现如下错误:
错误    1    找不到类型或命名空间名称“Form1”(是否缺少 using 指令或程序集引用?)    F:\Function Ontology\Function Ontology\Program.cs    17    33    Function Ontology
错误    2    与“System.Windows.Forms.Application.Run(System.Windows.Forms.Form)”最匹配的重载方法具有一些无效参数    F:\Function Ontology\Function Ontology\Program.cs    17    13    Function Ontology
错误    3    参数“1”: 无法从“Form1”转换为“System.Windows.Forms.Form”    F:\Function Ontology\Function Ontology\Program.cs    17    29    Function Ontology
不知为何错!!小弟是新手,请大家帮忙看看是怎么回事。谢谢!
搜索更多相关主题的帖子: private 
2008-04-08 10:08
gongdian
Rank: 2
等 级:论坛游民
帖 子:127
专家分:11
注 册:2008-3-1
收藏
得分:0 
没看出有什么错误,也就是隐藏了,没有错误。
2008-04-08 11:03
足迹
Rank: 1
来 自:广东惠州
等 级:新手上路
帖 子:46
专家分:0
注 册:2008-4-2
收藏
得分:0 
看不出那里错了
2008-04-09 01:33
andey
Rank: 2
等 级:新手上路
威 望:4
帖 子:938
专家分:0
注 册:2007-7-18
收藏
得分:0 
楼主应该把错误的地方截图贴出来...

msdn == 葵花宝典!!!
QQ:122768959
2008-04-09 09:36
hack214
Rank: 1
等 级:新手上路
帖 子:27
专家分:0
注 册:2008-4-8
收藏
得分:0 
建议重新做一遍!
WindowsApplication6.rar (28.92 KB)
你再新建一个工程,再重新做一遍!问题可能会解决!!我在我电脑上都没问题!
2008-04-10 21:24
快速回复:不知为何错误
数据加载中...
 
   



关于我们 | 广告合作 | 编程中国 | 清除Cookies | TOP | 手机版

编程中国 版权所有,并保留所有权利。
Powered by Discuz, Processed in 0.030134 second(s), 9 queries.
Copyright©2004-2024, BCCN.NET, All Rights Reserved