自定义博客皮肤VIP专享

*博客头图:

格式为PNG、JPG,宽度*高度大于1920*100像素,不超过2MB,主视觉建议放在右侧,请参照线上博客头图

请上传大于1920*100像素的图片!

博客底图:

图片格式为PNG、JPG,不超过1MB,可上下左右平铺至整个背景

栏目图:

图片格式为PNG、JPG,图片宽度*高度为300*38像素,不超过0.5MB

主标题颜色:

RGB颜色,例如:#AFAFAF

Hover:

RGB颜色,例如:#AFAFAF

副标题颜色:

RGB颜色,例如:#AFAFAF

自定义博客皮肤

-+

ltolll的博客(技术版)

YEARN FOR TECHNIC

  • 博客(5)
  • 资源 (9)
  • 问答 (2)
  • 收藏
  • 关注

原创 C#控件事件处理代码的复用

复用前:        private void nudSMBegin_MouseUp(object sender, MouseEventArgs e)        {            nudSMBegin.Select(0, nudSMBegin.Value.ToString().Length);        }        private void nudS

2012-06-09 10:13:43 1443

转载 KeyDown,KeyPress 和KeyUp 之区别

Windows窗体通过引发键盘事件来处理键盘输入以响应Windows消息,大多数Windows窗体应用程序都通过处理键盘事件来以独占方式处理键盘输入。1.按键的类型  Windows窗体将键盘输入标识为由按位Keys枚举表示的虚拟键代码。使用Keys枚举,可以综合一系列按键以生成单个值,这些值与WM_KEYDOWN和WM_SYSKEYDOWN,Windows消息所伴随的值相对应。另外,

2012-06-09 09:00:13 1090

原创 C#的numericUpDown控件

numericUpDown控件主要属性方法事件属性:numericUpDown1.Value = 1;numericUpDown1.Maximum = 100;numericUpDown1.Increment = 2; // 步进值numericUpDown1.Text; Text和Value的区别:Text值只要键盘KeyUp发生后就改变(就是按下又松开了键盘键)。Val

2012-06-08 19:56:59 19297 4

转载 .Net判断是否出现滚动条

