| Thread | Last Post | Replies |
|
| windows logo | 12 Dec 2005 11:03 GMT | 3 |
How do I actually get a 'designed for windows' logo for my software? There are heaps of long documentation, most of them being obscure and superficial.. :-( What shoudl I do?
|
| Removing duplicate .NET Installs | 12 Dec 2005 08:20 GMT | 7 |
Somehow I wound up with both version 1.1 and version 1.0.3705 of .Net Framework installed. Seems redundant to keep the older version, so can I simply use Add/Remove to deinstall that without disturbing the 1.1 install?
|
| What should StringDictionary::Add do with duplicates? | 12 Dec 2005 07:47 GMT | 2 |
It would be easy to write a short test program to call StringDictionary::Add() twice with the same key string. But this would reveal what the current version of StringDictionary happens to do today on one computer. It is not wise to rely on such undocumented behaviour. So I
|
| version numbers of various beta (1 & 2) .NET 2.0 | 12 Dec 2005 01:47 GMT | 1 |
In my installer I test for the availablity of .NET. It's a bit difficult to test for version 2.0.50727 and above, so I'm testing for v2 & above, and I will like to also test that no beta is there! for instance beta2 is 2.0.50215
|
| Differences between 1.1 and 2.0 | 11 Dec 2005 23:24 GMT | 4 |
where can i find the "what's new" list between 1.1 and 2.0 (Framework and C#) ?? Thanks in advance Stefano
|
| How to lock/synchronize a basic type | 11 Dec 2005 22:16 GMT | 6 |
I have several threads that write to the same int. Each thread increment the integer value. What is the simple way to synchronize the increment operation. The lock statement works only on Object so i can't use it. I tried also the following:
|
| Time Conversion to Seconds? | 11 Dec 2005 21:34 GMT | 2 |
Does anyone have a code snippet for converting the time portion of a DateTime to seconds since midnight? Thanks.
|
| Visual Basic .net 2003 Not For Resale. How to tell | 11 Dec 2005 16:52 GMT | 1 |
I have Visual basic .net 2003 and I want to know how to find out if the software I write using it is classified as "not for resale" or if I cannot sell it because of licensing or other such issues. If I write software using this development environment, will I be able to
|
| Satellite Assembly | 11 Dec 2005 15:38 GMT | 1 |
Can any one tell me what is a satellite assembly and where do we use this. Thanks in advance, BR
|
| dynamically loading objects from assemblies | 11 Dec 2005 15:17 GMT | 2 |
i need to dynamically load a type from an assembly. i looked at CreateInstanceFromAndUnwrap and it seems to do the work. is this function will perform good under load? like when the same assembly will be asked to be loaded manyn times, will the
|
| custom control | 11 Dec 2005 14:09 GMT | 1 |
hi all im new to dot net im making an attendencs software in asp dot net i needed an 3rd party control "A clock" to display time Please help me
|
| Using FileWebRequest | 11 Dec 2005 14:08 GMT | 1 |
I am trying to have my C# program request a file from a Windows XP LAN peer, but it keeps telling me that my logon is incorrect, either user name or password. This is the simple code: WebRequest request = new WebRequest( "\\\\main\\SharedDocs\\file.txt" );
|
| Clipboard Functionality | 11 Dec 2005 03:33 GMT | 1 |
I have a problem regarding use of a clipboard functionality in .NET. As per my knowledge we can set the data in the clipboard of our own format. But is there any way to clear the data after it has been set.
|
| How to avoid session sharing in ASP.NET applications | 10 Dec 2005 21:22 GMT | 5 |
Hello Friends, Can any of you please help with this issue? I have a ASP.NET application written in VB.NET and requires the user to log in. I authenticate user using LDAP, so if the user id is active in
|
| Generic class derived from NameObjectCollectionBase and generic constraints | 10 Dec 2005 11:12 GMT | 1 |
I have a questions about the correct usage of deriving from classes that are not generic and where to place the generic constraints: public class MRUItems<T> : NameObjectCollectionBase where T : IMRUItem {
|