#include#include#include#includeusing namespace std;string s;char tmp[2000000];int main(){ int snum;//s int lnum;//{ int n; int i,j; __...
分类:
其他好文 时间:
2014-07-29 21:40:12
阅读次数:
265
// 获取当前日期和时间 Calendar cal = Calendar.getInstance(); String fileName = cal.get(Calendar.YEAR) + "_" + cal.get(Calendar.MO...
分类:
移动开发 时间:
2014-07-29 21:40:02
阅读次数:
337
设置/获取 字体属性 名称 大小 粗体 斜体 下划线 删除线 颜色1 颜色2 uses MSHTML; //设置 //------------------------------------------------------------------------------procedure WB_...
分类:
其他好文 时间:
2014-07-29 21:39:52
阅读次数:
339
///HTML组件///后面的字符串为这个控件的ID号///直线Line(WebBrowser1.Document as IHTMLDocument2).execCommand('InsertHorizontalRule', True, '');///按钮Button(WebBrowser1.Doc...
分类:
Web程序 时间:
2014-07-29 21:39:42
阅读次数:
303
procedure TForm1.TreeView1MouseMove(Sender: TObject; Shift: TShiftState; X, Y: Integer);
var node: TTreeNode;
begin if Boolean(TreeView1.GetNodeAt(X,Y...
分类:
其他好文 时间:
2014-07-29 21:39:32
阅读次数:
244
1 using System; 2 using System.Collections.Generic; 3 using System.ComponentModel; 4 using System.Data; 5 using System.Drawing; 6 using System.T...
分类:
其他好文 时间:
2014-07-29 21:39:22
阅读次数:
243
TreeView节点拖拉操作1 //事先设置 TreeView1.DragMode= dmAutomatic; unitUnit1; interface uses Windows,Messages,SysUtils,Variants,Classes,Graphics,Controls,Forms, ...
分类:
其他好文 时间:
2014-07-29 21:38:52
阅读次数:
245
超链接 /取消超链接
插入/取消 书签
插入图片
粘贴图上CTRL+v
截图
插入表情GIF WEB背景色
WEB背景图片 WebBrowser1.OleObject.document.getElementById('bgDiv').currentStyle.BackGroundImage WebB...
分类:
其他好文 时间:
2014-07-29 21:38:42
阅读次数:
247
今天遇到特殊情况,有两台电脑:一台Ubuntu(常用),另一台Windows(不常用)。现需要将两台电脑都能联上网络。各种事就不说了,正题是把Ubuntu连接的无线网络通过网络分享给另一台电脑。想着这个事挺复杂,百度了一下,也没有怎么看明白,还是决定自己试一试。步骤如下:(一、二顺序可换)一、先将两...
分类:
其他好文 时间:
2014-07-29 21:38:32
阅读次数:
466
CFileDialog文件选择对话框的使用:首先构造一个对象并提供对应的參数,构造函数原型例如以下: CFileDialog::CFileDialog( BOOL bOpenFileDialog, LPCTSTR lpszDefExt = NULL, LPCTSTR lpszFileName = N...
分类:
其他好文 时间:
2014-07-29 21:38:22
阅读次数:
345
ListView往TreView里面拖拽 unitUnit1; interface uses Windows,Messages,SysUtils,Variants,Classes,Graphics,Controls,Forms, Dialogs,ComCtrls; type TForm1=class...
分类:
其他好文 时间:
2014-07-29 21:38:12
阅读次数:
241
保存网页. htmluses ActiveX;procedure TForm1.Button1Click(Sender: TObject);varpersist :IPersistfile;beginpersist := (webbrowser1.document as ipersistfile);...
分类:
Web程序 时间:
2014-07-29 21:37:42
阅读次数:
319
扩展KMP牵涉了一些相对运动的姿势,比较费解!本学渣看了一天的扩展KMP,打算写点东西。。。本文看后,出现的后果本人一概不负责。毕竟我不是很会表达。扩展KMP是搞什么灰机的?本学渣所知道的扩展KMP是来解集训篇那道字符串题的。有了犯罪动机,现在就要下手。不要以为扩展KMP就以为与KMP关系暧昧。屁大...
分类:
其他好文 时间:
2014-07-29 21:37:32
阅读次数:
289
//这个拖拽的感觉不对
unit Unit1;interfaceusesWindows, Messages, SysUtils, Classes, Graphics, Controls, Forms, Dialogs,ComCtrls;typeTForm1 = class(TForm)TreeVie...
分类:
其他好文 时间:
2014-07-29 21:37:23
阅读次数:
227
@ 把老数据库中的某个表倒出成sql文件 $mysql -uroot -p my_db > my_db.sql (输入密码)@ 在新环境中导入 $sudo apt-get install mysql-server -y (期间要初始化root用户的密码) $mysql ...
分类:
数据库 时间:
2014-07-29 21:37:12
阅读次数:
342
第一步:没有接口的迭代器简单实现原理 1 package com.bjsxt.xiaofei; 2 /** 3 * 迭代器底层原理 4 * 方法: 5 * hasNext() 6 * next() 7 * remove() 8 * @ClassName: MyAarryList 9 * ...
分类:
其他好文 时间:
2014-07-29 21:36:52
阅读次数:
2598
面向连接的TCP和面向非连接的UDP协议,“面向连接”就是在正式通信前必须要与对方建立起连接,“面向非连接”就是在正式通信前不必与对方建立连接。TCP协议能为应用程序提供可靠的通信连接,使计算机发出的字节流完整无误地发往网络上的其他计算机,对可靠性要求高的数据通信。UDP适用于一次只传送少量数据,允...
分类:
其他好文 时间:
2014-07-29 21:36:42
阅读次数:
260