| Thread | Last Post | Replies |
|
| Where is my app.config file?? | 08 May 2004 08:32 GMT | 2 |
I have a winforms app that I compiled and put on my client via .NET setup. I have a webservice on this app. The External address for this webservice was in the app.config file. Well I just did I search on the client and I can't find ANY app.config file.
|
| How to detect filename is invalid. | 08 May 2004 01:02 GMT | 3 |
Could you tell me how to get InvalidFilenameCharacter in C# like Path.InvalidPathChars. Thanks.
|
| precompiled regular expressions | 08 May 2004 00:18 GMT | 1 |
I saw this in an article in Microsoft's site, "An alternative is to use precompiled regular expressions. You can compile all of your expressions into a reusable DLL. This avoids the need to compile at runtime while still benefiting from the speed of compiled regular expressions."
|
| Security Issue with .Net framework 1.1 | 07 May 2004 23:22 GMT | 1 |
I have a web application built around .NET framework 1.0. We upgarded the framework from 1.0 to 1.1 recently. With it, we are facing some strange behaviour. If I try and access the application the first time from any client, it fails at a point where it tries to load a file ...
|
| SQL Server Databases in VS | 07 May 2004 22:36 GMT | 2 |
I'm running SQL Server 2000. When I originally set up the localhost, I set it for Windows Authentication. For the purpose of going through an ASP.NET project in a book, I changed the properties to SQL Authentication (using Enterprise Manager). However, when I visually connect to ...
|
| DEPLOYMENT PROBLEM..Urgent | 07 May 2004 21:24 GMT | 2 |
I created a web application using VS.NET and created a deployment file using the tutorial available on msdn http://msdn.microsoft.com/library/default.asp?url=/library/en-us/vsintro7/html/v btskdeployingwebsolution.asp and ran the setup file on a machine that has VS.NET IDE - it ran ...
|
| Default Property | 07 May 2004 21:21 GMT | 4 |
there was much talk about the fact that .NET doesn't support default properties for objects, meaning that if in VB6 i could have Textbox1 = "hello", in .NET i can do it only by refering explicitly to the property Textbox1.Text = "hello".
|
| Use MDB file on machine where MS Office is not installed | 07 May 2004 19:51 GMT | 5 |
I wish to use MDB file on my machine, my machine doesn't have MS Office installed I have installed .NET Redistrubutable 1.1 on machine Can i use the MDB file and perform DML operations with MS Access database Waiting For Your Reply
|
| Would IsSubclassOf() work here? | 07 May 2004 19:48 GMT | 2 |
Given classA {} Type typeA = typeof(ClassA); 1) isn't
|
| IDisposable.Dispose, Object.Finalize and threads | 07 May 2004 18:42 GMT | 16 |
IDisposable.Dispose is documented as the method where you have to release unmanaged resources. Dispose is called by Finalize. Finalize is called by garbage collector after the object becomes
|
| .NET Compatibility | 07 May 2004 18:38 GMT | 6 |
1) Does .NET framework ship standard on certain versions of Windows? 2) The reason for the question is that I wrote an internet explorer browser helper object in C# using Visual Studio 2003. Since I used .NET, which versions of Window can I run it on? 3) Do my users have to install ...
|
| Threading and callback problem | 07 May 2004 18:34 GMT | 3 |
I'm trying to do this : 1) Start a new thread called "FillingThread" from my main thread 2) when my FillingThread is finnished, I wan't the main thread to be notified.
|
| Determine Assembly's .NET Framework Version | 07 May 2004 18:18 GMT | 11 |
If I have a .NET assembly, how do I determine what version of the .NET framework it.... 1) was compiled against 2) is supposed to use
|
| Dataset and XSD schema | 07 May 2004 18:17 GMT | 1 |
I have a dataset that i read schema from the XSD file in to. After, i populate it with some values from the flat file. Fileds lend in to the right columns in the table however when i tell Dataset to write XML it come out in the different order as it is in the schema. Is this ...
|
| How to add events to dynamic contextmenu ? | 07 May 2004 17:31 GMT | 3 |
Hi I am looking for some help in adding events to dynamic contextmenu.I want to rise the click event for each of the menu ite that I am creating. Below is my code for adding dynamic context menu
|