| Thread | Last Post | Replies |
|
| Dataset from XML file | 28 Dec 2007 21:47 GMT | 1 |
I have a table I am getting from an outside program that I am trying to read to build some Sql Tables and insert data from. The problem is that the following table puts all the tags together, instead of separting them by the different forms.
|
| what is new in c# 3? | 28 Dec 2007 21:04 GMT | 11 |
Linq and the features necessary to support it get a lot of attention but i happened to find out about partial methods by chance. Is there a comprehensive list of new c# stuff somewhere? i couldn't find anything obvious on the c# page on msdn.
|
| Implementing collection for VB script in C# | 28 Dec 2007 21:03 GMT | 6 |
I have created a "collection" in C# like this: namespace ClassLibrary1 { public class X {}
|
| Split strings | 28 Dec 2007 20:59 GMT | 4 |
What would be the best way to split a string into a string array. with the following possible inputs? abc1 abc2 abc3 -single space abc1 abc2 abc3 -multiple spaces
|
| RichText Problems | 28 Dec 2007 20:38 GMT | 3 |
Hi, I am going crazy trying to resolve a stupid issue. I have a RTB control and created a method to accept a string and (hopefully) set the font and size and alignment... Here is the method: private void AddToRTFReport(string asText, object aoColor,
|
| multithreading problem | 28 Dec 2007 20:34 GMT | 3 |
.NET 2.0 I'm developing an application which will perform some webservice calls and I believe having those calls in a separate thread may help the app run smoother
|
| Service Question | 28 Dec 2007 18:46 GMT | 1 |
dot.net 2.0 c# i have 2 Questions....easy one 1st How to destroy a object within itself without calling dispose example
|
| Custom Control not appearing in Toolbox | 28 Dec 2007 18:28 GMT | 1 |
When I create a custom control inside my Windows Application project it does not appear in the toolbox. I'm using Visual Studio 2005 (Team System for Developers), so this should appear automatically, right? I've compiled the application and selected show all items, but the
|
| Filename Issue with FTP in .NET 2.0 | 28 Dec 2007 17:23 GMT | 2 |
Hello folks, and Happy Holidays to those celebrating, I'm fairly new to using the .NET framework, and am attempting to do some FTP work. I have to use an authentication connection to a mainframe FTP session, and due to support concerns, I need to use
|
| LPT1 and access to it | 28 Dec 2007 16:34 GMT | 4 |
What is wrong with the login procedure in the community forums in DOT.net C# ?????? I have tried the trick with deleting coockis 3 or 4 times but STILL I have problems with the login procedure !
|
| Book on C# for C++ developers... | 28 Dec 2007 16:09 GMT | 6 |
I'm looking for a decent book that introduces C# to a (reasonably experienced) C++ developer. Prefer compiler-independent, though I will be using MS compilers for the most part. (Prefer concise and to the point, not a Stroustrup equivalent!)
|
| How to populate a asp:Repeater from a base class? | 28 Dec 2007 15:42 GMT | 3 |
What is the best way of populating a repeater control from a SQL Database using a base class. I am trying to impliment a base class that can be used across future websites and will populate a repeater control on the aspx page. The logic is losing me a bit as it seems wrong to try ...
|
| StringBuilder help | 28 Dec 2007 15:41 GMT | 7 |
I was in an interview question what is the most efficient way to sort a string for example "010101", the result would then be "000111", and write the code on how to do this. I wrote the code for the interviewers and I was told I did ok, but a stringbuilder would have
|
| Any way to tell if you are in the designer from a static function? | 28 Dec 2007 14:59 GMT | 7 |
We have a control that is throwing an exception in a static initializer when viewed in VS2005 designer as a subcontrol on a form. The exception doesn't get thrown when designing the control itself, nor does it get thrown in normal run-time, so it must have something to do with ...
|
| Fade Images | 28 Dec 2007 14:52 GMT | 2 |
I draw some images on my canvas using Graphics.DrawImage() in a component class. After the canvas gets loaded I would like to apply some animations to the images. Is there any event where I can do this apart from paint event?
|