all groups > c# > january 2008 > threads for sunday january 20
Filter by Day: 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31
Log4Net with XML output
Posted by codingx@gmail.com at 1/20/2008 10:22:49 PM
Hi
Has anyone used log4net with an XMLAppender. I need to find how to
format the xml appender so that it will create XML output. e.g
<LogEntry>
<message>"Data error" </message>
<number>"2041"</number>
</LogEntry>
I am also trying with Enterprise application logging block to achive
th... more >>
Setting up users account
Posted by Dave at 1/20/2008 6:37:03 PM
I had previous asked a question in previous thread but my last question was
not answered. The last response I got was from user N. Paldino was:
"It seems that you do not have the SQL Server set up with a user
associated with the JONESMACH\HP_OWNER user that the website is running
under. You ... more >>
Problem restoring main form from minimize
Posted by Mike Borrowdale at 1/20/2008 4:07:12 PM
Hi,
new to c#, using VS2008 Express to build a winforms app.
I have set a couple of Application settings to save the main form size
and location between runs. That works great. But when I minimize the
main form and then try to restore it the form size is reduced to a
minimal window with jus... more >>
Linq, Datagridviews and Bindingsources
Posted by Søren_Reinke at 1/20/2008 12:09:12 PM
Hi there.
I am trying to get to know LINQ in combination with a bindingsource and=20
a datagridview.
In the framework we have at work we have created a usercontrol to do=20
filtering via textboxes on a datagridview. Therefore we databind through =
a bindingsource.
But when i load the d... more >>
Hibernate analog for .NET
Posted by Sergiu DUDNIC at 1/20/2008 10:59:44 AM
Hello,
I would like to know, if there are a analog for the Hibernate 's Java
approach in the .NET Framework.
As I understand Java's hibernate allows to conserve, and use the programmed
objects in the SQL relationnal databases's tables.
For .NET, there is somthing similar in LINQ. There ... more >>
How to DataBind a UserControl with ComboBox?
Posted by Steve K. at 1/20/2008 10:19:02 AM
** I just posted another, long thread related to UserControls and
DataBinding, but this is separate and smaller in scope so I mad a new
thread. **
OK, simple question (I hope): I have a UserControl with a ComboBox inside
and I would like to be able to DataBind to the UserControl and hook ... more >>
DataBinding to a UserControl with several nested, Bindable UserControls
Posted by Steve K. at 1/20/2008 10:01:12 AM
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
- [TextBox Controls] Address1, Address2, City, Zipcode
- [ComboBox Controls] State
InsurancePolicyDetails
-... more >>
Webconfig settings & aspnet_regsql.exe
Posted by Dave at 1/20/2008 6:54:00 AM
I am using VS 2005 and SQLSERVER 2005. I had run the aspnet_regsql.exe, to
use a different db from ASPNET.MDF. I have done that without any problem. I
am setting up ASP.NET Configurations. After clicking Web Site -> ASP.NET
Configuration -> Security, I get the error msg:
" Login failed for u... more >>
Don't see what you're looking for? Search DevelopmentNow.com.
Hashtable Question
Posted by aperrien@gmail.com at 1/20/2008 4:59:21 AM
Hello all,
I'm learning C# from a C/C++ background, and I came across an odd
problem.
I have a hashtable that holds a string and a struct like so:
private Hashtable MyTable = new Hashtable();
public class MyData
{
public long int x,y,number;
public Tile( long int xx, long int y... more >>
Database Normalization
Posted by weird0 at 1/20/2008 1:48:45 AM
I know that is not the appropriate group for asking this question,
but I do not know of any better forum.
Can anyone plz explain clearly what normalization is? The first three
normal forms upto 3NF and BCNF. I know the first one but the remaining
ones are really confusing. The language chang... more >>
Reference Object in Initializer Child Property
Posted by Matt Sollars at 1/20/2008 1:02:59 AM
Hi!
Does anyone know how to reference the object created via an object
initializer when setting a child property? It's hard to write into a
sentence. Suppose the following summary class for a categories in a DB.
public class CategorySummary {
public string Name { get; set; }
public... more >>
|