| Thread | Last Post | Replies |
|
| return and finally | 23 Sep 2005 14:40 GMT | 5 |
I I have in a code like this : public void A() { try
|
| client-side maximum string length enforcement | 23 Sep 2005 14:20 GMT | 4 |
When I was working with ASP/ADO, I would get the maximum string length by querying the system tables inside the mssql database. It wasn't the wisest thing to do, but it did let me determine the max string length for each of my textboxes, which kept me from writing updates that
|
| Speedlimit with .NET sockets | 23 Sep 2005 13:36 GMT | 2 |
Does anyone knows if and how it is possible to limit the speed of a connection to some kBytes / s?
|
| Cannot Open Service | 23 Sep 2005 13:10 GMT | 1 |
My vb.net app is attempting to start a windows service and the message "Access is Denied" is triggered. Can someone please tell me a few things that I can look at to resolve this problem? I've looked at a few things already but am having no luck.
|
| EventLogPermissionAttribute PermissionAccess property setting acce | 23 Sep 2005 11:58 GMT | 2 |
The PermissionaAccess property is set using the EventLogPermissionAccess enumeration value Audit, Browse, Instrument, and None. The problem I have is the controlling powers want to only allow write access. The have a problem with users having read access to the application's ...
|
| Decimal.Parse(string, NumberStyles.AllowCurrencySymbol) fails | 23 Sep 2005 10:58 GMT | 1 |
Decimal.Parse(money_str, NumberStyles.AllowCurrencySymbol) fails when money_str = "$22,000.00" (or any currency type string expression created with: money_str = String.Format( "{0:C}", my_Decimal_variable ); A Format Exception is thrown and states that the argument was in an ...
|
| HowTo have list of keys for RegistryPermissionAttribute | 23 Sep 2005 09:33 GMT | 1 |
I am trying to define permission attributes for several keys in the Registry at the assembly level. The documentation for the Read, Write, and Create properties states that these property values are "A list of Keys and Values with paths for [read | write | create] access". The ...
|
| Difference between Framework 1.1 and 2.0 | 23 Sep 2005 06:23 GMT | 3 |
I was trying to find an article or site showing the differnces between 1.1 and 2.0. Could not find one. Do you guys know of any?? The reasons are one for personal knowledge and the other to see if there are
|
| log4net performance | 23 Sep 2005 04:55 GMT | 2 |
Rolling my application from UAT to production. Want to know how much of a performance overhead would it be for the log4net's logging statement (log.info, log.debug) for an ASP.NET app running on IIS6/Windows server 2003?
|
| ArrayList vs CollectionBase | 23 Sep 2005 03:44 GMT | 5 |
Can anyone help me in deciding between ArrayList and CollectionBase. I know that CollectionBase is an Abstarct Class unlike AarryList . Are the any benifits/Advantages using CollectionBase rather than Arraylist?
|
| How to install ASPNET 1.1 in Windows XP IIS | 23 Sep 2005 03:26 GMT | 1 |
Hi all... i have installed ASP NET 1.1 framework in my Windows XP PC that has IIS installed. when I try to create an application using Visual Studio 2003, it says that
|
| Can you please explain File Time Stamps to me? | 23 Sep 2005 01:25 GMT | 1 |
I'm getting all confused with the various types of filetimes; local and UTC if I understand that much correctly. FileInfo FI = new FileInfo(FileSpec); According to my understanding, I would expect
|
| Performance on .NET versus VC++ Version 6 | 23 Sep 2005 00:59 GMT | 13 |
Is there a performance difference if I build an application using one of the .NET languages versus building it using VC++ version 6? Is there a performance hit because we need to load the CLR? Another question are all the WIN32 Api's available under .NET?
|
| When to use P/Invoke vs. Interop | 22 Sep 2005 20:38 GMT | 3 |
I was trying to learn more about when to use P/Invoke vs. Interop. The book I am reading says use P/Invoke when I am calling unmanaged Windows API function. Is P/Invoke only used with unmanaged API functions, or could I use Interop instead? To my understanding I could use Interop
|
| caching in WinForm and ASP.NET | 22 Sep 2005 19:35 GMT | 2 |
I need to adding caching capability to our application and we "get" data from our business layer code ; so initially I wanted to use something in .Net framework that provided caching and found that the "caching" mechanism was implemented in System.Web ; initially I didn't want to ...
|