注册 登录
编程论坛 VB.NET论坛

VB.net 的起始form怎样确定?

yangn2003 发布于 2008-10-02 16:00, 1367 次点击
在Java中,Main方法可以确定程序的起始位置。在中如果有多个form,该怎样让程序从特定的form运行?
2 回复
#2
ecjob2008-10-02 17:49
是VS IDE的话.
点击 菜单上的 项目->属性     应该用程序-> 启动窗体  下拉选择你的启动窗体..
#3
夜の枫2008-10-05 23:04
在所有的程序中不是有一个Program.cs吗?

里面的代码是这样的:
using System;
using System.Collections.Generic;
using System.Windows.Forms;

namespace Myschool
{
    static class Program
    {
        /// <summary>
        /// 应用程序的主入口点。
        /// </summary>
        [STAThread]
        static void Main()
        {
            Application.EnableVisualStyles();
            Application.SetCompatibleTextRenderingDefault(false);
            Application.Run(new Login());
        }
    }
}

其中在Application.Run(new Login());中Login()就是你当下运行的程序窗口!

如果你想运行其他窗口,也可以吧Login()修改为你想运行的窗口的名字!
1