Click here to Skip to main content

Technical Blogs


RSS feed icon

Articles submitted by members via their Technical Blog feed. Want to have the blog entries from your Technical Blog automatically posted as articles on CodeProject? It's easy!

Page 309 of 334


6161. TCP/IP .NET Sockets FAQ
This is an attempt to address some TCP/IP frequently asked questions and present best practices. While the WinSock Programmer's FAQ will remain the ultimate FAQ for native code, there is a growing need for a simplified version that addresses the managed interface to TCP/IP sockets.Section 1 - App
(The Code Project Open License (CPOL))
General Reading » Uncategorised Technical Blogs » General
Stephen Cleary Updated: 20 Jun 2009
Rating: (0 votes for this Article)
6162. TCP/IP Resources
(This post is part of the TCP/IP .NET Sockets FAQ)There are two books that any TCP/IP network programmer needs to have. Unfortunately, they were both written well before .NET, so they only deal with unmanaged code - specifically, the WinSock API. However, the .NET Socket class methods directly cor
(The Code Project Open License (CPOL))
General Reading » Uncategorised Technical Blogs » General
Stephen Cleary Updated: 20 Jun 2009
Rating: (0 votes for this Article)
6163. MSBuild.ExtensionPack Accepts DynamicExecute Task
Sorry for the lack of blog postings lately. I have been busy the last week polishing, refactoring, and documenting my first (and hopefully only) MSBuild custom task: DynamicExecute. DynamicExecute makes it possible to define and execute .NET methods using MSBuild 3.5.Mike Fourie has accepted Dynam
(The Code Project Open License (CPOL))
General Reading » Uncategorised Technical Blogs » General
Stephen Cleary Updated: 20 Jun 2009
Rating: (0 votes for this Article)
6164. Using Socket as a Client Socket
(This post is part of the TCP/IP .NET Sockets FAQ)A client socket connects to a known server socket. To do so, it usually proceeds through the operations below.Construct. Socket construction is identical for all TCP/IP sockets; see Socket Operations for details.Connect. The client socket connec
(The Code Project Open License (CPOL))
Languages » C++ / CLI » C++/CLI
Stephen Cleary Updated: 20 Jun 2009
Rating: (0 votes for this Article)
6165. SQL. Running Totals.
Running totals... Accountants like them so much. But there is no way in SQL to make efficient query that calculate running total. Why? What is running total? It is just previous running total plus current value. But SQL syntax does not give an access to previous rows.
(The Code Project Open License (CPOL))
Database » Database » General
Anton Burtsev Updated: 20 Jun 2009
Rating: 4.67/5 (2 votes)
6166. Exposing Bindings as Properties of a Control
Demonstrates how to create versatile controls which expose bindings for the elements which they contain internally.
(The Code Project Open License (CPOL))
Web Development » Silverlight » Controls