|
Hi.
I am trying to do a Serial Port I/O on multiline text box on web, client side, in windows app we have:
private void textBox1_KeyPress(object sender, KeyPressEventArgs e)
{
if (!serialPort1.IsOpen) return; //don't send if the port is close
char[] buff = new char[1];
buff[0] = e.KeyChar;
serialPort1.Write(buff, 0, 1);
e.Handled = true;
}
private void serialPort1_DataReceived(object sender, System.IO.Ports.SerialDataReceivedEventArgs e)
{
RxString = serialPort1.ReadExisting();
Invoke(new EventHandler(DisplayText));
}
private void DisplayText(object sender, EventArgs e)
{
textBox1.AppendText(RxString);
length = textBox1.Lines.Length;
thescript();
}
And i tryied to write something like this for the web client but there is no the event and the invoke function.
how i can to do this?
thanks.
|
|
|
|
|
Hi i want to create one dynamic dropdown...,
Based on that dynamic dropdown want to create one more dynamic dropdown...,
How to do that plz help me..,
I need that immediately........,
I create one dynamice dropdown based on that i try to create one more dynamic dropdown..,
So i given autopostback property true...,
But when ever io select that its getting auto hide...,
Any one try to help me to solve this probs...,
Thanks & Regards,
NeW OnE,
please don't forget to vote on the post
|
|
|
|
|
I don't know abt wat is ur actual problem but...
try this
In page load ..
if(!ispoatback)
{
dynamic dropdown creation....
}
|
|
|
|
|
I think it has something to do with AutoeventWireUp property
♫ 99 little bugs in the code,
99 bugs in the code
We fix a bug, compile it again
101 little bugs in the code ♫
|
|
|
|
|
Hi..
I already posted this but i dont know how to edit this coz i am new to this.Help me for this problem that getting contacts from mail clients like Yahoo,Gmail,HotMail etc..
|
|
|
|
|
I don't think so. Check with them to know if they provide any API to access address book. I am sure, there won't be any free stuff.
|
|
|
|
|
Thanks for answering me..
Can you provide the Third Party Vendors who provide solution for my Problem....
|
|
|
|
|
Importing Contacts from Mail Clients in ASP.net
|
|
|
|
|
try to do google once.
♫ 99 little bugs in the code,
99 bugs in the code
We fix a bug, compile it again
101 little bugs in the code ♫
|
|
|
|
|
How we can convert mm/dd/yyyy datetime format into dd/mm/yyyy format without any string manipulation. because here datetime variable is used for billing purpose ?
|
|
|
|
|
you can specify the format in DateTime.ToString()
|
|
|
|
|
In my project i need to fetch the profit in between two dates.
is it possible, when i convert datetime into string..?
|
|
|
|
|
It will be tough then. Use DateTime only.
|
|
|
|
|
|
|
You are in wrong forum. This is ASP.NET forum and your question has nothing to do with ASP.NET.
|
|
|
|
|
wrong place!
♫ 99 little bugs in the code,
99 bugs in the code
We fix a bug, compile it again
101 little bugs in the code ♫
|
|
|
|
|
when i fetch morethan 50 mb size of file, my Internet Explorer redirect in to the default error page why this ?
|
|
|
|
|
Increase timeout limit in web.config. Search for uploading large files using ASP.NET
|
|
|
|
|
I try below code in web.config
< httpRuntime
executionTimeout="90"
maxRequestLength="4096"
useFullyQualifiedRedirectUrl="false"
minFreeThreads="8"
minLocalRequestFreeThreads="4"
appRequestQueueLimit="100"
enableVersionHeader="true"
/>
Still Error persist ..
|
|
|
|
|
How to impliment a fastest media player in webpage ?
|
|
|
|
|
What do you meant by fastest ?
|
|
|
|
|
faster than Silverchots media player control
|
|
|
|
|
Masood Kochi wrote: Silverchots
What is this ? I haven't heard about it. Do you mean SilverLight ? I have used flash player and it works really well.
|
|
|
|
|
yes, Silver Light ...
is any control more faster than Silver Light media Control
|
|
|
|