Archive | Other RSS feed for this section

NEXFTP Ftp Client

NEXFTP is a simple and robust FTP client I earlier developed in java . In recent weeks I started to port it to C# . Allthough the code works fine with most of the remote servers I cannot assure you that it would work with everywhere. ** Not a perfect  — Have some bugs which [...]

Read more

Asteriods in C# Using GDI+

Summary For my first experiment in game design, ratherthan using some kind of directX wrapper I wanted to see what waspossible with GDI+.GDI+ has a lot of nice features but is slow, so not very practical forfast paced games, in this example you can see why.The game also includes sound…hey, it wouldn't be much of [...]

Read more

Console Apps: Colour Text

Introduction Whilst developing application running on theconsole is probably not the most exciting place, it is a great place touse for test harnesses or utilities. Of course when you are outputtingtext to the console window it can get pretty hard to see what's goingon – what you need to be able to do is change [...]

Read more

File Upload Utility

Hi folks this file upload utility is a simple program in C# & ASP.NET. With Typical use would be in an organization where sales people want to upload there sales/expense report in an excel sheet format or all the employee needs to summit there work summary etc ..Well I wrote this program because we want [...]

Read more

Getting To Know The Properties Window

Working in Visual Studio.Net IDE might seem abit tough for novices, who have just started programming, and areencountering such an awesome collection of tools and facilities. Itseems too much to handle at first, the screen loaded and sometimesoverloaded with all sorts of docking or pinned windows. But when we getto know what all these windows [...]

Read more

Windows spell checker using SpellCheck.net Parser

Introduction In last article I wrote a SpellCheck.net parser with .NET regularexpressions, which is free online spell checking site, and wrap it upin"Word.dll" file. For more explanation about this parser refer to mylast article ( SpellCheck.NET Parser with C# regular expression ) Inthis article I put SpellCheck.net parser to the test with Windows FormSpell Checker [...]

Read more

Developing Visual C# Applications Using VS.Net

Although, using Microsoft's products is not all that difficult, VS.Net is slightly different. The following pages demonstrate how to use VS.Net and create GUI, Visual C# applications. You are looking at the first screen, the Start Page of VS.Net.   To Create a New Project, Select File > New > Project Select Visual C# projects [...]

Read more

C# Marquee ScreenSaver

Download : Source , ScreenSaver A screensaver is a windows executable with some minor changes to be made the code. The screensaver is an executable with the extension .scr. It should be located in your windows \ system32 folder for the Windows O/S to recognize it in the screensaver property window. When the screensaver is [...]

Read more

Nemesis-7 rc1 Game in C#

Submitted by: Tony TrompUser level: IntermediateDate of submission: Source code: Deviate.zipPlatform used: Visual Studio .NET Architect edition Description:Nemesis-7 is a full-screen 2D shoot'em up that makes use of theDirectInput, DirectSound and DirectDraw interfaces from DirectX. Theplayer controls a spaceship which he uses to duel the computeropponent. I implemented some artificial intelligence to make the cpuplay [...]

Read more

Editable ListBox

Download : Source , Executable A ListBox is a read-only list of items. But let us suppose your application needs to edit an item in a listbox at runtime. This example will demonstrate a simple approach to create an editable listbox .ie. to change listbox items on the fly.. To edit an item in a [...]

Read more