| Thread | Last Post | Replies |
|
| Various newbie questions on C# | 06 Apr 2008 16:13 GMT | 8 |
I am used to using Visual Basic, and I am now trying out Visual C# 2008 express. One thing I don't know is how to make a dialog box disappear. In VB, you could say
|
| c# use an object instance across appdomains | 06 Apr 2008 07:25 GMT | 3 |
I need to use an object instance in 2 differnet AppDomains, meaning changing his fields and such... I tried to do it with Remoting but i couldn't find a way to refernce a specific instance in the remoted appdomain where the object was
|
| Only System.Management namespace listed is Instrumentation... what is going on? | 06 Apr 2008 05:36 GMT | 1 |
I'm new to (visual) c# and began tonight. My background is in VB .NET, so the adjust is mostly syntax. Anyway... I'm trying to perform a WMI query using classes in the
|
| Having a tough time with Lambda Expressions? Read this | 06 Apr 2008 00:54 GMT | 1 |
If you have a tough time getting your head around Lambda Expressions, see if this blog entry helps: http://tinyurl.com/4yeckd I would gladly welcome comments, critiques and questions, as I am hoping
|
| vs2008 Team Suite - Website projects problems | 06 Apr 2008 00:44 GMT | 4 |
Is there supposed to be no c# or VB language choices for website projects using .net 3.5? or did my install somehow get messed up?
|
| Regex woes | 05 Apr 2008 23:57 GMT | 8 |
I have these two methods that are chewing up a ton of CPU time in my application. Does anyone have any suggestions on how to optimize them or rewrite them without Regex? The most time-consuming operation by a long-shot is the regex.Replace. Basically the only purpose of it is to ...
|
| adding event handlers withour new operator | 05 Apr 2008 21:10 GMT | 2 |
I am very curious what is the difference between these two lines: SomeEvent += new EventHandler(Method) and SomeEvent += new Method.
|
| C# Express with SQL Server | 05 Apr 2008 20:16 GMT | 8 |
No amount of research will give me a definitive answer, so I turn to this newsgroup. For this project, I need to use SQL Server 2005 as the database server.
|
| Serialize | 05 Apr 2008 20:04 GMT | 7 |
I have implemented a class that contains two Serial port objects among other things. When I try to serialize this class I get an error relating to the fact that Serial Port class isn't marked as serializable. Is it possible to accomplish this.
|
| How to discover the class libraries | 05 Apr 2008 19:59 GMT | 9 |
I'm a newbie to C# and .Net, but have been a part-time programmer in Delphi for some years. My challenge isn't so much learning the C# language, as the seemingly vast .Net class libraries (which are apparently split into the Base Class
|
| MemoryStream into String | 05 Apr 2008 19:45 GMT | 6 |
I'm battling here.. I have transformed some XML using XSL, and need to output the result as a string... But I can't get the MemorySteram converted to a String...
|
| redirection operator compatible console application | 05 Apr 2008 18:36 GMT | 3 |
I have a program prog.exe. which takes IP as input its owner information as output. if input.txt contains, xx.xx.xx.xx
|
| datasets | 05 Apr 2008 17:58 GMT | 3 |
I have a dataset with two datatables, each from different datasources. The two tables are related by a datarelation. How would I databind a gridview to something equal to "SELECT * FROM table1 JOIN table2.."
|
| how to stop cursor keys from activating radio buttons? | 05 Apr 2008 15:16 GMT | 2 |
I have a form with some buttons and a graphical user control, I need to use the cursor keys to move the camera position in the control, but it has the unfortunate side effect of cycling through the button controls on the form and changing
|
| delegates that can see members in class | 05 Apr 2008 07:55 GMT | 2 |
Is it possible for delegates to see members in in a class that has the delegate definition in it? Basically I want the ability to have users to define there own methods to incorporate into my class. But instead of having to pass a few fields around
|