需要用到的一个函数: LONG SetWindowLong( HWND hWnd, int nIndex, LONG dwNewLong ); program Project; usesForms, Windows, ufrmMain in 'ufrmMain.pas' {frmMain}; {$R *.res} beginApplication.Initialize;SetWindowLong(Application.Handle,GWL_EXSTYLE,WS_EX_TOOLWINDOW);…
在winform中让MessageBox.Show显示的窗口不显示在任务栏中:第一个参数很明显是你要显示的内容 类型是string 语法Visual Basic(声明) Public Shared Function Show ( _text As String, _caption As String, _buttons As MessageBoxButtons, _icon As MessageBoxIcon, _defaultButton As MessageBoxDefaultButto…