摘要:
$result = $conn->query($sql);$result->num_rows; 阅读全文
摘要:
error C4996: 'strupr': The POSIX name for this item is deprecated. Instead, use the ISO C and C++ conformant name: _strupr. See online help for detail 阅读全文
摘要:
BOOL CXXXDlg::OnInitDialog(){ CDialogEx::OnInitDialog(); SetIcon(m_hIcon, TRUE); SetIcon(m_hIcon, FALSE); CChildDlg dlg; dlg.DoModal(); //你的业务代码 } 有时候 阅读全文
摘要:
vector selVect; int count = m_consumeList.GetItemCount(); //你的列表多少行 for (int i = 0; i<count; i++) { if (CDIS_GRAYED == m_consumeList.GetItemState(i, CDIS_GRAYED)) //获得是否选中的行 { selVect.... 阅读全文
摘要:
Git使用https方式进行连接时,默认每次推送时都要输入用户名和密码。 可以使用命令 $git config credential.helper store $git config credential.helper store 为当前仓库设置记住密码,设置后,只要在推送一次,以后就不需要用户名和 阅读全文
摘要:
必看 1. 本文不教你怎么生成key,主要解决多个项目对应多个SSH KEY的问题,在csdn code库上遇到的人估计很苦恼,为什么多个项目不能用一个key,为什么添加相同的key就会报重复 2. win7环境配置 第一步配置 $ git config --global user.name "Zh 阅读全文
摘要:
import ( "github.com/astaxie/beego" "github.com/astaxie/beego/toolbox") cronExpress := beego.AppConfig.String("xxxxx.xxxxx") if cronExpress == "" { cr 阅读全文
摘要:
就想找个设置html combobox或者select默认选项的代码,百度搜了半小时不知所云的内容,其实很简单,代码如下js的方式:var index = 你的下标getElementById("id").selectedIndex=index ;jqurey的方式:var index = 你的下标... 阅读全文
摘要:
使用定时器的时候当然想网页能够看到输出,不希望网页直接卡住,定时器结束输出一片。要做到定时器不卡住输出,只需要两个函数就行了,看下面代码"; $stop++; ob_flush(); flush(); sleep($interval); } while(tru... 阅读全文
摘要:
在WTL工程的.h中#include #include #include #include #include #include 结果还是下面一堆错,为什么呢,因为你没有使用这个using namespace ATL; 加上这个下面错全部消失。error C2061: syntax error : i... 阅读全文
摘要:
.right_img_box{ width:300px; height:250px; border:1px solid #c9c9c9; margin-bottom:15px; background: #fff; padding:7px;}.right_aimg{ width:300px... 阅读全文
摘要:
环境: $pageNum = 8; for ($i = 1; $i urlFormat, $i); $html->load_file($url); echo "" . $i . "start1 ".$url.""; $m... 阅读全文
摘要:
绑定控件 HWND logEdit = ::GetDlgItem(this->m_hWnd, IDC_EDIT_LOG); m_outputlogEdit.Attach(logEdit);滚动到最新一行当CEdit是多行显示的时候m_outputlogEdit.LineScroll(m_out... 阅读全文
摘要:
在mysql中,比如你的表的时间字段是column2,并且column2的类型是timestamp单日查询:select * from TableName where column1='xxxx' and date(column2)='2015-05-29'日期范围查询:select * from ... 阅读全文
摘要:
function GetTitleImgPath(){ $titleImgPath = ""; if (isset($_POST["titlecheckbox"])){ $titleImgPath = $_POST["imgTitlePath"]; //选中了,用is... 阅读全文