C Subcategories |
Professional C# Web Services: Remote Objects |
| C | Views: 0 | |
| We continue our look at the .NET Remoting architecture with an examination of Remote Objects. Find out which objects are stateless, which objects hold state, and how to make sure each object remains active long enough for the client to make use of it |
Building An Outlook COM Add-In With VC /ATL |
| C | Views: 0 | |
| Just recently I developed an Outlook 2000 COM add-in as part of a CRM tool that I was creating. While coding the project, I thought that the details of a similar add-in would make a good topic for an article, especially since most of the Office related C.. |
Dynamically Switchable Control Type |
| C | Views: 0 | |
| This article shows how a control can be switched at run-time between a number of controls including edit, combobox, static, and checkbox controls. |
V1.0 Guestbook in C# |
| C | Views: 0 | |
| This application was adopted from Steve Schofield's original VB Guestbook DotNet application - I converted it to C# and added a few features that work better for me |
Retrieving Conversation text from Instant Messengers - Part I |
| C | Views: 0 | |
| In in this first part., learn to retrieve conversation text from MSN Instant Messanger |
Low Cost Verifying Of Credit Card Numbers in C# |
| C | Views: 0 | |
| The last digit of a credit card is a check digit that is used to detect keystroke errors when a check card is entered into a computer |
Obtain all IP addresses of local machine |
| C | Views: 0 | |
| The C# code required to simply start up winsock in a Windows environment, and enumerate all the IP addresses on your local machine |
Building a Store Application With MySQL++ and C/C++ |
| C | Views: 2 | |
| So, you've been accepted into your dream job: great pay, amazing benefits and your doing something that you actually like -- sounds great doesn't it. But all of this shatters when you walk into your first conference meeting only to find out that this is .. |
From JDOM to XmlDocument |
| C | Views: 0 | |
| The Microsoft .NET framework is becoming well known for its integration of XML into nearly all data-manipulation tasks. In the first article in this series, I walked through the process of porting a simple Java application using SAX to one using .NET's X.. |
Flicker Free Drawing In C# |
| C | Views: 0 | |
| Methods for removing flickering when drawing graphics using C#.
|
Providing Content Through Web Services |
| C | Views: 0 | |
| Content Providers will see Web Services as a major component that will change the way they distribute information. Third party Content Providers will gain on the standardization and discovery mechanism provided by Web Services |
Simple Binary Tree Class |
| C | Views: 0 | |
| Binary Search Trees are useful for finding items in a list that changes infrequently. Add and Remove operations are typically expensive since Binary Search Trees require that a tree be balanced. This article illustrates another Binary Tree class |
How to Compile C# Programs and Compiler Switches |
| C | Views: 0 | |
| Compiler CS0234 Error "The type or namespace 'WinForm' does not exist in the class or namespace 'System' ". You go through the code again and again and find no mistakes but still the compiler keeps on crying CS0234 Error. This article contains some tips .. |
Event Handling in .NET Using C# |
| C | Views: 0 | |
| In this article I discuss the event handling model in .NET using C# |
Changing Target Web Service At Runtime |
| C | Views: 0 | |
| Some times it may happen that after deploying the web service client the web service is moved to some other location. It would be nice to allow configurable URL so that even if original web service is moved your clients need not be recompiled |
All About: File I/O in C++ |
| C | Views: 0 | |
| This tutorial will start with the very basis of File I/O (Input/Output) in C++. After that, I will look into aspects that are more advanced, showing you some tricks, and describing useful functions |
.NET Event Handling using the Template Method Design Pattern |
| C | Views: 0 | |
| Microsoft .NET event handling, in common with typical object-oriented frameworks, is implemented using the well-known Observer design pattern |
Adding the foreach construct to Managed C++ |
| C | Views: 0 | |
| Visual Basic developers are well aware of the foreach construct, but unfortunately, it's absent from Managed C++. Here's a look at how you can add it to your C++ arsenal |
Building A SOAP Client With Visual C++ |
| C | Views: 0 | |
| In this article, I'll show you how to build a SOAP client using Visual C++. This tutorial gives you a hands on introduction to using the SOAP API. SOAP (or Simple Object Access Protocol) is emerging as a very popular protocol for exchanging information a.. |
Interface, IEnumerable and IEnumerator in C# |
| C | Views: 0 | |
| The concept of an interface is an important element in object-oriented programming. It's what makes OOP so structured but flexible at the same time. By creating interfaces and implementing interfaces, your applications become more reusable and open. Here.. |
|