Click here to Skip to main content
16,016,557 members

Comments by New_Yorker (Top 2 by date)

New_Yorker 27-May-16 7:31am View    
If you want to add decimal numbers rather than integers, you need to use parseFloat instead of parseInt:

var a=parseFloat(document.getElementById("txtFirstValue").value);
var b=parseFloat(document.getElementById("txtSecondValue").value);
...
New_Yorker 25-Apr-16 9:23am View    
You may use Position property of FileStream object both to read (and save) the last position you were at before connection was interrupted and to set the new position before resuming copying.