| Thread | Last Post | Replies |
|
| Linq. Select. | 22 Apr 2008 09:32 GMT | 7 |
How do I select 10 random records from a table? Thanks, Miguel
|
| While creating shortcut slash changes to backslash | 22 Apr 2008 07:59 GMT | 2 |
Hi, all! Some weird thing happens... I'm trying to create a shortcut programmatically in C#. I need to create a shortcut with the "target" parameter using slash. Actually
|
| system.io.ports.serial | 22 Apr 2008 05:20 GMT | 1 |
I have an application that uses the system.io.ports.serial class to receive data from a serial device. The device is sending a data stream of stx then 15 readable ascii characters then a cr. My datareceived event looks like:
|
| error C2061: syntax error : identifier 'ref' | 22 Apr 2008 03:15 GMT | 6 |
So I have this perfectly fine and running app, that uses managed C++ forms. Problem#1: [1] I pass a Bitmap reference to a class, hoping to modify it in one
|
| DataSet and BindingSource | 22 Apr 2008 02:49 GMT | 1 |
I'm reading in a book about .NET and here they something that sound wrong but I'm not abolutely sure. They say that a DataSet contains methods to update data in the database is that really correct ?
|
| Service never starts only on Windows 2000 Server | 22 Apr 2008 00:50 GMT | 1 |
A windows service I've created runs on all boxes except Windows 2000 server. The windows service initializes (i.e., the Service:ServieBase class gets constructed),
|
| LinqToSql Paging problem (bug?) with Skip and Take | 21 Apr 2008 22:07 GMT | 8 |
I encountered a problem with a query of the following form: var q2 = from p in Persons.OfType<Cust> where p.AccountID == accid where !(from x in PersonDistLocationMatch
|
| open a connection to the pool | 21 Apr 2008 21:48 GMT | 2 |
How does this connection pool function actually ? As I have been told is that when the connection is returned to the pool the connection to the database is still open. What you do is that you just return a still open connection to the pool.
|
| Lambda expression in dlinq attribute | 21 Apr 2008 21:34 GMT | 6 |
I need to use lambda expressions or other way to specify default query for dlinq entity type. Code below causes compile error shown in comment. How to fix ?
|
| Determine if Assembly Is Loaded | 21 Apr 2008 21:11 GMT | 1 |
Is there an easier way to determine if a specific assembly is loaded into the current AppDomain? I'm thinking that there has to be a way to do it without looping through all currently loaded assemblies, yet I couldn't find how to do it without
|
| A simple question about DataSet | 21 Apr 2008 21:06 GMT | 1 |
A DataSet is using XML to represent data that is stored locally. I just wonder how can I look at these XML data that describe the DataSet? //Tony
|
| Regex: How to find a "<" less than Symbol | 21 Apr 2008 20:06 GMT | 3 |
since < has a meaning in c# for regular expressions and \< says it's an unrecognized escape sequence, I'm pretty lost parsing html tags without replacing them first with another character or string. Does anyone have a hint for me on how to get c# Regex class to find
|
| Extension Methods - first parameter ? | 21 Apr 2008 20:06 GMT | 2 |
Hi, just learning extension methods and the first parameter confuses me. I understand using the this keyword to indicate the class we wish to extend, but is the first parameter also used to catch something passed ? Or is is it just to specify the class we wish to extend?
|
| customized propertygrid | 21 Apr 2008 19:29 GMT | 8 |
I thought I could use the property grid to nicly edit some of my data, however it seems to require each field to be a property, wich I didnt realise was implied in the name of it lol.
|
| Regex Question | 21 Apr 2008 18:36 GMT | 1 |
I am coming back to a project and I dont remember what the following Regex says I do know it removes all \r\n from the string, but I dont see how. Can someone explain this one?
|