본문 바로가기

Development/.Net

(35)
반응형
MySQL Connection String Samples - ConnectionStrings.com Connection strings for MySQL Providers to use when connecting to MySQL » MySQL Connector/Net (MySqlConnection) » eInfoDesigns.dbProvider (MySqlConnection) » SevenObjects MySqlClient » dotConnect for MySQL (former MyDirect.NET and Core Labs MySQLDirect.NET) (MySqlConnection) » MySQLDriverCS (MySQLConnection) » MySQL OLEDB » .NET Framework Data Provider for OLE DB (OleDbConnection) » MyODBC 2.50 »..
Using the Ribbon (.NET) Articles > .NET Using the Ribbon When to use the ribbon First of all, you should know when I suggest to use the ribbon. Why? Well, not because is the new thing on office, it should be used on every app. Take Office Outlook for example. Although it have an improved GUI, it doesn't feature a Ribbon like Word, Excel, PowerPoint and Access. From where I see it, it might be because of two possible th..
ASP.NET AJAX 프로젝트 만들기 준비 사항 ASP.NET AJAX 프로젝트 만들기 준비 사항~! 여기서 다루어질 이야기는 제목과 같습니다. 즉 ASP.NET AJAX 컨트롤에 관심은 있는데 어떻게 어디 서 부터 시작을 해야 할지 모르는 분들을 위해 간단하게 이야기 하도록 하겠습니다. 역시 개발의 시작 은 프로젝트를 생성에서 부터 겠지요~!^^ ★ VS2005 준비 사항 ★ ㅁ ASP.NET Extensions1.0 를 설치를 해야 합니다. - 다운로드 주소 ㅁ ASP.NET Ajax controlToolkit 참조해야 합니다. - 다운로드 주소 ASP.NET Extensions1.0는 .NET Framework 2.0 이상에서 지원이 된다고 합니다. 고로 Visual Studio2005 이상 버전에서 사용할 수 있겠지요~^^ AJAX Extens..
New ASP.NET Charting Control : 공짜 차트 New ASP.NET Charting Control: New ASP.NET Charting Control: Microsoft recently released a cool new ASP.NET server control - - that can be used for free with ASP.NET 3.5 to enable rich browser-based charting scenarios: Download the free Microsoft Chart Controls Download the VS 2008 Tool Support for the Chart Controls Download the Microsoft Chart Controls Samples Download the Microsoft Chart Contr..
ASP.NET 용 AJAX Control Toolkit 1.0 실버라이트와 닷넷2009/01/19 08:09 ASP.NET 용 AJAX Control Toolkit 1.0 ASP.NET 용 AJAX Control Toolkit 라는게 있었는데, VS2008에 기본으로 있는게 아니었음 ㅠㅠ 이건 비공식적인 도구인듯.. 따라서 , AJAX Control Toolkit 을 웹에서 받아서, VS2008 도구 상자에 추가해야함 그 방법은 MSDN에 아래와 같이 나와있더라.. 아래는 2.0용 AJAX Control Toolkit임..^^ ASP.NET AJAX Control Toolkit 어셈블리 설치 현재 버전의 ASP.NET AJAX Control Toolkit 다운로드합니다. Control Toolkit은 Codeplex 웹 사이트에서 사용할 수 있습니다. Windows..
꿈꾸는 컴퓨터 by EHXM ~ FLEX 무료 개발환경 구축 ( Adobe Flex Builder 3, Flashdevelop 3 ) ~ FLEX의 개발환경으로는 FLEX SDK 3 + Flash Develop 3 + Flash Player Debugger FLEX Builder 3 / Eclipse plugin 정도로 볼 수 있는데, Flex Builder는 유로로 Flex Builder 3 Professional edition 의 가격은 $699이지만 학생에 한해서 무료로 배포받을 수 있다. Flex Builder는 Adobe에서 개발한 Eclipse기반 개발 툴로 개발의 생산성을 고려한다면 Flex Builder를 가장 추천한다. 하지만 학생이 아니고, $699의 가격이 부담되는 가격이라면 Flash Develop을 이용해도 무료로 강력한 Flex개발 환경을 구축할 수 있다. 그럼, 두가지 방법에 대해서 개발환경을 구축해 보겠습니다...
DataTable DataTable dt = new DataTable(); DataRow dr = dt.NewRow(); dt.Columns.Add("index"); for (int i = 0; i < colIndex; i++) { dr[i] = i.ToString(); } dt.Rows.Add(dr); return dt;
DropDownList Inside GridView(Mothod 1) In one of my previous articles I explained that how you can embed a DropDownList inside the GridView control. You can check out the article at Accessing DropDownList inside the GridView Control. If you look closely you will notice that all the DropDownList inside the GridView contains the same information. In this article I will demonstrate that how you can have DropDownList inside the GridView ..
Web Things Considered: DropDownList inside a GridView (or DataGrid) Web Things Considered Wednesday, September 14, 2005 DropDownList inside a GridView (or DataGrid) I'm still coming up to full speed on ASP.NET, as evidenced by a conversation I had yesterday about Grids and DropDownLists and their events. In the interest of reinforcing the concepts, I've implemented a sample page and am summarizing it here to further commit it into my brain. The page requirements..
엑셀 마지막 ROW, COLUMN COUNT 기본 형식 WorkSheet.UsedRange.Rows.Count 예 Excel.Worksheet wsh = sheets.ActiveSheet; int rowindex = 0, colindex = 0; rowindex = wsh.UsedRange.Rows.Count; colindex = wsh.UsedRange.Columns.Count; 에서 삽입