| Thread | Last Post | Replies |
|
| Array String | 04 Mar 2008 16:23 GMT | 6 |
i must create an string array to save a record of a txt file.... the number of record is't the same... someone can help me? thanks
|
| moving floats between {C# on PC} and {C++ on ARM7 MCU} | 04 Mar 2008 15:57 GMT | 2 |
I need to move "floats" (single precision) between a C# application in a PC and a C++ program running on an embedded system. The C++ program has been compiled with Rowley Associates CrossStudio 1.7 build 4, which uses GNU C/C++ compiler GCC, and runs on an NXP LPC2103 with
|
| Create Windows Account Programmatically C# | 04 Mar 2008 14:49 GMT | 5 |
Good afternoon. Could you help me? I need to create Windows Account Programmatically via C#? How could I do this? private void CreateUser(string userName, string password) {
|
| Static vs. instance method: Which one performs better? | 04 Mar 2008 14:00 GMT | 16 |
I am not sure if this question makes sense. But I have been wondering if there is a performance difference between a static method and an instance method. I created something like this, just to give it a test.
|
| Cast<Customer>() causes exception | 04 Mar 2008 13:40 GMT | 15 |
I tried Northwind db = CreateDB(); IQueryable<Customer> gqueryable = (from c in db.Customers select new { c.CustomerID, c.City }).Cast<Customer>();
|
| Writing Hashtable data into text file | 04 Mar 2008 13:11 GMT | 1 |
In One application i m using Hashtabe to read an xml. After reading xml i want to write that hashtable data into text file. Hashtable is nested (two hashtable). How to do that? How can i retrive the hashtable data. Someone Plz explain with example.
|
| ExecuteScalar | 04 Mar 2008 12:59 GMT | 2 |
Hello All, what is the correct / proper way to check for null values in the ExecuteScalar. System.DBNull.Value, Null or both?
|
| Need help using Raw Input under C# | 04 Mar 2008 11:39 GMT | 1 |
I have an application that uses an attached GPS through the COM port. Unfortunately it seems that time has moved on and more and more GPS devices are native "HID" devices connected to a USB port. (Good news for Vista 64bit users I guess!) Unfortunately as far as I can tell I need ...
|
| Snapshot an image of a running application | 04 Mar 2008 11:14 GMT | 2 |
I am wondering if there is a way to capture an image of a running Windows Application when the user hits a special key sequence to bring up a "comments" dialog to be used during testing of a new app. This feature would be cached into a central database along with the comments so ...
|
| C++ <-> C# communication | 04 Mar 2008 10:41 GMT | 1 |
I'm going to write a shell extension, and for this purpose I use C++ and ATL. The shell extension should then show a GUI window, and the user will interact with the controls contained in this window.
|
| Slow Animation Performance with Multiple Animations | 04 Mar 2008 10:04 GMT | 4 |
In WPF (even with considerable improvement in version 3.5), while running multiple animations in a single window, The performance of one animation suffers a lot. for example, i have two image transitions on two independent Canvases on a
|
| object traps | 04 Mar 2008 09:52 GMT | 2 |
does anybody know of a way to detect all accesses to an object including method or property entry and exit instance or static field read and write etc.
|
| soundplayer | 04 Mar 2008 09:36 GMT | 2 |
I'm using the Soundplayer class in my c# project and can't seem to get all my files playing. If I play the tada.wav sound in windows it works fine. If I play my 0.7 second audio tone, nothing comes out. I had a look and the tada sound goes for nearly 1.95 seconds. Does the length ...
|
| LINQ join using Expression Tree | 04 Mar 2008 08:10 GMT | 7 |
I'm designing a query editor and have been able to create expressions on a single table but I am having trouble creating a join dynamically. Using the adventureworks database as an example, // let the compiler do it
|
| Can a ShowBalloonTip event be raised from a console or win service app | 04 Mar 2008 08:05 GMT | 1 |
I have a Win Service app that monitors the health of remote servers, including web services. I would like to raise a WinBalloonTip for significant events, such as the Death of a connection or service. Is this possible from a service (or even console app, for that matter), or does ...
|