| Thread | Last Post | Replies |
|
| Can you sell .NET technology? Know of any sales Leads? | 19 Mar 2006 08:11 GMT | 1 |
Canadian-based IT consulting firm, specializing in implementing Microsoft .NET technologies, seeks individuals for commission referral-based leads. We are looking for individuals that may have access to people who are
|
| Null | 19 Mar 2006 07:40 GMT | 1 |
hiya i'm using this piece of code RegistryKey key = Registry.CurrentUser.OpenSubKey(@"Software\Retrospect", true); if(key != null)
|
| Connection pooling problem | 19 Mar 2006 01:16 GMT | 2 |
Hi; I got an application written in ASP.NET (VB.NET and C#) that uses connection pooling. The Max connections defined in the connection command are 50, and there
|
| Multithreading, DataTables, and Garbage Collection | 18 Mar 2006 21:05 GMT | 2 |
I've got a console application that grabs data into 3 datatables asynchronously, and writes each datatable's data to a textfile. The problem is that the data returned by each sproc could easily hit up to 100,000 records each. Since the datatable doesn't implement IDisposable, ...
|
| cannot implicitly convert type string to bool | 18 Mar 2006 17:56 GMT | 6 |
What's wrong with this? if (bool)(UserIDs[i] == ThisUserId) { return true;
|
| how to set proxy programmatically | 18 Mar 2006 09:47 GMT | 1 |
I am trying to write a program that sets proxy and dns settings permanently. How i can do that ? Thanks in advance
|
| Why can't my delegate be public? | 18 Mar 2006 08:25 GMT | 3 |
Title says it all. Here's code to show what I'm trying to say: public class ClassA { public delegate void MyDelegate( );
|
| XML Schmell !!! | 18 Mar 2006 07:44 GMT | 1 |
I have an app that write out form deatils to an xml file (e.g. its caption, size ect). Heres the xml output;- --------------------------------------------------------- <?xml version="1.0" encoding="utf-8"?>
|
| Polymorphism & Collections | 18 Mar 2006 07:25 GMT | 14 |
I'm relatively new to C# and polymorphism, so what I'm trying to accomplish may not be possible, or there may be a totally different approach that I should be taking. I have a base class (MyBase) and a collection of MyBase objects
|
| How properly return XML from an ASPX page? | 18 Mar 2006 07:14 GMT | 6 |
I have an ASPX page that returns XML to the calling client. While the code below works, I don't think it's proper because it's not encoded as XML. I.e. special characters might screw things up. Can anyone please tell me the more proper way to do this?
|
| RangeValidaor throwing exception | 18 Mar 2006 04:48 GMT | 2 |
Hi Group, In my application I am using "Range Validator", validator is set for a textbox with range 1900 - 9999. and I am also using "Validation Summary" problem is when I run the
|
| Adding Files to EXE | 18 Mar 2006 03:51 GMT | 1 |
I have a small exe app ( basic a dialog box) that when lauched needs to "copy" some files in a directory chosen by the user (within the dialog). I cannot use an installation package because there are some particular tasks to be done from the exe.
|
| Scope and values of Object | 18 Mar 2006 01:06 GMT | 1 |
I'm trying to set a level of abstraction in an ASP.NET app. I've created an object with properties and methods that I instansiate just after the class declaration. As I'm debugging this code I find that on postback the object is re-instanciated, wiping all the property values. A ...
|
| Parsing e pyparsing | 18 Mar 2006 00:06 GMT | 2 |
I read something about pyparsing, lex and yacc. What are they? Is there some example for C#? I'm interested in data parsing but don't know how to approach this issue. Thx
|
| How to tell when a form is minimizing or closing! | 17 Mar 2006 23:49 GMT | 4 |
How can i tell when a form is minimizing or closing by use of the button in the top right of the form? thanks in advance
|