본문 바로가기

자료

Grid 라이브러리-Datatables 사용법/예제 기본 사용 음.. 이건 그냥 스크린샷으로 대체합니다. 공식홈페이지에 들어가시면 메인페이지에 등장합니다. 윗 스크린샷에서 설명이 생략된 #myTable 은 아래와 같은 구조로 만드시면 되고, 서버사이드로 데이터를 처리하여 데이터테이블을 만들 시 를 선언하시고 실제로 값을 넣으시면 됩니다. 저는 ajax로 처리할 예정이라서 만 사용했습니다. 공식홈페이지에선 데이터가 100,000건 이상이면 서버사이드로 처리하라고 권장하고 있습니다. 컬럼1 컬럼2 컬럼3 AJAX 아래와 같이 사용합니다. 기본은 GET 방식입니다. 데이터를 받아오고, columns로 json의 키 값에 맞춰 선언해 줍니다. data를 4개 선언하셨으면, HTML의 에도 4개의 컬럼이 있어야 됩니다. var table = $('#myTable'.. 더보기
Laravel: How to Add Background Color to Datatables Columns Datatables are powerful to list the data, but adding some colors would help users to visually filter data better. One of the most common examples is to view status of the record, with some background color. This article will show you how. This example will be based on two Datatables generated with our QuickAdminPanel, but you don’t need to use our tool, it should be applicable to any Datatables... 더보기
[C#/VB.NET] [ OpenCv ] 이미지 서치 MatchTemplate [C#/VB.NET] [ OpenCv ] 이미지 서치 MatchTemplate private void button3_Click(object sender, EventArgs e) { // 원본 이미지 using (Mat mat = new Mat(@"img\cat.jpg")) // 찾을 이미지 (고양이 얼굴) using (Mat temp = new Mat(@"img\searchTarget.png")) using (Mat result = new Mat()) { // 이미지 템플릿 매치 Cv2.MatchTemplate(mat, temp, result, TemplateMatchModes.CCoeffNormed); // 이미지의 최대/ 최소 위치 겟 OpenCvSharp.Point minloc, maxloc; do.. 더보기
[C#/VB.NET]GetCursorPos - Mouse Pointer의 현재위치 반환 [C#/VB.NET]GetCursorPos - Mouse Pointer의 현재위치 반환 GetCursorPos함수는 현재 화면상에서 Mouse Pointer의 위치를 반환합니다. Declare Function GetCursorPos Lib "user32" Alias "GetCursorPos" (ByRef lpPoint As POINTAPI) As Integer - VB.NET 선언 Public Structure POINTAPI Public x As Integer Public y As Integer End Structure Dim pntapi As POINTAPI GetCursorPos(pntapi) pntapi.x pntapi.y - VB.NET 호출 [DllImport("user32.dll")] pub.. 더보기
[C#/VB.NET]가상 Key Code표 [C#/VB.NET]가상 Key Code표 Code(16진수) 상수명 Key 1 VK_LBUTTON mouse 왼쪽 button 2 VK_RBUTTON mouse 오른쪽 button 3 VK_CANCEL 취소와 상동 4 VK_MBUTTON mouse 가운데 button(scroll button) 5 VK_XBUTTON1 mouse 특수기능 button1 6 VK_XBUTTON2 mouse 특수기능 button2 8 VK_BACK 삭제 button(←) 9 VK_TAB TAB 0C VK_CLEAR Clear와 상동 0D VK_RETURN ENTER 10 VK_SHIFT SHIFT 11 VK_CONTROL CTRL 12 VK_MENU ALT 13 VK_PAUSE PAUSE BREAK 14 VK_CAPITAL.. 더보기
[C#/VB.NET]GetAsyncKeyState - 현재 Key상태 확인 [C#/VB.NET]GetAsyncKeyState - 현재 Key상태 확인 GetAsyncKeyState() 함수는 함수가 호출될때 함수의 인수에 지정한 Key가 눌려진 상태인지 혹은 눌려진 상태가 아닌지에 대한 값을 반환합니다. 또한 처음 GetAsyncKeyState()함수가 호출된 이 후 다시 GetAsyncKeyState()함수가 호출될때까지 해당 Key가 눌려진 상태에서 단 한번도 떨어지지 않았는가에 대한 여부도 판단할 수 있습니다. Declare Function GetAsyncKeyState Lib "user32" Alias "GetAsyncKeyState" (ByVal vKey As Integer) As Integer ▶VB.NET 선언 GetAsyncKeyState(16) '16인수는 Sh.. 더보기
[C#/VB.NET]GetKeyState - 해당 Key가 눌려졌는지에 대한 상태값 반환 [C#/VB..NET]GetKeyState - 해당 Key가 눌려졌는지에 대한 상태값 반환 GetKeyState 함수는 인수로 전달된 값에 해당하는 Key가 눌려졌는지의 여부를 Toggle 유형의 값으로 반환합니다. Declare Function GetKeyState Lib "user32" Alias "GetKeyState" (ByVal keyCode As Integer) As Short ▶VB.NET 선언 GetKeyState(65) ▶VB.NET 호출 [System.Runtime.InteropServices.DllImport("user32.dll")] private static extern short GetKeyState(int keyCode); ▶C# 선언 GetKeyState(65); ▶C# 호출.. 더보기
[C#/VB.NET]UnregisterHotKey - 설정한 Hotkey의 해제 [C#/VB.NET]UnregisterHotKey - 설정한 Hotkey의 해제 UnregisterHotKey함수는 RegisterHotKey함수로 설정한 Hotkey를 더이상 사용하지 않도록 해제하는 함수입니다. Declare Function UnregisterHotKey Lib "user32" Alias "UnregisterHotKey" (ByVal hwnd As Integer, ByVal id As Integer) As Integer ▶VB.NET 선언 UnregisterHotKey(handle, id) ▶VB.NET 호출 [DllImport("user32.dll")] private static extern int UnregisterHotKey(int hwnd, int id); ▶C# 선언 Unre.. 더보기