TECHNOLOGIES
FORUMS
JOBS
BOOKS
EVENTS
INTERVIEWS
Live
MORE
LEARN
Training
CAREER
MEMBERS
VIDEOS
NEWS
BLOGS
Sign Up
Login
No unread comment.
View All Comments
No unread message.
View All Messages
No unread notification.
View All Notifications
Answers
Post
An Article
A Blog
A News
A Video
An EBook
An Interview Question
Ask Question
Forums
Monthly Leaders
Forum guidelines
Arjun Dhilod
958
812
106.1k
command prompt do not opens up when calling (.exe) console application
Dec 18 2012 5:50 AM
command prompt do not opens up when calling (.exe) console application
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.IO.Ports;
using System.IO;
using System.Runtime.InteropServices;
namespace PortDataReceived
{
class Program
{
static void Main(string[] args)
{
SerialPort mySerialPort = new SerialPort("COM1");
if (mySerialPort.IsOpen == true) mySerialPort.Close();
mySerialPort.BaudRate = 2400;
mySerialPort.Parity = Parity.None;
mySerialPort.StopBits = StopBits.One;
mySerialPort.DataBits = 8;
mySerialPort.Handshake = Handshake.None;
mySerialPort.Open();
// Console.WriteLine("Press any key to continue...");
Console.ReadLine();
mySerialPort.ReadTimeout = 100;
string indata = mySerialPort.ReadExisting();
Console.WriteLine(indata);
if (string.IsNullOrEmpty(indata))
{
StringBuilder builder = new StringBuilder();
StreamWriter sw = new StreamWriter(@"c:\arjun.txt", true);
sw.WriteLine(indata);
sw.Close();
}
else
{
StringBuilder builder = new StringBuilder();
for (int i = 0; i < indata.Length-8; i += 8)
{
string section = indata.Substring(i, 8);
//int ascii = 0;
string ascii = "";
try
{
//ascii = Convert.ToInt32(section, 2);
ascii = section;
StreamWriter sw = new StreamWriter(@"c:\arjun.txt", true);
foreach (char c in section)
{
if (Char.IsLetterOrDigit(c))
{
builder.Append(c);
}
}
sw.WriteLine(builder.ToString());
sw.Close();
break;
}
catch(Exception e)
{
throw e;
}
// builder.Append((char)ascii);
}
// Console.WriteLine(builder.ToString());
// Console.WriteLine(indata);
//Console.WriteLine("Data Received:");
//Console.Write(indata);
// Console.ReadKey();
mySerialPort.Close();
}
}
}
}
Reply
Answers (
10
)
path problem in setup file in winform application
custom paper size