3
votes
How might I remove focus from all items in a ListView control?
I think, it is
listView1.FocusedItem.Focused=false;
Make sure that listView1.FocusedItem is not null.
(Thanks to brianpeiris for expandin …
0
votes
working with very large integers in c#
Try to use an array for this task. You could use as long integers as you have free memory space. Every member of array repsesents one decimal digit. The only you need is to implement multipication. …
0
votes
How to find available COM ports?
Framework v1.1 AFAIK doesn't allow you to do this.
In 2.0 there is a static function
SerialPort.GetPortNames()
…
