Physical Address

304 North Cardinal St.
Dorchester Center, MA 02124

zemna

zemna

MR. 영업 히어로의 탄생 – SaaS CRM 활용 가이드

업무 방식만 바꿔도 우리 회사의 성과를 향상시킬 수 있다. 그동안 맨파워에만 의지했던 영업 활동은 이제 그만! 영업 고객 관리에 날개를 달아주는 SaaS를 통한 CRM 활용 가이드를 만화를 통해 쉽고 재미있게 제시한다. 주요 내용 영업 관리와 고객 관계 관리의 자동화 축적된…

Need to make a user control transparent

To make your user control transparent, Add code described in three steps Step 1 protected override CreateParams CreateParams{get{CreateParams cp = base.CreateParams;cp.ExStyle |= 0x00000020;return cp;}} Step 2 protected override void OnPaintBackground(PaintEventArgs e){// dont code anything here. Leave blank} Step 3 protected…

MySql 설치하기

이번에는 Windows에 MySql을 설치해보도록 하겠습니다. 주소로 접근하여 Windows용 MySql 설치파일을 다운로드 받습니다 Pick a Mirror 버튼을 누르게 되면 회원가입 화면이 나타나게 됩니다. 가입하지 않고 바로 다운로드 받으려면 하단에 위치한 ‘No thanks, just take me to the downloads!’ 링크를 클릭하면…

Neil Pasricha: The 3 A’s of awesome

Neil Pasricha’s blog 1000 Awesome Things savors life’s simple pleasures, from free refills to clean sheets. In this heartfelt talk from TEDxToronto, he reveals the 3 secrets (all starting with A) to leading a life that’s truly awesome. 동영상을 플레이하면…

Managed Extensibility Framework

출처 : Several months ago we formed what we call Application Framework Core team. The charter of the team is to play the same role in the application frameworks space (WinForms, ASP.NET, WPF, Silverlight) as the Base Class Libraries…

JavaScript Event Calendar – FullCalendar

Website : When it needs Posting schedule for social account need to be managed by staff before posting. Event schedule management for e-Commerce Case Study User can create posting schedule with date, caption, image(s), and video(s) Saved posting schedule…

IOCP – 윈속 프로그래밍

원작자가 누구인지 몰라 출처를 밝히지 못합니다. 문제가 되면 삭제하겠습니다. IOCP – 윈속 프로그래밍 이번 회에는 지난 회에서 멀티스레드 윈속 서버 프로그램을 IOCP(Input Output Completion Port)를 이용하는 것으로 변경해보도록 하자. 전 에 서버 프로그래밍에 관한 필자의 연재기사에서 수차례 IOCP를 언급한 바…

Imports 선언

Import 선언 출처 : MEF 의 구성 요소에 System.ComponentModel.Composition.ImportAttribute 특성을 선언하여 Import 를 선언할 수 있습니다. Import 는 Export 와 사용 방법이 매우 유사합니다. Import 는 프로퍼티(Properties), 필드(Fields), 생성자(Constructors) 에 선언할 수 있으며, 계약된 Export 구성 요소들을 Import 할…

Make Bitmap instance from Drawable

[code lang=”java”] // Create empty bitmap Bitmap bitmap = Bitmap.createBitmap(width, height, Bitmap.Config.ARGB_8888); // Create canvas to draw drawable Canvas canvas = new Canvas(bitmap); // Set bounds d.setBounds(0, 0, 48, 48); // Draw drawable to canvas d.draw(canvas); // Save canvas canvas.save();…

Make ‘Sub Main()’ function like C#

비주얼 베이직 닷넷(이하 VB.NET)에는 프로젝트 속성에 이전 VB처럼 응용프로그램 정보를 설정할 수 있는 기능인 ‘응용 프로그램 프레임워크 사용‘ 기능을 가지고 있다. VB.NET 프로젝트를 하나 생성한 후 프로젝트 속성을 살펴보도록 하자. [simage=3440,576,n,center,] ‘응용 프로그램‘ 탭에서 ‘응용 프로그램 프레임워크 사용‘ 체크박스를 찾을…