Personal Address Program in C#
This is a simple Personal Address Program that returns results from a database table, writes the output to textboxes, and uses buttons (First, Previous, Next, Last) to navigate through the records.
http://www.cprogrammingtrends.com/2005/1222.html
|
12.22.05 |
|
C++ Or C (or Both?)
Some of
you may have made use of Dean Jones' CleanCode
Email. It's a nicely done mail sender - it's not an SMTP server, it just sends
mail, but lets you specify the gateway or smart host to use, which makes it wonderful
for systems that don't need to receive mail. It's also great for systems with
broken Sendmail that you don't have time to fix, for debugging... http://www.cprogrammingtrends.com/2005/1201.html
|
12.01.05 |
|
A Bit Of C Debugging
I have a customer who has a hodge-podge of machines running various software programs.
It's all a mess, low on disk space, not every machine that should be backed up
is backed up, and so on. I'm slowly working toward a better world on some of those
things, but we still have to deal with the day to day problems. http://www.cprogrammingtrends.com/2005/1103.html
|
11.03.05 |
|
Microsoft
to add query extensions to VB.NET and C#
Seeking to simplify the task of writing data-oriented programs, Microsoft has
announced a technology preview of LINQ. An abbreviation for Language Integrated Query, LINQ will add constructs to Microsoft Visual Basic.NET... http://www.cprogrammingtrends.com/2005/0929.html
|
09.29.05 |
|
Microsoft Brings .Net to Katrina
Relief Effort
Microsoft Corp. is bringing the power of its .Net technology to the Hurricane Katrina relief effort, delivering a system to help locate people displaced or missing since the hurricane. http://www.cprogrammingtrends.com/2005/0909.html
|
09.09.05 |
|
Virtual Methods & Polymorphism In C#
Virtual methods allow object oriented languages to express polymorphism.This means that a derived class can write a method with the same signature as a method in its base class, and the bas class will call the derived class's method.By default in java, all methods are virtual. http://www.cprogrammingtrends.com/2005/0818.html
|
08.18.05 |
|
Loading
Images into SQL Server with C#
Many programmers
are discovering the need for a more efficient way to handle images for larger
web sites. eCommerce, realty, and other types of sites use from hundreds to thousands
of images, often stored on the hosting server's hard drive. http://www.cprogrammingtrends.com/2005/0721.html
|
07.21.05 |
|
Intel
Releases New C++ And Fortran Compilers
Intel has
announced some new tools for software developers to aid with building threaded
applications, and get the most out of apps on multi-core platforms. The company
claims that the new Intel Compilers version 9.0 for C++ and Fortran programming
languages improves security in Linux and Windows applications. http://www.cprogrammingtrends.com/2005/0616.html
|
06.16.05 |
|
Left,
Right and Mid functions in C#
I started
as a VB programmer and I must say that i miss using Left, Right and Mid methods
since it is not included in C#. But then again, there is always a suitable replacement.
The Substring method. http://www.cprogrammingtrends.com/2005/0519.html
|
05.19.05 |
|
Generics
in C#
Generics
are the most useful C# 2.0 language extensions, beside Anonymous methods, Iterators,
Partial types And Nullable types. What are generics? Generics permit classes,
structs, interfaces, delegates, and methods to be parameterized by the types of
data they store and manipulate. http://www.cprogrammingtrends.com/2005/0421.html
|
04.21.05 |
|
Event
Handling in C#: Custom event Handlers in .NET Made Simple |
Generics
in C#
Generics
are used to help make the code in the software components much more reusable.
They are a type of data structure that contains code that remains the same. The
data type of the parameters can change with each use.The usage within the data
structure adapts to the different data type of the passed variables.
http://www.cprogrammingtrends.com/2005/0302.html
|
03.02.05 |
|
Moving
C Structures Into .NET With Custom Marshaling
In a world
where legacy languages often prevail, we are reluctant to move away from them
by reciting the well known mantra, "If it ain't broken, don't fix it". This mantra
only gets you so far, until your competitor takes advantage of the newer, faster,
more efficient, and more maintainable technologies, and you are left in the dust
with your "pristine-aint-broke" legacy code. http://www.cprogrammingtrends.com/2005/0202.html
|
02.02.05 |
|
Siebel
Email Attachments Import - C# And MS Transact SQL Example
We see
cases when Microsoft CRM replaces such traditional CRM systems as Siebel. It is
not necessary, that clients decided to replace it themselves - they may be victims
of their systems - the example: Great Plains had alliance with Siebel several
years ago and we saw multiple clients with Great Plains - Siebel tandem. Now Great
Plains integrates with MS CRM. http://www.cprogrammingtrends.com/2005/0105.html
|
01.05.05 |
|