| Thread | Last Post | Replies |
|
| CustomAttributeBuilder without ctor | 22 Jan 2008 07:55 GMT | 4 |
I am attempting to dynmically create a class that looks like this: -------------------------------------- [Table(Name="ClientTable")] public class ClientTable{
|
| Configuring for wsHttpBinding in vs2005 dev environment | 22 Jan 2008 04:54 GMT | 1 |
I am trying to test a WCF web service in Visual Studio 2005 that has been configured to use wsHttpBinding and getting a security error. I am not sure how to do this. Is there any examples or docs on this?
|
| WebEvent | 22 Jan 2008 01:27 GMT | 1 |
What is the best way to creat a instant chatting program like msn? I mean, the part of detecting that a user has send a message to you. Thanks!
|
| DataBinding to a UserControl with several nested, Bindable UserControls | 22 Jan 2008 00:25 GMT | 2 |
I've created a couple of different UserControls to minimize duplicate control and provide a consistent look for my data entry application. A couple of examples are: SimpleAddress
|
| Setting a parameter's default value and validating datatype with attributes. | 21 Jan 2008 23:54 GMT | 2 |
I have written a parameter attribute class ("AttributeTargets.Parameter). One of several the constructor arguments is a parameter to specify a default value for the method's parameter.
|
| vote on proposed VS / C# feature | 21 Jan 2008 22:20 GMT | 2 |
A suggestion that C# ASP .NET projects in Visual Studio should give the developer the ability to see all the Page object's events in the code editor (via the drop down lists at the top) and create an appropriate event handler automatically (like is done in VB .NET) has been ...
|
| Regex Q (Another one) | 21 Jan 2008 22:15 GMT | 11 |
Could anyone tell me why the following do not match? ^ABC_\d{6}_\d{6}$ Should match(twice): ABC_123456_789123
|
| Application Focus | 21 Jan 2008 21:44 GMT | 5 |
Is there a quick way to see if my application has focus? I've tried "this.Focused" but it doesn't return true if one of its childen controls is what has focus (IE I just clicked a button to check "this.Focused"). If I run the "this.myBtn.Focused" as the
|
| convert struct to byte[] | 21 Jan 2008 21:34 GMT | 4 |
I have a large structure, below is a simplistic version of my structure: public struct MeanMinMaxSd { public double mean;
|
| Help creating a custom collection | 21 Jan 2008 21:25 GMT | 2 |
I want to create a collection that will be accessed like the following, that returns a Boolean value; MyClass[userID].Attributes[SomeEnum.Value1]; Can someone help me with how I should design this cusotm collection?
|
| SqlCommand and Print statements | 21 Jan 2008 20:27 GMT | 2 |
I have a block of SQL that has print statements in it. When I execute it with Query Analyzer the output from the print commands goes to the messages pane. Is there any way to get those messages when I execute the same SQL through a SQLCommand in C#?
|
| Calling virtual functions ancestor class in C# | 21 Jan 2008 19:17 GMT | 2 |
How to call a virtual function ancestor class in C#? http://www.alvas.net - Audio tools for C# and VB.Net developers
|
| event ID 0 | 21 Jan 2008 18:03 GMT | 1 |
how can I fix this problem? Event Type: Error Event Source: VCSExpress Event Category: None
|
| block allocation of classes | 21 Jan 2008 17:58 GMT | 1 |
I've got a search algorithm where I would like to allocate my nodes in blocks. In other words, I would like to reserve enough memory for 200k nodes and then just keep my own pointer into that block. I don't want to do 200k small memory allocation calls. It seemed that this made
|
| Threading question! | 21 Jan 2008 17:26 GMT | 7 |
How can I have a thread notify the main thread that it has ended? The thread object seems to have only one event, ThreadStart. Thanks! Atmapuri
|