| Thread | Last Post | Replies |
|
| XML Comments and back ticks | 30 Apr 2008 22:27 GMT | 2 |
I am curious. When looking at the XML comments provided by .NET 2.0. What is the difference between a single and double back tick? MS documentation http://msdn2.microsoft.com/en-us/library/fsbx0t7x(VS.80).aspx states;
|
| Ports used by Configuration tool | 30 Apr 2008 21:04 GMT | - |
Anyone know what ports/port range the enterprise library configuration tool uses? I've looked through as much documentation as I can get my hands on, but have come up empty.
|
| WebService and timeout | 30 Apr 2008 15:44 GMT | - |
I'm dealing with scenario when call to any web method ends up with timeout and I try to add the user a chance to retry (wait a little bit) My service proxy code looks like this: AsyncCallback cb = new AsyncCallback(ServiceCallback);
|
| Hyperlinks | 30 Apr 2008 14:18 GMT | 1 |
I've cut and pasted names from a website into Excel, but when I click in the cell it connects to that hyperlink. How can I prevent this and have it be just normal text? Thanks to anyone who can help me!
|
| Finding files - Directory.GetFiles not sufficient | 30 Apr 2008 12:23 GMT | 5 |
I need a fast way to enumerate files in a directory hierarchy. I have tried the Directory.GetFiles routine with search option set to AllDirectories, because it seemed to be useful for this task, but it has some limitations:
|
| Can't install .NET Framework 3.5 (error 1603) | 30 Apr 2008 07:41 GMT | 10 |
The .NET Framework 3.5 installation fails for me. Right after the "Downloading components" stage, it sits for a few seconds on "Setup has finished downloading components, you can now disconnect from the Internet" and then it starts to roll back. I'm using XP SP2. A glance
|
| System.Diagnostics.StackTrace | 30 Apr 2008 03:04 GMT | 4 |
How do i get the line number of the calling method in debug-mode. This is what i do: StackTrace st = new StackTrace(); string s = string.Format("Method:{0}, line:{1}",
|
| IsDnsEnabled | 29 Apr 2008 16:38 GMT | 4 |
We just moved to .NET 2.0, and in trying out System.Net.NetworkInformation and friends, I find that it always says IsDnsEnabled=false, even when that connection clearly is using DNS to resolve names, I can fetch back DNS server addresses, etc. Anyone else
|
| Funky Build Shows No Errors When Compiling | 29 Apr 2008 15:21 GMT | 1 |
Something got funky with my build. I had been happily developing my web site when all of a sudden F6 (or rebuild solution) decided it was not going to compile my .aspx.cs nor ascx.cs code and thus I do not get error messages until I try to open
|
| Dot net 3.5 compatibility issues with 2.0 | 29 Apr 2008 07:31 GMT | 2 |
Can someone help? We have visual studio 2008, and our coding team have been coding new features on our older infrastructure. Currently it runs dotnet framework 2.0 and we are having issues when
|
| Can dotnet Framework 3.5 used in VS2005? | 29 Apr 2008 07:17 GMT | 7 |
Hi, can I upgrade the dotnet framework from 2.0 to 3.5, and use it in my VS2005 projects development? Thanks
|
| MS Silverlight Strategy | 28 Apr 2008 23:54 GMT | 2 |
Just wondering if folks agree with MS's strategy of berating at every chance to install the beta of Silverlight. Is the purpose to test the installation process? Really, if there was CONTENT for silverlight, then folks would just choose
|
| How to write a .NET attribute which does just like ObsoleteAttribute... | 28 Apr 2008 15:57 GMT | 4 |
In .NET there is attribute named ObsoleteAttribute which is derived from System.Attribute Class. This attribute when applied to a target (class or method etc.) gives a compiler warning/error. I know we can write our own attributes by inheriting the System.Attribute but I want to ...
|
| Silly delegate question | 28 Apr 2008 15:07 GMT | 4 |
How many superdelegates does it take to screw in a lightbulb? No... I was wondering if an instance of delegate stateful or can it be reused? For example you see a lot of (new AsyncCallback (method), param) it i/o
|
| determing file size of Bitmap object without saving it... | 28 Apr 2008 12:20 GMT | 2 |
how could I find file size of an bitmap object downloaded from an web site without saving it to the disk (and using system.io.FileInfo)? is there any way to create some kind of an byte array and read it's size?
|