Forum: C# Jul 28th, 2009 |
| Replies: 1 Views: 216 HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Uninstall |
Forum: C# Jun 26th, 2009 |
| Replies: 4 Views: 688 I am not sure about that, but unsafe could do the trick... |
Forum: C# Jun 23rd, 2009 |
| Replies: 3 Views: 364 plus don't forget to check up network settings - firewalls and antivirus can do funny things |
Forum: C# Jun 8th, 2009 |
| Replies: 1 Views: 713 It depends on how big is the data you are dealing with. For example few lines can be inserted handy written script.
Few hundred lines can be inserted from script-generated sql script like:
... |
Forum: C# May 28th, 2009 |
| Replies: 6 Views: 652 visit www.sysinternals.com and find filemon utility - you can monitor any filesystem activity and find what is wrong. You can download handle.exe utility (commandline) to find snapshot of opened... |
Forum: C# May 5th, 2009 |
| Replies: 8 Views: 2,059 Give up adapters, execute query and refill listbox on your own - or you are so lazy you can not write few lines of code? |
Forum: C# Apr 30th, 2009 |
| Replies: 2 Views: 423 You can not. Data reader works with current row only. You can, however, buffer read data, or use data table. |
Forum: C# Apr 2nd, 2009 |
| Replies: 14 Views: 2,000 Wireless or not, you have to use TCP or UDP so you first connect computers to network and then send data. |
Forum: C# Jan 12th, 2009 |
| Replies: 10 Views: 1,791 using System.Xml;
...
XmlDocument xd = new XmlDocument();
xd.Load ("myconfig.xml");
... |
Forum: C# Sep 17th, 2008 |
| Replies: 2 Views: 628 Hi,
I am a C/C++ folk and need to pick up C# basic knowledge for a project which will start by 3 weeks.
Could you reccommend me a (free if possible) reading stuff???
Thank you for any advice! |
Forum: C# Sep 4th, 2008 |
| Replies: 1 Views: 458 Hi,
I need help with this - I have a file copy program which uses filestream object
and works fine. I'd like to turn off file caching because it slows down whole
process.
Thanks for any... |