码迷,mamicode.com
首页 >  
搜索关键字:messagebox    ( 570个结果
对话框窗体
对话框分为四类:一,提示对话框MessageBox.Show("提示文字","标题文字",按钮设置,图标设置) 返回值类型为DialogResult例如: DialogResult rs = MessageBox.Show("确定删除吗?", "提示", MessageBoxButtons.OKCa...
分类:Windows程序   时间:2015-05-13 19:05:27    阅读次数:130
选择性退出窗体
private void Form1_FormClosing(object sender, FormClosingEventArgs e) { if (DialogResult.Yes == MessageBox.Show("Exit or Not ?", "T...
分类:Windows程序   时间:2015-05-13 12:22:49    阅读次数:127
Ext.MessageBox
Ext.require([ 'Ext.window.MessageBox', 'Ext.tip.*']);Ext.onReady(function(){ Ext.get('mb1').on('click', function(e){ Ext.MessageBox.co...
分类:其他好文   时间:2015-05-11 12:35:08    阅读次数:154
VS中,using和“添加引用”的区别
引用表示你可以使用这个程序集了,而加上一个using,是为了方便你使用这个程序集,不用写全名。  如:  引用 System.Windows.Form 后,你可以使用 MessageBox.Show() 方法 ; 但是在你 using System.Windows.Form 前,你必须这样用:  System.Windows.Form.MessageBox.Show()  当你在代码前加...
分类:其他好文   时间:2015-05-08 14:53:35    阅读次数:124
js(ext)中,设置[异步]上传的简单进度条
代码在updateHmis的历史记录中,此处存档 handler : function() { //显示进度条 Ext.MessageBox...
分类:Web程序   时间:2015-05-08 09:24:43    阅读次数:127
MessageBox.Show()的各种用法
MessageBox.Show()的各种用法【函数】 MessageBox( Text, Title, nType,MessageBoxIcon);【函数说明】 弹出一个消息框。【语法】参数:Text ,消息框的正文;Title ,消息框的标题;nType ,消息框的类型。返回值:,用户在消息...
分类:其他好文   时间:2015-05-07 18:32:19    阅读次数:115
_bstr_t与BSTR
问题: BSTR ? a ? = ? _bstr_t("a"); BSTR ? b ? = ? _bstr_t("b"); ? ? CString ? c ? ; ? ? c ? = ? a; ? ? MessageBox(c); ? ? c ? = ? b; ? ? MessageBox(c); ? ? 为什么消息框中显示...
分类:其他好文   时间:2015-05-05 22:07:43    阅读次数:167
C# List和String互相转换
List转字符串,用逗号隔开List list = new List();list.Add("a");list.Add("b");list.Add("c");//MessageBox.Show(list.);//LoadModel();string s = string.Join(",", list...
分类:Windows程序   时间:2015-05-05 11:51:34    阅读次数:1396
详解MessageBox(),MsgBox函数的正确使用
//或者使用chr(13),chr(10)效果一样 MsgBox "a"&chr(13)&"b"&chr(10)&"c" //带有警告标志的窗口 MsgBox "a"&chr(13)&"b"&chr(10)&"c",16 //显示确定取消按钮 MsgBox "a"&chr(13)&"b"&chr(1...
分类:其他好文   时间:2015-05-02 06:17:10    阅读次数:168
MFC自定义MessageBox
MFC 自定义 MessageBox , 实现根据提示内容、字体大小自适应窗口大小、按钮、图标、文字内容的布局,方便管理...
分类:编程语言   时间:2015-04-29 21:51:01    阅读次数:271
570条   上一页 1 ... 37 38 39 40 41 ... 57 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!