Click here to Skip to main content
16,019,843 members

Comments by Alex M.H. (Top 12 by date)

Alex M.H. 17-Jul-16 11:05am View    
What exactly did you do with iframe? Can you give us a few lines of code?
Most IP cameras are able to stream the video (access through a special port / web interface of the cam). So what you have to do is to manage the stream, i.e. get a snapshot every second, save video sequences and so on. I think you need some code behind, if you want more than just display the live picture.

http://www.codeproject.com/Articles/15537/Camera-Vision-video-surveillance-on-C

(Camera Vision - video surveillance on C# by Andrew Kirillov, found right here on code project)

was very helpfull to me ...
... hope it will help you too.
Alex M.H. 17-Jun-16 3:55am View    
the barcode scanners I used since are some kind of 'programable', that means you can configure the codes they accept and send extra items ('Ascii-codes') before and after the data that the scanner has read. I've never seen a barcode scanner without some kind of 'keyboard-mode'.
I.e. set the scanner to accept only 2of5, send 'abc'<2of5code>'xyz'.
so the only thing your app has to do is to whatch out for 'abc' to jump to the right inputbox. setting 'xyz' to "tab" or "enter" triggers the validating process of your inout box.

coding (logic, rules, etc) is upon you !!!
Alex M.H. 17-Jun-16 3:40am View    
I don't think that theres a problem with the SQL-statement. I guess it's in parsing the delivered dataitems or in the mapping of the the table's structure. Which language do you use? What is 'GetImportRateTableDetails' ?
Alex M.H. 8-Jun-16 18:58pm View    
do I get you right if I state this is the result you want?
series SLPNAME U_AltProfile U_INRPRICE LINETOTAL TOTALLINETOTAL
223 Janet 0 NULL 2132.500000 2350317.5
223 Janet 0 NULL 4650.000000 2350317.5
223 Janet 0 NULL 2343535 2350317.5

I'm missing some "group by" in your SQL. Is SLPNAME your primary key?
Why do you select more 'columns' as you need in your resulting table?
Alex M.H. 10-Feb-16 18:41pm View    
mmhpf. your code is missing a lot of information
- there is some kind of counter (i) but no loop
- if you want to "load" your data from the table into the grid, you better use databinding, but I'm not clear about the if condition in your code ...
- you do add a new row, but don't write any data to that new datagrid row ...
so we do need more input to help