Blogs1 - 10 of 118 recent posts for tag:"c sharp"
04
Jan
2012
Excellent Video Tutorials on C# Fundamentals for Beginners

39 days ago by Dattatrey Sindol Datta

While I was browsing through the videos on Channel 9, I came across a nice video series explaining the fundamentals of C# development. If you are completely new to C# and want to start learning the language, this is one of the best video series which explains right from the very basic concepts. 01 - ...

27
Dec
2011
I dare you! I Ludum Dare you!

47 days ago by The Horseman

The Horseman recently gave a presentation on the 2DToolKit sprite animation library and toolchain at his local Unity 3D Users Group. As it happens, one of the attendees asked The Horseman if he’d ever heard of Ludum Dare and its 48 hour game competition. I had to admit that I was not familiar with i ...

26
Dec
2011
Cryptographically secure One-time Pads

47 days ago by eksith

It’s the end of Christmas day… And I’ve got a splitting headache (because I don’t drink and had to watch everything). Luckily I’m not covered in someone else’s puke or urine, which is always nice. No one drove into any trees (as far as I know), lost their pants or an eye. Super… Just finished checki ...

16
Dec
2011
C# Resources 에 이미지 로드하기

57 days ago by essbihan

* 출처 : http://kwangho.tistory.com/m/1525C# Resources 에 이미지 로드하기Load image from resources in C# 하는 방법입니다. 쉽게 프로젝트를 관리할때 Resource 폴더에 이미지를 넣어둡니다. 이렇게 넣어둔 파일은 Bmp 함수에서 로드할때는 경로를 지정합니다. 상대경로로 지정을 하여 사용하게 되면 debug 모드에서는 정상적으로 사용할 수 있습니다. 하지만 ClickOnce나 Setup로 배포파일을 만들게 되면 상대경로가 달라지게 되어 이미지를 로드 못하는 오류가 발생 ...

14
Dec
2011
Windows Forms DataGridView 컨트롤에서 이미지 열 작업

59 days ago by essbihan

*출처 : http://msdn.microsoft.com/ko-kr/library/x0tz73t0.aspxWindows Forms DataGridView 컨트롤에서 이미지 열 작업 Visual Studio 2010 다음 코드 예제에서는 대화형 UI(사용자 인터페이스)에서 DataGridView 이미지 열을 사용하는 방법을 보여 주며 DataGridViewImageColumn의 이미지 크기 조정 및 레이아웃 예도 보여 줍니다. 예제 C#C++VB .......

C# DataGridViwDisableButtonCell 만들기

59 days ago by essbihan

*출처 : http://www.masque.kr/?mid=live&page=14&search_target=tag&search_keyword=C%23C#에서 DataGridView를 쓰다보면 ButtonCell을 간혹 쓰는데,이게 비활성화 속성이 필요할때가있습니다. 일반 버튼들이야 그냥 Enable속성을 False로 주면 되지만, ButtonCell은 그런 속성이 없죠. 그래서 찾아봤습니다. MSDN에 보니 직접 DataGridViewButtonCell을 상속받아 만들어 쓰는 방법이 있더군요. //DisableButtonCellCol ...

11
Dec
2011
More on Roomie’s website rewrite // technology

62 days ago by David McGrath

As stated in my previous post about Roomie, I’ve been using a lot of brain juice to rewrite Roomie’s website. I wrote the original website in ASP.NET with Web Forms, which was pretty standard for the time. Although technology like ASP.NET MVC and the Entity Framework existed in some form, they weren ...

07
Dec
2011
DataView를 이용한 rowfilters

66 days ago by essbihan

[출처] [ADONET] DataView (IT전문가 취업의 지름길 (사)KH정보교육원) |작성자 윤용준namespace ConsoleEX { class Ex18_DataView { static void Main(string[] args) { // SQL -> Table -> View(select 결과(질의)) // C# -> DataTable -> DataView //DataView 용도 : 데이터 정렬, 검색(필터)지원 SqlDataAdapter adapter = new SqlDataAdapter("select * from ti ...

DataView RowFilter Syntax [C#]

67 days ago by essbihan

*출처 : http://www.csharp-examples.net/dataview-rowfilter/* 앙마의 덧글 : 첨부된 파일은 본문의 방법을 이용한 셈플 소스입니다. 참고하세요...DataView RowFilter Syntax [C#] This example describes syntax of DataView.RowFil­ter expression. It shows how to correctly build expression string (without „SQL injection“) using methods to escape ...

02
Dec
2011
openFileDialog에서 경로와 파일명 가져오기

71 days ago by essbihan

출처 : http://www.hoons.kr/board.aspx?Name=qacshap&Mode=2&BoardIdx=17840&Key=&Value= private void openFileDialog1_FileOk(object sender, CancelEventArgs e) { OpenFileDialog dlg = openFileDialog1; string fullPathName = dlg.FileName; string fileName = dlg.SafeFileName; string pathName = fullName.Substrin ...

Previous1234567