all groups > c# > april 2008 > threads for saturday april 12
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
Sub-classing windows forms controls
Posted by Richard Carpenter at 4/12/2008 7:59:44 PM
I have added a Windows Forms Control Library project to my solution and
created a form control (let's call it libForm) in this new project which
inherits from System.Windows.Forms.Form. I set the Text property of this
form to the name of the application ("MyApp"). When the control library is
... more >>
LINQ to SQL + SQL Server 7
Posted by Dmitry Perets at 4/12/2008 4:20:41 PM
Hello,
I am trying to work with MS SQL Server 7 from the release version of
Visual Studio 2008 + LINQ to SQL. And the problem is that the LINQ to
SQL designer doesn't accept my tables saying that my connection
provider is unsupported. Then I found out that LINQ to SQL officially
supports only... more >>
Time issue
Posted by jediknight at 4/12/2008 9:18:24 AM
Hi,
I have a problem to solve and not quite sure about the best way to
solve it.
I have an application which needs to insert a log line into the
database table at certain times of the day.
These times are every 15minutes from midnight to midnight (24hours).
The logging needs to start at exac... more >>
Any good refs on dealing with tightly packed data in C#?
Posted by _dee at 4/12/2008 6:22:04 AM
I'm working on a port of a legacy app originally written in C. Data
was compacted into bit fields. Are there any sites or books that cover
optimized handling of this type of data? I'd need to develop optimized
functions for reading and writing, and given the volume of source, I
don't want to en... more >>
Service Oriented Architecture
Posted by ludwig_stuyck@hotmail.com at 4/12/2008 5:47:06 AM
I'm in the process of designing a Service Oriented Architecture. At
the moment I based the design on the Web Service Software factory
guidelines - so a services layer, business layer and resource access
layer. The services layer contains WCF services, which use the
business layer, which uses the... more >>
Static generic extension method
Posted by Steffen Bobek at 4/12/2008 12:06:31 AM
Extension methods are made for use with instances. I'd like to "misuse" them
as static methods, too. Let me tell you my ambition:
I use an extension method to serialize objects somehow like this:
MyObject obj = new MyObject();
obj.ToXmlFile("some directory\\some file.xml");
The m... more >>
|