上一页 1 ··· 3 4 5 6 7 8 9 10 11 ··· 18 下一页
摘要: BOOL CXXXDlg::OnInitDialog(){ CDialogEx::OnInitDialog(); SetIcon(m_hIcon, TRUE); SetIcon(m_hIcon, FALSE); CChildDlg dlg; dlg.DoModal(); //你的业务代码 } 有时候 阅读全文
posted @ 2016-11-02 14:31 奥雷连诺 阅读(1118) 评论(0) 推荐(0) 编辑
摘要: vector selVect; int count = m_consumeList.GetItemCount(); //你的列表多少行 for (int i = 0; i<count; i++) { if (CDIS_GRAYED == m_consumeList.GetItemState(i, CDIS_GRAYED)) //获得是否选中的行 { selVect.... 阅读全文
posted @ 2016-10-27 12:27 奥雷连诺 阅读(1944) 评论(0) 推荐(0) 编辑
摘要: Git使用https方式进行连接时,默认每次推送时都要输入用户名和密码。 可以使用命令 $git config credential.helper store $git config credential.helper store 为当前仓库设置记住密码,设置后,只要在推送一次,以后就不需要用户名和 阅读全文
posted @ 2016-08-31 19:08 奥雷连诺 阅读(580) 评论(0) 推荐(0) 编辑
摘要: 必看 1. 本文不教你怎么生成key,主要解决多个项目对应多个SSH KEY的问题,在csdn code库上遇到的人估计很苦恼,为什么多个项目不能用一个key,为什么添加相同的key就会报重复 2. win7环境配置 第一步配置 $ git config --global user.name "Zh 阅读全文
posted @ 2016-08-31 18:35 奥雷连诺 阅读(3363) 评论(3) 推荐(0) 编辑
摘要: import ( "github.com/astaxie/beego" "github.com/astaxie/beego/toolbox") cronExpress := beego.AppConfig.String("xxxxx.xxxxx") if cronExpress == "" { cr 阅读全文
posted @ 2016-06-30 11:34 奥雷连诺 阅读(3494) 评论(0) 推荐(0) 编辑
摘要: 就想找个设置html combobox或者select默认选项的代码,百度搜了半小时不知所云的内容,其实很简单,代码如下js的方式:var index = 你的下标getElementById("id").selectedIndex=index ;jqurey的方式:var index = 你的下标... 阅读全文
posted @ 2015-11-30 18:21 奥雷连诺 阅读(2040) 评论(0) 推荐(0) 编辑
摘要: 使用定时器的时候当然想网页能够看到输出,不希望网页直接卡住,定时器结束输出一片。要做到定时器不卡住输出,只需要两个函数就行了,看下面代码"; $stop++; ob_flush(); flush(); sleep($interval); } while(tru... 阅读全文
posted @ 2015-09-23 18:56 奥雷连诺 阅读(390) 评论(0) 推荐(0) 编辑
摘要: 在WTL工程的.h中#include #include #include #include #include #include 结果还是下面一堆错,为什么呢,因为你没有使用这个using namespace ATL; 加上这个下面错全部消失。error C2061: syntax error : i... 阅读全文
posted @ 2015-07-13 18:19 奥雷连诺 阅读(1250) 评论(0) 推荐(0) 编辑
摘要: .right_img_box{ width:300px; height:250px; border:1px solid #c9c9c9; margin-bottom:15px; background: #fff; padding:7px;}.right_aimg{ width:300px... 阅读全文
posted @ 2015-06-17 15:01 奥雷连诺 阅读(895) 评论(0) 推荐(0) 编辑
摘要: 环境: $pageNum = 8; for ($i = 1; $i urlFormat, $i); $html->load_file($url); echo "" . $i . "start1 ".$url.""; $m... 阅读全文
posted @ 2015-06-15 15:48 奥雷连诺 阅读(714) 评论(0) 推荐(0) 编辑
摘要: 绑定控件 HWND logEdit = ::GetDlgItem(this->m_hWnd, IDC_EDIT_LOG); m_outputlogEdit.Attach(logEdit);滚动到最新一行当CEdit是多行显示的时候m_outputlogEdit.LineScroll(m_out... 阅读全文
posted @ 2015-06-12 11:03 奥雷连诺 阅读(307) 评论(0) 推荐(0) 编辑
摘要: 在mysql中,比如你的表的时间字段是column2,并且column2的类型是timestamp单日查询:select * from TableName where column1='xxxx' and date(column2)='2015-05-29'日期范围查询:select * from ... 阅读全文
posted @ 2015-06-03 16:48 奥雷连诺 阅读(205) 评论(0) 推荐(0) 编辑
摘要: function GetTitleImgPath(){ $titleImgPath = ""; if (isset($_POST["titlecheckbox"])){ $titleImgPath = $_POST["imgTitlePath"]; //选中了,用is... 阅读全文
posted @ 2015-05-22 11:03 奥雷连诺 阅读(672) 评论(0) 推荐(0) 编辑
摘要: mysql_insert_id() 获取插入数据后的最新的id遇到问题和解决的步骤如下:1. 使用后总是返回空的字符串,网上查了一番有人说是id要AUTO_INCREMENT,并且mysql_insert_id获取的id是当前的$conn ;2. 查看数据库主键id确实是AUTO_INCREMENT... 阅读全文
posted @ 2015-05-12 16:30 奥雷连诺 阅读(561) 评论(0) 推荐(0) 编辑
摘要: 可能的原因如下:1. 菜单tools->Options->Debugging->General,有个Require source files to exactly match the original version的选项取消;2. 菜单tools->Options->Debugging->Symb... 阅读全文
posted @ 2015-05-04 14:32 奥雷连诺 阅读(294) 评论(0) 推荐(0) 编辑
上一页 1 ··· 3 4 5 6 7 8 9 10 11 ··· 18 下一页