码迷,mamicode.com
首页 >  
搜索关键字:use    ( 28727个结果
less gradient-vertical 方法的实现
// Vertical gradient using CSS where possible, and base64-encoded SVG for IE9 (enables use of this in combination with border-radius)// Based on this ...
分类:其他好文   时间:2014-07-16 23:04:10    阅读次数:177
SqlServer和MySQL中存储过程out返回值处理C#代码
1.SqlServer中out处理 C#代码 #region"SqlServer中存储过程处理out返回值" //public void getdata() //{ // string str = " server=192.168.xxxx ;use...
分类:数据库   时间:2014-07-16 22:55:05    阅读次数:214
Sample-Code:Bing Search API
Demo link: http://code.msdn.microsoft.com/windowsazure/How-to-use-bing-search-API-4c8b287eAspx Code: ...
分类:Windows程序   时间:2014-07-16 22:52:07    阅读次数:432
mysql操作SQL语句
二、数据库操作SQL语句1、显示服务器上当前存在什么数据库SHOW DATABASES;2、创建名称为rewin的数据库CREATE DATABASE rewin;3、删除名称为rewin的数据库DROP DATABASE rewin;4、选择rewin数据库USE rewin;三、表操作SQL语句...
分类:数据库   时间:2014-07-16 21:09:40    阅读次数:273
SqlServer 事务日志已满
use mastergobackup transaction logtest with no_loggoDBCC SHRINKDATABASE(logtest)Go
分类:数据库   时间:2014-07-16 20:55:22    阅读次数:236
UIPopverController,UIImagePickerController,图片选取。
/*使用UIImagePickerController和UIPopverController,先在头文件中设置要遵循的协议:*/@implementation PickerVC{ /*UIPopoverController must use the global variable*/ UIPop.....
分类:其他好文   时间:2014-07-16 20:40:53    阅读次数:134
Dos命令
#1 一:net use \\ip\ipc$ " " /user:" " 建立IPC空链接 net use \\ip\ipc$ "密码" /user:"用户名" 建立IPC非空链接 net use h: \\ip\c$ "密码" /user:"用户名" 直接登陆后映射对方C:到本地为H: net u...
分类:其他好文   时间:2014-07-12 09:08:47    阅读次数:153
mysql--1130ERROR
问题一:mysql 用户登录不用验证密码(用户已设密码)安装好mysql 后,我发现我设立了密码,同样可以不用密码就能登陆cmd>mysqlcmd>select current_user(); @localhostcmd>exitcmd>mysql -urootmysql>use mysqlmys....
分类:数据库   时间:2014-07-11 09:51:21    阅读次数:273
linux 网络编程 socket bind failed 问题解决
今天写一个简单的socket网络通讯的程序的时候,用ctrl+c结束服务器端程序之后,再次启动服务器出现了bind failed:the address already in use的错误。在网上查了一下以后找到了原因,在此记录一下。这个IBM的官网上说到了这一点:http://www.ibm.com/developerworks/cn/linux/l-sockpit/。详细介绍如下: ...
分类:系统相关   时间:2014-07-10 21:30:27    阅读次数:806
VC中常见的108个问题
(1) 如何通过代码获得应用程序主窗口的 指针? 主窗口的 指针保存在CWinThread::m_pMainWnd中,调用AfxGetMainWnd实现。 AfxGetMainWnd() ->ShowWindow(SW_SHOWMAXMIZED) //使程序最大化. (2) 确定应用程序的路径 Use GetModuleFileName 获得应用程序的路径,然后去掉可执行文件名。 ...
分类:其他好文   时间:2014-07-10 21:01:23    阅读次数:304
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!