Click here to Skip to main content
15,912,756 members

Comments by S.Soundar (Top 23 by date)

S.Soundar 21-Sep-16 23:58pm View    
Sir I have tried ur fiddle but in that also date is updating only in the first rows textbox. I changed $(document) into $('body').It still not working for the second, third... text boxes sir. @David_Wimbley.
S.Soundar 26-Jul-16 5:12am View    
Yes bling.
S.Soundar 21-Jul-16 1:45am View    
I checked that sir. But interrupt is working fine. If I take out the Delay_ms(100) function its working fine. But if I am using delay program hangs on printf().

Here is my delay function code:

void Delay_us(unsigned int us_count)
{
while(us_count!=0)
{
us_count--;

}
}

void Delay_ms(unsigned int ms_count)
{
while(ms_count!=0)
{
Delay_us(550); //delay_us is called to generate 1ms delay
ms_count--;
Count=ms_count;
}

}
S.Soundar 11-May-16 5:00am View    
For label22 i am getting value from another form and going to store into the database Richard.
For that Int.parse and float.parse I am going to receive data from the external device through serial port and displaying it to the textbox or in the label. I am going to filter the necessary data by using and start and end character. So i think the datatype will be string and need to change it to int and float format, so that i can generate charts easily i think. If there is any other better way to do this please guide me Sir.
S.Soundar 10-May-16 6:42am View    
If it is wrong help me correct it, don't comment like this. I am not an expert like you.