private const int WS_HSCROLL = 0x100000;        private const int WS_VSCROLL = 0x200000;        private const int GWL_STYLE = (-16);        [System.Runtime.InteropServices.DllImport("user32",C

2012-06-06 14:23:03 3334

转载 更改vs2010帮助文档的位置

第一步:移动库文件将原路径下帮助文档库的所有文件(1个cld-settings.xml)和文件夹(4个catalogs,content,manifest,VS_100_zh-CN)复制到你想要放置的路径下;第二步:更改注册表运行regedit.exe,把HKEY_LOCAL_MACHINE/SOFTWARE/MICROSOFT/HELP/V1.0/LocalStore的键值修改成帮助文

2012-06-05 10:40:30 1040

C++ How to Program, 10th Edition, 2016, by Paul Deitel, Harvey

英文第10版 Introducing the New C++14 Standard Preface Welcome to the C++ computer programming language and C++ How to Program, Tenth Edition. We believe that this book and its support materials will give you an informative, challenging and entertaining introduction to C++. The book presents leading-edge computing technologies in a friendly manner appropriate for introductory college course sequences, based on the curriculum recommendations of two key professional organizations—the ACM and the IEEE.

2023-05-20

A Tour of C++ - Stroustrup, Bjarne - Addison Wesley Professional

英文版 第二版 In A Tour of C++ (2/e), Bjarne Stroustrup, the creator of C++, describes what constitutes modern C++. This concise, self-contained guide covers most major language features and the major standard-library components―not, of course, in great depth, but to a level that gives programmers a meaningful overview of the language, some key examples, and practical help in getting started.

2023-05-20

Getting Started with Data Warehousing

Data warehousing software works to manage a repository of large amount of data. It includes a series of features and functions that allow for easier reporting and analysis. IBM uses its InfoSphere Warehouse product to support data warehousing. InfoSphere Warehouse is based on the DB2 database server.

2015-03-19

Microsoft_SQL_Server_2008_A_Beginner's_Guide 英文版

Microsoft SQL Server 2008: A Beginner’s Guide follows three previous editions that covered SQL Server 7, 2000, and 2005. Generally, all SQL Server users who want to get a good understanding of this database system and to work successfully with it will find this book very helpful. (If you are a new SQL Server user but understand SQL, read the section “Differences Between SQL and Transact-SQL Syntax” later in this introduction.) This book addresses users of all components of the SQL Server system. For this reason, it is divided into several parts: users who want to learn more about the relational database component called Database Engine will find the first three parts of the book the most useful. The fourth part of the book is dedicated to business intelligence users who use either Analysis Services or relational extensions concerning BI. The last part of the book provides insight for users who want to use XML data and/or spatial data.

2009-03-31

LINQ Unleached For C Sharp(2/2)

共2个压缩包,这是第2个 About the Author Paul Kimmel is a four-time Microsoft MVP, the author of over a dozen books on object oriented programming and UML, including three books on Microsoft .NET, a columnist for codeguru.com, developer.com, informit.com, devsource.com, and devx.com, a cofounder of the Greater Lansing Area .NET Users Group (glugnet.org, East Lansing and Flint), a full-time software developer, and sometimes pilot. Paul still lives and works in the greater Lansing, Michigan, area (and hasn’t given up on the economy). After 15 years of independent consulting, Paul now works for EDS as an application architect.

2008-12-05

LINQ Unleached For C Sharp(1/2)

共2个压缩包,这是第1个 Foreword Data affects just about every aspect of our lives. Everything we do is analyzed, scrutinized, and delivered back to us in the form of coupons and other marketing materials. When you write an application, you can be sure that data in one form or another will be part of the solution. As software developers, the ease with which we can store, retrieve, and analyze data is crucial to our ability to develop compelling applications. Add to that the fact that data can come in a number of different shapes and formats, and it quickly comes to light that there is tremendous value in a consistent framework for accessing many types of data. Several different data access approaches have been developed for Windows developers over the years. ADO and OLEDB and subsequently ADO.NET gave us universal access to relational databases. MSXML and ADO.NET made it possible to inspect and manipulate XML documents. Each of these technologies had their benefits and drawbacks, but one common thread ran through each of them: They failed to deliver data access capabilities in a way that felt natural to developers. LINQ now makes data access a first-class programming concept in .NET, making it possible for developers to express queries in a way that makes sense to developers. What makes LINQ unique is that it enables programmers to create type-safe data access code complete with Intellisense support and compile time syntax checking. Paul Kimmel has done an excellent job of presenting LINQ in a concise and complete manner. Not only has he made LINQ approachable, but he has also masterfully explained concepts such as Anonymous Types and Lambda Expressions that help make LINQ a reality. The sample code throughout the book demonstrates the application of the technology in a clear and meaningful way. This is a great “Saturday morning with a pot of coffee” kind of book. I hope you’ll dive in and get as much out of this book as I did. Darryl Hogan Architect Evangelist, Microsoft

2008-12-05

Illustrated C# 2005.pdf(3/3)

共3个RAR包,这是第三个<br>

2007-10-17

Illustrated C# 2005.pdf(2/3)

共3个RAR包,这是第二个

2007-10-17

Illustrated C# 2005.pdf(1/3)

请注意: 共3个RAR包,这是第1个 Publisher's description Illustrated C# 2005 doesn’t use the traditional dense prose format of most programming texts. Rather, it presents the C# programming language in a unique visual manner. The book uses three techniques to achieve this: concise text; tables that clarify and summarize language features; and frequent figures and diagrams. Each feature is also illustrated with concise, focused code samples. The book starts with an overview of the .NET platform and the role played by C#, then quickly delves into the language. It covers the entire C# language, including new features added in C# 2.0 as well as the most complex topics. It’s an ideal read if you’re a migrating C++ or VB programmer who already knows how languages work. Despite its title—which might give the impression that it’s a lightweight treatment of the language—this book is anything but. With its clean visual format, you’ll be able to learn the material more quickly and retain it better than you would with a typical C# 2005 book. Even experienced programmers may come away from it with a deeper understanding of the language

2007-10-17

TA创建的收藏夹 TA关注的收藏夹

TA关注的人

提示
确定要删除当前文章?
取消 删除