C Sharp

HyperTerminal Program Source Code

by admin on March 15, 2011

HyperTerminal Program Source Code You landed here as you searched for HyperTerminal Source Code.  You may be experiencing Serial Port Hangs on Close Port. We will update this page as we get more information on this. HyperTerminal Source Code HyperTerminal Program Source Code HyperTerminal Code HyperTerminal Sample Source Code

{ 0 comments }


Serial Port Hangs On Close Port

by admin on October 19, 2010

There are many issues with  serial port programming especially as the programm hangs when you try to close port. Following links may help you to solve this problem.  Please post sample code and comment if you find a solution. http://social.msdn.microsoft.com/forums/en-US/Vsexpressvcs/thread/ce8ce1a3-64ed-4f26-b9ad-e2ff1d3be0a5/ http://blogs.msdn.com/b/bclteam/archive/2006/10/10/top-5-serialport-tips-_5b00_kim-hamilton_5d00_.aspx http://connect.microsoft.com/VisualStudio/feedback/details/202137/serialport-close-hangs-the-application#details http://zachsaw.blogspot.com/2010/07/net-serialport-woes.html http://www.daniweb.com/forums/thread289793.html http://www.c-sharpcorner.com/UploadFile/eclipsed4utoo/SerialPortCommunication12082008111137AM/SerialPortCommunication.aspx http://www.dreamincode.net/forums/topic/35775-serial-port-communication-in-c%23/ www.robbayer.com/files/serial-win.pdf

{ 1 comment }


Value Type and Reference Type

by admin on March 22, 2010

What is Value Type and Reference Type? Value types are variables that comyain the data directly instead of containing a reference to the data stored elsewhere in memory.  Instances of value types are stored in an area of memory called stack.

{ 0 comments }


C Sharp Ptactice Test Questions

by admin on March 9, 2010

You develop a Windows application by using the .NET Framework. The application makes use of an assembly named MyAssembly. The assembly file MyAssembly.dll is deployed in a folder named bin20 under the application’s root directory. The MyAssembly assembly is not strongly named. You must configure the Windows application to specify the location of the MyAssembly [...]

{ 0 comments }


Defining a Function in C Sharp

by admin on February 18, 2010

Defining a function in C Sharp:

{ 0 comments }


Arrays In C Sharp

by admin on February 16, 2010

Here we will examine how Arrays are defined in C Sharp and used.

{ 0 comments }


The if Statement in .net

by admin on February 4, 2010

If statment is very useful in decision making.  We will examine different ways of using if statment in VB and  C# (Visual basic and C Sharp). The simplest use of an if statement is as follows: if  (<condition>)       <code executed if <test> is true>: In this the code is executed when the test condition [...]

{ 0 comments }