일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | |||||
3 | 4 | 5 | 6 | 7 | 8 | 9 |
10 | 11 | 12 | 13 | 14 | 15 | 16 |
17 | 18 | 19 | 20 | 21 | 22 | 23 |
24 | 25 | 26 | 27 | 28 | 29 | 30 |
- Menu
- EnvDiv
- EnvAdd
- IfWinExist
- if(식)
- Var:=식
- IF (식)
- IfInString
- MouseClick
- 함수
- autohotkey
- Blocks
- Threads
- API
- EnvSub
- SetControlDelay
- DetectHiddenWindows
- ControlGetText
- SetKeyDelay
- 식의 설명
- SetTitleMatchMode
- if
- EnvMult
- StringGetPos
- SetMouseDelay
- 배열
- EnvSet
- SetEnv
- ControlSend
- 식
- Today
- Total
목록Nimto Free style (852)
ㄴrㅎnㅂrㄹrㄱi
API Spy for Windows 95/98/ME/NT/2000/XPVersion: 2.5 APIS32 ( API Spy ) - is the best tool for examine Windows API functions used by 32 bit Windows applications. It allows to examine any known API function`s calls that are resolved during the program load time and are given by APIS32. APIS32 will work with Windows95/98/ME and Windows NT/2000/XP applications which will be executed on the any Win32..
http://www.google.com/uds/solutions/localsearch/reference.html Local Search Control for Google Maps - default.html @import url("http://www.google.com/uds/css/gsearch.css"); @import url("http://www.google.com/uds/solutions/localsearch/gmlocalsearch.css"); #map { border : 1px solid #979797; width : 100%; height : 600px; } // function load() { if (GBrowserIsCompatible()) { // Create and Center a Ma..
http://blog.naver.com/jinsoo79/40023480400 .. Win32 API 주요 함수 AdjustWindowRect : BOOL AdjustWindowRect(LPRECT lpRect, DWORD dwStyle, BOOL bMenu); 작업 영역의 크기는 윈도우 크기에서 타이틀 바와 경계선, 메뉴, 스크롤 바 등의 영역을 제외한 영역이다. 일반적으로 MoveWindow, SetWindorPos 등의 함수로 윈도우 크기는 원하는대로 바꿀 수 있지만 작업 영역의 크기를 원하는대로 설정하는 방법은 없다. 작업 영역을 특정한 크기대로 설정하려면 이 함수로 원하는 윈도우 크기를 먼저 계산하고 MoveWindow 등의 함수로 윈도우 크기를 변경해야 한다. 이 함수는 윈도우의 스타일(타이틀 ..
원형 HWND CreateWindowEx(DWORD dwExStyle, LPCTSTR lpClassName, LPCTSTR lpWindowName, DWORD dwStyle, int x, int y, int nWidth, int nHeight, HWND hWndParent, HMENU hMenu, HANDLE hInstance, LPVOID lpParam); MFC 원형 BOOL CWnd::CreateEx( DWORD dwExStyle, LPCTSTR lpszClassName, LPCTSTR lpszWindowName, DWORD dwStyle, int x, int y, int nWidth, int nHeight, HWND hwndParent, HMENU nIDorHMenu, LPVOID lpParam ..
http://www.autohotkey.com/board/index.php?app=core&module=search&do=search&fromMainBar=1 StringCaseSense On Chars = ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/ gui, add, button, w100 gOpen,Open File gui, add, text, x+10,var name: gui, add, edit, x+10 w100 vName,File gui, add, text, x+10,extract to: gui, add, edit, x+10 w100 vwriteto,file.ext gui, add, edit, r40 w510 vOutput ..
모든이 들에게 이름이 가져다 주는 의미는 매우 크다. 이름때문에 웃고 우는 일도 상당히 있다. 더우기 비 영어권인 우리 한국으로부터의 이민자들이 사전 조사와 준비 없이 한국 이름의 영어 스펠을 잘못 골라 마추어 사용할 경우 이름때문에 불편이나 수모를 겪는 경우도 있다. 만일, 자신이나 식구들의 이름을 영어 발음대로 쓸 경우 좋지않은 의미로 오인될 소지가 있다고 판단 되면 새로운 영어 이름을 짓는것을 참고 해 볼수도 있다. 어떤 양식이 모자라는 서양인들은, ㅇ 받침이 많은 중국과 한국계의 이름을 빗대어 “칭-총-챙”, “원-헝-로” 하면서 놀려 대기도 한다. 우리의 자녀들이 학교에서나 사회에서 잘못 쓰여진 이름때문에 짖궂은 동료들로 부터 놀림을 당하기도 한다. 이는 우리의 이름들이 대다수인 서양식 이름보다..
passwd = "1334512345" ; 암호 Data = "codedata:http://infoki.net" ; 암호화 코드 Crypt_string := Crypt(Data, passwd) MsgBox, %Crypt_string% ; 암호화된 문자 Decrypt_string := Decrypt(Data, Crypt_string) MsgBox, %Decrypt_string% ; 암호 해독된 문자 ;------------------------------------------------------------- ; 암호 인코드 디코드 ;------------------------------------------------------------- Crypt(Data,_string) { local f, r f ..
;------------------------------------------------------------- ; 숫자에 컴마 찍기 ;------------------------------------------------------------- FormatNumber(_number) { StringReplace _number, _number, - IfEqual ErrorLevel,0, SetEnv Sign,- Loop Parse, _number, . If (A_Index = 1) { len := StrLen(A_LoopField) Loop Parse, A_LoopField If (Mod(len-A_Index,3) = 0 and A_Index != len) x = %x%%A_LoopField%, Else..