| Thread | Last Post | Replies |
|
| What framework is running in this scenario? | 17 Oct 2006 16:22 GMT | 4 |
I have a VB6 application that references a few .Net 1.1 components, and one 2.0 component. Does that mean that all will be running under 2.0? Is there any way to force the 1.1 pieces to run under 1.1, and the 2.0 to run under 2.0? I know about setting a config file to force a ...
|
| Reference in C# | 17 Oct 2006 14:04 GMT | 6 |
C Sharp how to add references so that they are accessible to all the files in that project. Everytime a create a new file, i have to copy all the 'Using' Statement to that new file. In VB.net we do it by going to the Project Properties and the referaces are declared
|
| VS 2005 New Project Types Missing | 17 Oct 2006 13:45 GMT | 3 |
I'm missing many New Project types in Visual Studio 2005. I'm looking specifically for: Other Project Types>Database, but all I have under Other Project Types is Visual Studio Solutions. Have I skipped something in the installation? I have Visual Studio version 8.0 with
|
| Why tampered Strong name assembly continue to work? | 17 Oct 2006 04:36 GMT | 8 |
I am always of the belief that once a strong name assembly is built, you cannot modify it without invoking the verification failure on loading. But the other day, a colleague of mine in the midst of getting something done with the managed Directx library, Microsoft.DirectX.dll ...
|
| Exception profiling? | 17 Oct 2006 00:56 GMT | 1 |
I need to be able to see what exceptions are being raised by an ASP.NET application. I can see from perfmon that our ASP.NET app is throwing hundreds, if not thousands, of exceptions per second but very little is being logged. So what I'd like to do is run a profiler and see ...
|
| Component in toolbox, appears and disappears... | 16 Oct 2006 20:48 GMT | 2 |
I have a windows forms project, under which i've built several component classes, e.g. extended controls like combobox, textbox and so forth... For me to be able to drag and drop them on a form, i always need to
|
| HTTP 403.9 - Access Forbidden: Too many users are connected | 16 Oct 2006 19:55 GMT | 5 |
I am using IIS 5.1 on XP Pro. I have a page with many links on it (say 'Main Page'). Clicking on any of the links in Main Page, leads to say 'Page1. My Scenario (modified to make it simple):
|
| Dotnet under Apple Safari browser | 16 Oct 2006 19:45 GMT | 3 |
I am having huge problems with a very simple dotnet framework web page (www.gbab.net/ztest3.aspx) , it does NOT render correctly under Apple's Safari. The DIV's do not align amd float as they should, and do in Dotnet. The page is really, really simple, and it has a CSS and with NO ...
|
| Toolbox tab and custom control | 16 Oct 2006 19:16 GMT | 1 |
I have developed a custom .NET control. Now, i would like to do the following thing : When user want to add this control to Toolbox, he has to select the *.dll file of my control.
|
| FileSystemWatcher issue | 16 Oct 2006 14:29 GMT | 1 |
I'm developing a Windows Service which uses the FSW object to monitor some UNC paths, now I know after reading this article http://tinyurl.com/ykw7aq that FSW is quite unreliable when monitoring UNC paths so in my service I've also implemented a Timer that stops and
|
| RemoveAt in foreach { ... } | 16 Oct 2006 14:09 GMT | 17 |
Is there any efficient way doing Dictionary<>.RemoveAt in foreach { ... } routine? For example, is this example safe or is there any recommended way? foreach(KeyValuePair<int,int> a in mymap)
|
| Scientific Notation when serializing doubles | 16 Oct 2006 07:18 GMT | 4 |
Hi. We put data on MSMQ queues using the Message ctor as follows: Message myMessage = new Message(myObject); As I understand it, this will use an XmlSerializer to serialize the body of the message when it is placed on the queue. We have noticed that if myObject
|
| Is ClickOnce Appropriate? | 16 Oct 2006 07:05 GMT | 4 |
I've got an application that I currently wrap in an msi. Everything's fine, except I'd like to be able to push updates to my users. The update mechanism of clickonce deployment looks excellent and would be very useful. My application's installer doesn't touch the GAC or registry, ...
|
| Difference of AppDomain.CurrentDomain.BaseDirectory and Environment.CurrentDirectory | 16 Oct 2006 02:10 GMT | 4 |
Hi, all What is the difference of the follows ? 1. AppDomain.CurrentDomain.BaseDirectory 2. Environment.CurrentDirectory
|
| Creating a dialog in managed c++ DLL | 15 Oct 2006 18:44 GMT | 1 |
I have a managed c++ DLL, and I want to add a dialog box to it. How do I do it ? I tried to design a dialog box in the resources, and use the MFC wizard to attach a class to it but I got some link errors:
|