My best man asked me a few months ago to create him an app that would allow him to send a predefined sms to a predefined number on a click of a button using his Win Mobile phone. I thought about it and decided to write this application for him. First thing that we need [...]
Archive for the C# Category
Creating a simple contact management application with windows forms - Posted January 21, 2010
As i am teaching VB.NET in a local management and informatics school, i will need a simple application example for use in my lecture. The application will be a win-forms variation of Stephen Walter’s asp.NET MVC Contact Manager application, as i think it is a good startup example. I will use standard ADO.NET datasets and [...]
Creating ASP.NET MVC application against Oracle database pt. 1 - Posted August 14, 2009
This is a first in a series of posts, as i will try to build ASP.NET MVC application against Oracle XE database, but this example can be used for any Oracle database greater than 9i. I will try to use Oracle ODAC.net the latest version that i can get from the Oracle Site. With a [...]
How to get directory contents in C# - Posted July 27, 2009
I am creating a backup application and have to get the list of files in some directory here is the simple way to do it. If you only need contents of one directory you can use this code, i output it to System.Console just as an example, you can catch everything in string[] or whatever [...]