| Thread | Last Post | Replies |
|
| Patterns in the Solution Design Process | 08 Oct 2007 22:58 GMT | 1 |
Where and how in the design process do you bring patterns (as formalized by the GoF) into play? In particular, after identifying specific feature requirements, do you... ONE: go hunting (quick as that effort may be) for a pattern that addresses
|
| dropdown control - HELP | 08 Oct 2007 22:42 GMT | 1 |
Hi & please ghelp. I'm very new to c#. I've a combo box that needs to list monthy newsletter in the format: <option value="year-month.html">year-month</option> from April 2007 to this month
|
| Connection Pooling | 08 Oct 2007 22:37 GMT | 15 |
I have a static function in a class, everytime I call this function, I am creating a SQLconnection, open it, use it, and null it, All my functions and application logic is like this, Every connection is creating self connection object and null it after the
|
| Opinions: Warn about online registration checks? | 08 Oct 2007 21:53 GMT | 11 |
I would like opinions on a shareware issue. If shareware uses an online database to hold registration codes, which get copied locally and therefore only needs to check online if the shareware is not yet registered or if the registration code was lost, should there be an
|
| Basic OO question | 08 Oct 2007 21:26 GMT | 5 |
I have a base class with several constructors and I want to create a derived class, as below class MyBase { public MyBase() {...}
|
| TCP Listen port with multiple connections | 08 Oct 2007 21:26 GMT | 19 |
I have this code for TCPListenPort. The code works fine, but my manager is asking me to establish multiple connections to the same port. How can i acheive that below is my code
|
| Accelerator Keys | 08 Oct 2007 21:15 GMT | 1 |
Hi-- On a Windows Form, I have assigned accelerator keys to the controls by setting my tab order, and using '&' in front of the relevant character in the label preceeding the control.
|
| Asp:DropDown - get selected item | 08 Oct 2007 20:38 GMT | 2 |
I have an .aspx with some controls that are created dynamically. The items are populated into the box by setting the DataSource-property to a list. In addition I specify the text and value with DataTextField and DataValueField; this works as expected.
|
| Array.Clear vs List<>.Clear | 08 Oct 2007 20:11 GMT | 43 |
This seems inconsistent and more than a little bizarre. Array.Clear sets all elements of the array to their default values (0, null, whatever), whereas List<>.Clear removes all items from the list. That part makes a reasonable amount of sense, as you can't actually take
|
| C# and returning relative application path | 08 Oct 2007 19:56 GMT | 2 |
The two lines here are returning exactly what I'm looking for; Problem is they only work in the .aspx page's "code behind" for that page. string path1 = Page.MapPath("~/");
|
| Class design for a many to one relationship | 08 Oct 2007 19:29 GMT | 6 |
I have a situation where I have a class Employee. Each Employee can have multiple Deductions - I have a deduction class. I have set the relationship up as a "has-a" relationship. My question is what is the proper way to setup a situation where each
|
| Port reading | 08 Oct 2007 18:02 GMT | 4 |
I need a help. My application reads data from COM port, this data is then parsed and displyed on: 1. two plotters 2. text box.
|
| envDTE value for VS.NET 2008 | 08 Oct 2007 17:55 GMT | 1 |
What is the value of envDTE in VS 2008 ? under VS2005, it was System.Type t = System.Type.GetTypeFromProgID("VisualStudio.DTE.8.0"); thanks a lot,
|
| C# and Excel | 08 Oct 2007 17:51 GMT | 3 |
I'm trying to append data to an existing Excel file (.xls). I've managed to find a way to write data to an Excel sheet but when I try to do the same to a file that already contains data it saves it as a new file without that data.
|
| To hard-code or not for filtering out inactive records | 08 Oct 2007 17:42 GMT | 3 |
At first, it's easy to say (have a policy) that we'll hard-code for statuscode='ACT' (or maybe instead statuscode <> 'INA') but I think that pigeonholes us and would cause limitations. Example: We want to develop an Employee search screen. Obviously, we don't
|