只有注册用户登录后才能阅读该文。 阅读全文
posted @ 2018-11-07 09:43
onlyou13
阅读(7)
评论(0)
推荐(0)
|
摘要:
链接: https://pan.baidu.com/s/1Fy2LbcpmujOiqtNZ3ZySOQ 提取码: ts5k 阅读全文
posted @ 2018-11-06 09:50
onlyou13
阅读(121)
评论(0)
推荐(0)
摘要:
unit Unit2; interface uses Windows, Messages, SysUtils, Variants, Classes, Graphics, Controls, Forms, Dialogs, StdCtrls; type TForm2 = class(TForm) Button1: TButton; procedure FormCr... 阅读全文
posted @ 2018-10-23 15:33
onlyou13
阅读(129)
评论(0)
推荐(0)
摘要:
procedure TForm1.Button1Click(Sender: TObject); var hGame: THandle; pid, ProcessID: Cardinal; readCount: Cardinal; arrByte:array[0..1023] of Byte; gWidth, gHeight: Integer; totalBytes: In... 阅读全文
posted @ 2018-07-11 22:06
onlyou13
阅读(140)
评论(0)
推荐(0)
摘要:
import urllib, urllib.request, urllib.parse import random import zlib import re import os, time SavePath="Save" def InitDev(): AllHanzi = "" if not os 阅读全文
posted @ 2018-06-03 16:31
onlyou13
阅读(393)
评论(0)
推荐(0)
摘要:
// test.cpp : 定义控制台应用程序的入口点。 // #include "stdafx.h" #include #include #include #include using namespace std; int _tmain(int argc, _TCHAR* argv[]) { TCHAR szPath[MAX_PATH]; GetSystemDi... 阅读全文
posted @ 2018-03-21 15:40
onlyou13
阅读(2467)
评论(0)
推荐(0)
摘要:
function GetLeft(sText, sepStr: string): string; var p: Integer; begin p := Pos(sepStr, sText); if p = 0 then Exit(''); Result := Copy(sText, 1, p - 1); end; function GetRight(sText, sepStr... 阅读全文
posted @ 2018-02-23 10:38
onlyou13
阅读(237)
评论(0)
推荐(0)
|