분류 전체보기
2013. 06. 08 네이버 관련 모듈
2013. 06. 08 네이버 관련 모듈
2013.05.04'------------------------------------------------------------------------------------------------------------- ' 이름: modNaver.bas ' 날짜: 2013/02/13 ' ' 내용: 네이버 공감, 덧글, 스크랩, 카페 가입 등에 관한 모듈 ' 목록: Sub Initialization() ' Function Login(ID As String, PW As String) As Boolean ' Sub BlogComment(BlogID As String, logNo As String, Comment As String) ' Function GetBlogMenu(BlogID As String, logNo As String..
2013. 05. 04 네이버 금칙어 관리기
2013. 05. 04 네이버 금칙어 관리기
2013.05.042년도 더 지난 프로젝트입니다. 참고하실 분 혹시나 있을까봐 이렇게 올려봅니다. Private WinHttp As New WinHttpRequest Private Login As Boolean Private Declare Function SendMessage Lib "user32" Alias "SendMessageA" _ (ByVal hWnd As Long, ByVal wMsg As Long, ByVal wParam As Long, lParam As Any) As Long Private Declare Sub ReleaseCapture Lib "user32" () Const WM_NCLBUTTONDOWN = &HA1 Const HTCAPTION = 2 Private Sub Form_Load() FadeIN..
2013. 05. 04 네이버 카페 조회수 올리기
2013. 05. 04 네이버 카페 조회수 올리기
2013.05.04Dim WinHttp As New WinHttpRequest Dim CID As String Dim TotalCount As Integer Private Sub Command1_Click() WinHttp.Open "POST", "http://nid.naver.com/nidlogin.login" WinHttp.SetRequestHeader "Referer", "https://nid.naver.com/nidlogin.login" WinHttp.SetRequestHeader "Content-Type", "application/x-www-form-urlencoded" WinHttp.Send "enctp=2&svctype=0&id=" & Text1 & "&pw=" & Text2 If InStr(StrConv(W..
2013. 04. 24 Surebets
2013. 04. 24 Surebets
2013.04.25
2013. 04. 20 사이트 자원 캐쳐
2013. 04. 20 사이트 자원 캐쳐
2013.04.20특정 사이트에 있는 이미지 혹은 동영상 등의 링크를 가져옵니다.(프레임 내에 있는 img 태그 혹은 embed 태그는 가져오지 않습니다.) using System; using System.Collections.Generic; using System.ComponentModel; using System.Data; using System.Drawing; using System.Text; using System.Text.RegularExpressions; using System.Net; using System.IO; using System.Windows.Forms; using System.Diagnostics; namespace webbrowserResource { public partial class Form..
일에 밀려 블로그를 들릴 틈이 없는것 같습니다.
일에 밀려 블로그를 들릴 틈이 없는것 같습니다.
2013.04.17학교에서 공부하고 집에 돌아와서 의뢰라던지 질문등을 받고 나서, 밥을 먹고 씻게되면 벌써 자는시간이네요. 요즘은 블로그에 글을 작성할 틈이 생기지 않는 것 같습니다. 5월 초에 알고리즘 강좌를 시작할 예정이고, 6월 중에 시스템 프로그래밍에 관한 강좌를 재개할 예정입니다.그리고 8월 초에는 네트워크 관련 강좌를 작성해보도록 하겠습니다. 궁금하신 사항은 언제든지 덧글 혹은 메일/메신저로 말씀해주시면, 최대한 답변을 해드리도록 노력하겠습니다.
2013. 04. 03 토토 분석기
2013. 04. 03 토토 분석기
2013.04.03좀 전에 만들었던 프로그램. 이번에 업데이트!
2013. 04. 03 네이버 랜덤 블로그 방문 댓글작성기
2013. 04. 03 네이버 랜덤 블로그 방문 댓글작성기
2013.04.03프로그램베이에 있던 프로그램을 그대로 따라 만들기!
ShowWindow를 통한 윈도우 숨기기
ShowWindow를 통한 윈도우 숨기기
2013.04.01비슷한 프로그램을 생각하시면 뒤통수조심해가 있겠네요. 생각보다 간단한 프로젝트입니다. [DllImport("user32")] public static extern int ShowWindow(int hwnd, int nCmdShow); private const int SW_HIDE = 0; private const int SW_SHOW = 5; ArrayList handleArray = null; public Form1() { InitializeComponent(); } private void Form1_Load(object sender, EventArgs e) { handleArray = new ArrayList(); initProcessList(); } private void initProcessLis..
2013. 03. 27
2013. 03. 27
2013.03.27
C# 화면 회전(Screen Rotate)
C# 화면 회전(Screen Rotate)
2013.03.24DEVMODE dm = NativeMethods.CreateDevmode();GetSettings(ref dm); int temp = dm.dmPelsHeight; dm.dmPelsHeight = dm.dmPelsWidth; dm.dmPelsWidth = temp; int index = Array.IndexOf(orientationValues, (object)dm.dmDisplayOrientation); int newIndex = (index == 0) ? 3 : index - 1; dm.dmDisplayOrientation = orientationValues[newIndex]; ChangeSettings(dm); private void ChangeSettings(DEVMODE dm){ NativeMet..
C# 크레이지 마우스(crazy mouse)
C# 크레이지 마우스(crazy mouse)
2013.03.24timer4_Tick():Point cursorPoint = new Point(); Random random = new Random(); N += random.NextDouble() * 2; if (N > 16.28) N = 0; GetCursorPos(ref cursorPoint); SetCursorPos(Convert.ToInt32(cursorPoint.X + (20 * Math.Cos(N))), Convert.ToInt32(cursorPoint.Y + (20 * Math.Sin(N)))); P.S N은 Double형이며, 전역변수입니다.