소리소문 없이... 사랑도 명예도 이름도 남김 없이...
DexCore.net

c# 11

How to create barcode images from a string with different formats with C# using the barcodelib library in WinForms

Learn how to create different formats of Barcodes with the barcodelib library in C#If you are working with C# and you need to generate one dimensional barcodes, you may know that there are not a lot of open source Barcode Rendering libraries, that's why the barcodelib is one of the most known libraries to achieve this goal in C#, this library created by Brad Barnhill has been released under the ..

C# 2025.04.30

How to run any executable inside the System32 directory of Windows with C# in WinForms

Learn why applications inside the system32 directory cannot be started easily from your WinForms c# based application and how to start them properly.In windows, for some x64 based systems you will face sometimes a weird behaviour when you try to run some executable from your application that is located in the (C:\Windows\system32) directory of Windows, for example with dfrgui.exe, an application..

C# 2025.04.30

MSSQL 에서 C# 함수 사용

1. mssql 에서 clr (common language runtim) 활성화1EXEC SP_CONFIGURE 'clr enabled'위 쿼리로 현재 clr enabled 설정을 확인 할 수 있다.123name minimum maximum config_value run_value----------------------------------- ----------- ----------- ------------ -----------clr enabled 0 1 0 0※ 현재는 비활성화 상태12EXEC SP_CONFIGURE 'clr enabled', 1RECONFIGURE WITH OVERRIDE위 쿼리로 활성화를 하장2. 작성한 c# dll을 등록 사용권한 설정이 필요하다면 추가로 설정해 주자이제 어셈블리 ..

DataBase/SQL Server 2017.11.03

C # 으로 툴바 만들기

사실 익스플로러 툴바, BHO를 (브라우저 도우미 개체)를 만드 는게 여간 힘든일이 아닙니다. 에서 COM을 써야할 뿐더러 일반적인 프로그램이 아니기 때문에 정보조차 잘 없죠. 하지만 C #을으로 만들면 정말 쉽습니다. 우선 전 코드 프로젝트를 참고했습니다. 밴드 객체 -가. NET 2.0 Redux http://www.codeproject.com/csharp/BandObjects20.asp?select=1819328&df=100&forumid=306921&exp=0 위의 소스 파일은 코드 프로젝트의 소스를 사용하기 쉽게 약간 수정한 파일입니다. 기본 구조는 코드 프로젝트 소스와 마찬가지로 BandObject 클래스를 상속받는 것입니다. 우선 다음 두 개의 레퍼런스를 추가하도록 합니다. 에서 COM의 M..

C#/BHO 2012.03.23
728x90
반응형