| Thread | Last Post | Replies |
|
| using And Try Catch in harmony | 07 Mar 2008 19:58 GMT | 6 |
Whats the best way of handing exception of using? Is it method 1 or method 2 or some other way ########## Method 1 ########### using(something)
|
| app.config is breaking my windows service? | 07 Mar 2008 19:21 GMT | 4 |
I have written a very simple windows service in .NET 2.0 C#. The following is its OnStart() method: protected override void OnStart(string[] args) {
|
| Add blank line to LINQ | 07 Mar 2008 19:15 GMT | 2 |
var editionList = from edition in software.Editions select new {
|
| Reading e-mail from Exchange | 07 Mar 2008 18:41 GMT | 1 |
I have an inhouse ASP.net helpdesk application; it tracks helpdesk tickets. I would like the application to be able to read ticket responses sent by users to a specific e-mail address and insert the information contained in the e-mail in a ticket. Like many issue tracking ...
|
| Placing a control above another control;. | 07 Mar 2008 18:13 GMT | 3 |
I am new to C# and I am facing a problem. I have two user controls.First control has an image which is loaded. And the second control is supposed to be placed on the first control. But when the first control is invalidated the second control gets hidden behind the
|
| Retaining dynamically added labels even when application is restarted. | 07 Mar 2008 17:47 GMT | 2 |
I am facing a problem. I have a application in C# (winforms) where I am giving an option to the user to add labels during runtime. But when the application is restarted the labels that are added during runtime get deleted. As the user is adding a label I do not
|
| Evaluate LINQ immediately | 07 Mar 2008 17:04 GMT | 7 |
from line in order.Lines select new { Number = line.Number, Qty = line.Quantity } at this point I deactivate my object cache, which is where line.Number and line.Quantity are read from, so any subsequent attempts to read those
|
| About iterator and yield | 07 Mar 2008 16:44 GMT | 1 |
In C# 2.0 has iterator been added and this posting is about that. Here is a method that has implemented GetEnumerator without using iterator IEnumerator<T> IEnumerator.GetEnumerator() {
|
| Do you want the science article you may follow the following the link. | 07 Mar 2008 16:42 GMT | 1 |
Do you want the science article you may follow the following the link. Do you want something about science?if yes you may follow the following
|
| I feel stupid making a business object | 07 Mar 2008 16:18 GMT | 10 |
Do any of you ever feel stupid for creating a business object? I have this business object that is pretty much just a wrapper around whatever the database returns. The properties just have backing fields of the same type.
|
| How do i get my datagridview to sort? | 07 Mar 2008 15:59 GMT | 5 |
Nothing happens when I click on the datagridview column header. I expect it to sort. What am i missing please? the datagridview's datasource is linked to the datagridviews columns to show
|
| Code generation tool for DAL objects | 07 Mar 2008 15:56 GMT | 4 |
I'm looking for a tool that will generate DAL objects, hopefully even stored procs, by examining a SQL Server Express DB. Can anyone recommend something? Regards,
|
| Delete Record using Linq | 07 Mar 2008 15:45 GMT | 3 |
I have 3 tables, Tags, ArticlesTags and FilesTags, with the following columns: Tags > TagID, Text ArticlesTags > TagID, ArticleID
|
| Simple Hash algorithm to detect duplicate content | 07 Mar 2008 15:43 GMT | 24 |
I need a simple hash algorithm that will detect duplicate content in my application. I want to hash not just the content, but a few other parameters also like EmployeeID and DepartmentID.
|
| Error message from error provider when I don't select an item | 07 Mar 2008 14:14 GMT | 3 |
I am creating a class to databing to a form. My difficulty is with combobox. I have a field that is related to the customer table, where the customer ID is an integer and I show its name in the combobox. In the class I have a property of the type int to catch the ID. Everything ...
|