// 生成随机数 /* 生成指定范围内的随机数,可大于32767 */ int CxbzqDlg::GetRandNumber2(int nMini,int nMax) { //得到nMax的位长度, CString strnMax; strnMax.Format(“%d”,nMax); CString strRandNumber; //随机数的最大范围 int nBitMax = strnMax.GetLength() ;//限制在 nBitMax 个 9的范围内 //按位长度循环生成一个 nBitMax 位的整数 for(int i = 0 ; i nMax) { nRes = nRes
Read more分类: 技术应用
tech-apply
vc++ 生成指定范围内的随机数,可大于32767
asp怎么样设置文件为只读属性
Function LockFile(strFileName) set fso = CreateObject(“Scripting.FileSystemObject”) set f = fso.GetFile(strFileName) if f.attributes 7 then f.attributes = 7 end if End Function Function UnLockFile(strFileName) set fso = CreateObject(“Scripting.FileSystemObject”) set f = fso.GetFile(strFileName) if f
Read more
Function LockFile(strFileName) set fso = CreateObject(“Scripting.FileSystemObject”) set f = fso.GetFile(strFileName) if f.attributes 7 then f.attributes = 7 end if End Function Function UnLockFile(strFileName) set fso = CreateObject(“Scripting.FileSystemObject”) set f = fso.GetFile(strFileName) if f
Read more【asp】利用AdoDb.Stream对象来读取utf-8格式的文本文件
‘————————————————- ‘函数名称:ReadTextFile ‘作用:利用AdoDb.Stream对象来读取utf-8格式的文本文件 ‘—————————————————- function ReadFromTextFile (FileUrl,CharSet) dim str set stm=server.CreateObject(“adodb.stream”) stm.Type=2 ‘以本模式读取 stm.mode=3 stm.charset=Ch
Read more
‘————————————————- ‘函数名称:ReadTextFile ‘作用:利用AdoDb.Stream对象来读取utf-8格式的文本文件 ‘—————————————————- function ReadFromTextFile (FileUrl,CharSet) dim str set stm=server.CreateObject(“adodb.stream”) stm.Type=2 ‘以本模式读取 stm.mode=3 stm.charset=Ch
Read more[asp]unicode文件转ascii文件函数
Function UnicodeToAsciiFile(strFileName) ‘先打开unicode的文件 set fso = CreateObject(“Scripting.FileSystemObject”) set unicodefile = fso.opentextfile(server.MapPath(strFileName),1,false,-1)’-1是指用unicode方式打开 Dim strFileText strFileText = unicodefile.ReadAll’读出文本 unicodefile.close set unicodefile = nothing
Read more
Function UnicodeToAsciiFile(strFileName) ‘先打开unicode的文件 set fso = CreateObject(“Scripting.FileSystemObject”) set unicodefile = fso.opentextfile(server.MapPath(strFileName),1,false,-1)’-1是指用unicode方式打开 Dim strFileText strFileText = unicodefile.ReadAll’读出文本 unicodefile.close set unicodefile = nothing
Read more[vc]-[mfc]CTreeCtrl中通过单击获取当前选项文本
NM_CLICK事件 void C?Dlg::OnNMClickTreeGroup(NMHDR *pNMHDR, LRESULT *pResult) { // TODO: 在此添加控件通知处理程序代码 //得到单击选中的项的文本值 DWORD dwpos = GetMessagePos(); TVHITTESTINFO ht = {0}; ht.pt.x = GET_X_LPARAM(dwpos); ht.pt.y = GET_Y_LPARAM(dwpos); ::MapWindowPoints(HWND_DESKTOP,pNMHDR->hwndFrom,&ht.pt,1); //把屏幕坐标转
Read more
NM_CLICK事件 void C?Dlg::OnNMClickTreeGroup(NMHDR *pNMHDR, LRESULT *pResult) { // TODO: 在此添加控件通知处理程序代码 //得到单击选中的项的文本值 DWORD dwpos = GetMessagePos(); TVHITTESTINFO ht = {0}; ht.pt.x = GET_X_LPARAM(dwpos); ht.pt.y = GET_Y_LPARAM(dwpos); ::MapWindowPoints(HWND_DESKTOP,pNMHDR->hwndFrom,&ht.pt,1); //把屏幕坐标转
Read morevc操作mysql的典型例子
vc操作mysql的典型例子 1.包含文件 #include “mysql.h” 2.初始化数据库 //开始链接数据库 //MYSQL mysql;//定义成全局的 mysql_init(&mysql); mysql_options(&mysql, MYSQL_SET_CHARSET_NAME, “utf-8″); if(!mysql_real_connect(&mysql,”localhost”,”user”,”password”,”user_db”,3306,NULL,0)) { AfxMessageBox(“数据库连接失败”); } else { //MessageBox(“链接数据库
Read more
vc操作mysql的典型例子 1.包含文件 #include “mysql.h” 2.初始化数据库 //开始链接数据库 //MYSQL mysql;//定义成全局的 mysql_init(&mysql); mysql_options(&mysql, MYSQL_SET_CHARSET_NAME, “utf-8″); if(!mysql_real_connect(&mysql,”localhost”,”user”,”password”,”user_db”,3306,NULL,0)) { AfxMessageBox(“数据库连接失败”); } else { //MessageBox(“链接数据库
Read moreasp设置文件属性-windows文件属性对应10进制的表
iframe框架调用写法
html-jquery-实现绝对定位最简短的代码
一款基于jQuery编写的jquery图片3D旋转切换 – jquery特效分享 sadfsdfdasfdsafsdf
Read more
一款基于jQuery编写的jquery图片3D旋转切换 – jquery特效分享 sadfsdfdasfdsafsdf
Read moreIIS W3C日志记录字段和HTTP状态代码的说明
下面说说IIS W3C格式日志中记录的字段及说明(一般都是选择的W3C格式日志)。 date:发出请求时候的日期。 time:发出请求时候的时间。注意:默认情况下这个时间是格林威治时间,比我们的北京时间晚8个小时,下面有说明。 c-ip:客户端IP地址。 cs-username:用户名,访问服务器的已经过验证用户的名称,匿名用户用连接符-表示。 s-sitename:服务名,记录当记录事件运行于客户端上的Internet服务的名称和实例的编号。 。 s-computername:服务器的名称。 s-ip:服务器的IP地址。 s-port:为服务配置的服务器端口号
Read more
下面说说IIS W3C格式日志中记录的字段及说明(一般都是选择的W3C格式日志)。 date:发出请求时候的日期。 time:发出请求时候的时间。注意:默认情况下这个时间是格林威治时间,比我们的北京时间晚8个小时,下面有说明。 c-ip:客户端IP地址。 cs-username:用户名,访问服务器的已经过验证用户的名称,匿名用户用连接符-表示。 s-sitename:服务名,记录当记录事件运行于客户端上的Internet服务的名称和实例的编号。 。 s-computername:服务器的名称。 s-ip:服务器的IP地址。 s-port:为服务配置的服务器端口号
Read more