Click here to Skip to main content
16,007,687 members
Home / Discussions / ASP.NET
   

ASP.NET

 
AnswerRe: Advice on filling a textbox Pin
N a v a n e e t h4-Jun-08 4:35
N a v a n e e t h4-Jun-08 4:35 
GeneralRe: Advice on filling a textbox Pin
eyeseetee4-Jun-08 4:43
eyeseetee4-Jun-08 4:43 
AnswerRe: Advice on filling a textbox Pin
Member 33013254-Jun-08 4:51
Member 33013254-Jun-08 4:51 
Questionflash in asp.net Pin
cse.vidhya4-Jun-08 3:56
cse.vidhya4-Jun-08 3:56 
AnswerRe: flash in asp.net Pin
Christian Graus4-Jun-08 4:04
protectorChristian Graus4-Jun-08 4:04 
QuestionSerialPort in Web TextBox Pin
caradri4-Jun-08 3:51
caradri4-Jun-08 3:51 
QuestionRe: SerialPort in Web TextBox Pin
ToddHileHoffer4-Jun-08 9:02
ToddHileHoffer4-Jun-08 9:02 
AnswerRe: SerialPort in Web TextBox Pin
caradri4-Jun-08 18:37
caradri4-Jun-08 18:37 
Hi, thanks.
its in the client.
in windows app i have this:

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();
}

but in web I cant cath the keypress effiently, and the invoke function is not in web.
may be you know?
Questionhow many? Pin
EvilInside4-Jun-08 1:17
EvilInside4-Jun-08 1:17 
AnswerRe: how many? Pin
eyeseetee4-Jun-08 1:18
eyeseetee4-Jun-08 1:18 
JokeRe: how many? Pin
Guffa4-Jun-08 10:12
Guffa4-Jun-08 10:12 
AnswerRe: how many? Pin
manikanta.mnl4-Jun-08 1:45
manikanta.mnl4-Jun-08 1:45 
GeneralRe: how many? Pin
EvilInside4-Jun-08 19:15
EvilInside4-Jun-08 19:15 
QuestionError in web control Pin
Krazy Programmer4-Jun-08 1:09
Krazy Programmer4-Jun-08 1:09 
AnswerRe: Error in web control Pin
Christian Graus4-Jun-08 4:06
protectorChristian Graus4-Jun-08 4:06 
Questionhow to get response in xml file Pin
harunbagwan4-Jun-08 0:44
harunbagwan4-Jun-08 0:44 
AnswerRe: how to get response in xml file Pin
Artem Kustikov4-Jun-08 3:45
Artem Kustikov4-Jun-08 3:45 
Questionneed help regarding VoIP... Pin
manikanta.mnl4-Jun-08 0:40
manikanta.mnl4-Jun-08 0:40 
AnswerRe: need help regarding VoIP... Pin
eyeseetee4-Jun-08 0:47
eyeseetee4-Jun-08 0:47 
GeneralRe: need help regarding VoIP... Pin
manikanta.mnl4-Jun-08 1:25
manikanta.mnl4-Jun-08 1:25 
GeneralRe: need help regarding VoIP... Pin
eyeseetee4-Jun-08 2:17
eyeseetee4-Jun-08 2:17 
GeneralRe: need help regarding VoIP... Pin
manikanta.mnl4-Jun-08 3:25
manikanta.mnl4-Jun-08 3:25 
JokeRe: need help regarding VoIP... Pin
EvilInside4-Jun-08 19:27
EvilInside4-Jun-08 19:27 
GeneralRe: need help regarding VoIP... Pin
eyeseetee4-Jun-08 21:34
eyeseetee4-Jun-08 21:34 
Questionhow to get the data in a grid view cell one space from the left Pin
lakshmichawala4-Jun-08 0:22
lakshmichawala4-Jun-08 0:22 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.