[스크랩] 온라인 최초의 해방 전쟁, 10년을 돌아보다 온라인 최초의 해방 전쟁, 10년을 돌아보다 http://media.daum.net/v/20140521173107354 구 자료들/기타 2014.05.27
VB.NET 에서 C#의 @"STRING" 따라하기 VB.NET 에서 <STRING> 문자열</STRING> 과 같이써서 vbcrlf 라던지 문자열내 쌍따옴표 입력시 두번입력과 같이 번거로운 작업을 할필요가 없네요 Module Module1 Sub Main() Dim str1, str2 As String str1 = """첫번째 문자열""" & vbCrLf & """첫번째 문자열 끝""" str2 = <string>"두번째 문자열" "두번째 문자.. 프로그래밍언어/VB.NET 2014.05.25
네이버 웹툰 다운 Imports System.Text.RegularExpressions Module Module1 Sub Main() Dim winhttp As New WinHttp.WinHttpRequest Dim strURL As String = "http://m.comic.naver.com/webtoon/detail.nhn?titleId=358422&no=" Dim regex1 As New Regex("lazy-src=""(.*?)"" id=""toon_") Dim matches As MatchCollection For page = 1 To 140 ' 게시물 한계 winhttp.Open("GET", strURL & page) winhttp.Send() matches.. 프로그래밍언어/VB.NET 2014.05.19
ReadWritingMemory Imports System.Windows.Forms Module ReadWritingMemory Private Declare Function OpenProcess Lib "kernel32" (ByVal dwDesiredAccess As Integer, ByVal bInheritHandle As Integer, ByVal dwProcessId As Integer) As Integer Private Declare Function WriteProcessMemory1 Lib "kernel32" Alias "WriteProcessMemory" (ByVal hProcess As Integer, ByVal lpBaseAddress As Integer, ByRef lpBuffer As.. 프로그래밍언어/VB.NET 2014.05.17
아키에이지 도서관 요일퀘스트 원문출처 http://www.inven.co.kr/board/powerbbs.php?come_idx=2641&l=9646 1층 월 : 마법의 힘이 담긴 책 수거 12개 8개 (※도서관곳곳의 바닥에 떨어져있음) 화 : 에아나드의 금서 수집 20개 (※비밀없는금서or기밀없는금서 Drop) 수 : 도서관 비품상자 8개 (※파티원이 동시에 클릭시 여러개 습득가능) 목 : 도.. 구 자료들/기타 2014.04.20
아바 - Eboat 동영상 -_-; 오랫만에 잘되길래 그때부터 촬영시작.. 첨에 방들어가서 3번죽고 시작하지만 오늘나라 대충긁어두 다 죽넹 그러나 저화질.. 떵컴이라 구 자료들/A.V.A 2014.04.19
좌표값 픽셀가져오기 Function GetScreenPixel(ByVal pt As Point) As Color Using bmp As New Bitmap(1, 1) Using g As Graphics = Graphics.FromImage(bmp) g.CopyFromScreen(pt, Point.Empty, New Size(1, 1)) Return bmp.GetPixel(0, 0) End Using End Using End Function 프로그래밍언어/VB.NET 2014.03.28