Time of Update: 2018-12-03
Private Sub Command1_Click() Call showiframes(WebBrowser1)End SubPrivate Sub showiframes(wb As WebBrowser) Dim i%, j%, intFraLen%, objFraColl As Object Dim vTag As Object Dim strNode2 As String Set objFraColl = wb.Document.frames
Time of Update: 2018-12-03
以前有個朋友找我做163郵箱帳號半自動註冊工具。做起來比較繁瑣,其實通過FillForm可以很方便的辦到。 需要準備的工具:1.Firefox瀏覽器2.FillForm外掛程式(標準來說應該是擴充) 外掛程式安裝方法:將FillForm下載下來,直接拖到Firefox瀏覽器上,這是會有個倒計時的提示,等數字變為0後安裝,安裝好後重啟就可以使用了。Firefox瀏覽器:http://g-fox.cn/FillForm外掛程式:http://code.google.com/p/ffextension
Time of Update: 2018-12-03
本ui來之一個網上的程式。謝謝原作者的分享。<?xml version="1.0" encoding="utf-8"?><LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" android:layout_width="250px" android:layout_height="400px" android:background="@drawable/white"
Time of Update: 2018-12-03
--查詢表和視圖select * from information_schema.tables--查詢檢視select * from information_schema.views--查詢資料庫所有表select * from sysobjects where xtype= 'U' and status> 0sp_tables 或: select * from INFORMATION_SCHEMA.TABLES 或: select *
Time of Update: 2018-12-03
並查集 #include<iostream>#include<cstring>#include<cstdio>using namespace std;int map[110][110];int father[2100];int vis[2100];int getfather(int x){while(father[x]!=-1){x=father[x];}return x;}void Union(int x,int y){int fx=getfather(
Time of Update: 2018-12-03
暴力枚舉 #include <iostream>#include <string>using namespace std;string add(string str){ int i; int l = str.size(); str[l-1]++; for(int i=l-1;i>=1;i--)if(str[i]>'9'){str[i-1]+=(str[i]-'0')/10;str[i]=(str[i]-'0')%10+'0';}
Time of Update: 2018-12-03
博弈 sg函數sg函數,很深奧的東西。沒搞懂。這道sg函數的求法,一道石頭串被分為2份或一份,如果是2份,那麼就分別取那兩個狀態的sg值做異或處理。不知道為什麼。。。。#include<iostream>#include<cstring>#include<cstdio>#include<algorithm>using namespace std;int n,k;int temp;int s[150];int sg[2000];bool vis[20
Time of Update: 2018-12-03
A - PerspectiveCrawling in process...Crawling failedTime Limit:500MS Memory Limit:65536KB 64bit IO Format:%I64d & %I64uSubmitStatus Practice SGU 326 DescriptionBreaking news! A Russian billionaire has bought a yet undisclosed NBA team.
Time of Update: 2018-12-03
Normal 0 0 2 false false false MicrosoftInternetExplorer4 classid="clsid:38481807-CA0E-42D2-BF39-B33AF135CC4D" id=ieooui>st1/:*{behavior:url(#ieooui) }--> /* Style Definitions */
Time of Update: 2018-12-03
FillForm網頁文字框填寫擴充,在您需要的時候填寫資料。可以填寫非表單內容。目前僅處理Input、textarea、select標籤。擴充安裝後可以通過菜單“工具” -
Time of Update: 2018-12-03
大數的乘,除,加,減,取餘。 #include <iostream>#include <string>using namespace std;inline int compare(string str1, string str2)//去掉前置0的情況下才能比較 { if(str1.size() > str2.size()) //長度長的整數大於長度小的整數 return 1; else if(str1.size() <
Time of Update: 2018-12-03
Regex測試載入器,當然也可以做為一般資料處理工具。:http://www.symental.com/sfw/RegTestTool.zip 1.有時我們經常需要對html頁面原始碼進行分析,所以工具提供了直接採集html的功能。輸入網址,然後點擊後面的按鈕採集得到html。接著就在下面輸入Regex,點擊下面按鈕處理檢索結果。 本工具最大的特色是,連續快速點擊表單空白處3 次可以直接產生vb代碼併到剪貼簿,複製到vb6編輯器裡面就可以直接用。
Time of Update: 2018-12-03
一、麵條類 : 1.三元巷裡面的“易記” 2.三元巷要德火鍋對面“協記”麵館 3.七家灣2號或打釘巷1號“李記”:牛肉麵、牛筋面、牛肉鍋貼、牛肉餛飩、醬牛肉、牛筋等 4.小火瓦巷江蘇飯店2號門邊的“君友記老滷麵館”:各種蓋澆面 5.南湖文體村(七號路)“官複興麵館”:三鮮面 6.禦道街或福建路的“山西人家”:貓耳朵、炒麵餅等 7.夫子廟1路車站下客站“華旺樓”各種鎮江鍋蓋面、湯包 8.40路底站的洋珠巷的“四鶴春” 9.湖南路燈光隧道進去向右轉童家巷裡有一家
Time of Update: 2018-12-03
字典樹,練習模版。#include<cstdio>#include<iostream>using namespace std;struct Trie{int sum;Trie *next[8];Trie(){int i;for(i=0;i<8;i++)next[i]=NULL;sum=0;}}*root=new Trie,*temp;void DealTrie(char dic[]){int i,k;temp=root;for(i=0;dic[i]!='\0';i+
Time of Update: 2018-12-03
'------------------------------------------------'' Author : sysdzw '' E-mail : sysdzw@163.com '' Bolg : http://hi.baidu.com/sysdzw '' QQ : 171977759
Time of Update: 2018-12-03
所謂事務是使用者定義的一個資料庫操作序列,這些操作要麼全做要麼全不做,是一個不可分割的工作單位。例如,在關聯式資料庫中,一個事務可以是一條SQL語句、一組SQL語句或整個程式。
Time of Update: 2018-12-03
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN""http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"><html xmlns="http://www.w3.org/1999/xhtml"><head><meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
Time of Update: 2018-12-03
掃描線問題第一道掃描線,還是照著別人代碼搞了一下。樹的內容不多,所以沒放進結構體內。map的映射挺方便,效率也不會很差。//0MS 368K G++#include<map>#include<iostream>#include<cstdio>#include<cstring>#include<algorithm>using namespace std;#define maxn 205#define mid ((l+r)>>1
Time of Update: 2018-12-03
線段樹跟上次做的0 1 反轉基本相同http://acm.uestc.edu.cn/problem.php?pid=1425注意:sample輸出是沒輸出case數,害我wa了好多次。。。#include<iostream>#include<cstdio>#include<cstring>using namespace std;#define ls (rt<<1)#define rs (rt<<1|1)#define mid
Time of Update: 2018-12-03
擷取一組radio被選中項的值 var item = $('input[@name=items][@checked]').val(); 擷取select被選中項的文本 var item = $("select[@name=items] option[@selected]").text(); select下拉框的第二個元素為當前選中值 $('#select_id')[0].selectedIndex = 1; radio單選組的第二個元素為當前選中值 $('input[@name=items]')