| Thread | Last Post | Replies |
|
| "Using" DirectX class libraries- newbie question | 11 May 2008 10:47 GMT | 2 |
Sorry, stupid newbie question. I have VS2008, and I downloaded and installed the DirectX SDK. I want to access the DirectX classes from C#, but I can't see how to make C# aware of them.
|
| Threads and Exceptions | 11 May 2008 03:52 GMT | 11 |
I am trying to use a ssh stream reader that has no timeout method. It simply watches the stream until an escape character appears in the stream. It then returns the contents of the buffer. Thus, when the server never responds to a read action (no escape character appears in
|
| Can't Post Online | 11 May 2008 03:22 GMT | 2 |
Microsoft updated their website interface, and now I am no longer able to post questions. I log in and get to the screen where I select New > Question. The page refreshes, but the question window never appears. How do I get the question window? My pop-up blockers (Google and IE7) ...
|
| WPF in CF | 11 May 2008 02:18 GMT | 4 |
Is anyone aware if Microsoft is planning to support WPF in the Compact Framework? I know that they introduced the WCF in 3.5 CF but have not heard anything about WPF. (or how about WF)? Thanks
|
| Excel 2007 Automation Question | 11 May 2008 02:17 GMT | 1 |
What I want to do is bring data into an excel 2007 worksheet that is stored in a sql database table. The idea is to parameterize the "where" clause in the sql select statement limiting the result set.
|
| Using MS SQL Express in my C# App | 11 May 2008 01:42 GMT | 8 |
I'm writing my first app that uses SQL Express to store a bunch of user data (vice using a simple txt file, etc.), but I have a question that you guys who've been doing this a while will probably laugh at. Once I've completed my app, will I have to ship SQL Express with my app
|
| Console.ForegroundColor per thread getting jumbled. | 10 May 2008 22:34 GMT | 1 |
lock (o) { Console.ForegroundColor = (ConsoleColor)Enum.Parse(typeof(ConsoleColor),
|
| Problem about getting a excel datasheet's name with oledb | 10 May 2008 15:17 GMT | 6 |
I'm trying to use oledb to get the content of an excel file. Now I can use oledb to get the content of a datasheet. But I should know the name of the datasheet in advance. How can I use oledb to query the names of all the spreadsheets in the excel
|
| simple logging in a C# COM DLL | 10 May 2008 10:47 GMT | 2 |
I have created a very simple C# class library (DLL). I have ticked the "Register for COM interop" option in the project properties dialog. I have made the [assembly: ComVisible(true)] in the AssemblyInfo.cs file.
|
| C# plans towards metaprogramming | 10 May 2008 06:55 GMT | 7 |
What is known about C# generics closing the gap with C++ templates in the future? Template specialization is especially badly missed. What new language features are coming in the next release of C#?
|
| Evaluating numeric expressions | 10 May 2008 02:01 GMT | 4 |
Is there an easy way in C# to take a string that contains an expression, say for example something like '(10 / 2) + 1' and evaluate it without having to parse the string myself and muck about with other stuff like operator precedence?
|
| Using delegates between main/sub threads | 10 May 2008 00:33 GMT | 15 |
Here is a problem I am facing (it might be too simple, but then I admit I am not a Guru:-) I have a main thread, in managed C++, that deals with displaying a form and some controls.
|
| Accessing a web service - proxy problem | 09 May 2008 22:27 GMT | 6 |
I wrote a VS 2005 C# express programme that accesses a web service. It works fine when there's a direct connection to the internet, but on two different PCs with internet access via a proxy, I get this exception: System.Net.WebException: The request failed with HTTP status 407: ...
|
| Compiler Error CS0702 | 09 May 2008 22:13 GMT | 36 |
I'd really like to be able to constrain a generic type to System.Enum or, better, enum. But of course that results in "Compiler Error CS0702". So far I've been checking the type parameter at runtime and throwing an exception if the provided type is not an enum. That works, but it ...
|
| Confused about the String Contains function | 09 May 2008 22:02 GMT | 8 |
Does anyone know why the string contains function always returns true if the token is an empty string? I expected it to return false. "AnyOldText".Contains("") or
|