| Thread | Last Post | Replies |
|
| why do extension functions ignore the where clause? | 04 Apr 2008 16:20 GMT | 2 |
I have here some example code (below) that I believe should work fine. However, I get the error Error 1 The call is ambiguous between the following methods or properties:
|
| SqlDBType size | 04 Apr 2008 16:20 GMT | 1 |
I have a variable of SqlParameter type called parameter. I need to find out what the original size is to compare it with the actual size of my string. parameter.size gives me the size of the string but not the size of the
|
| compression deflate | 04 Apr 2008 16:00 GMT | 3 |
i would like to store the compressed stream in a table is there a way to convert the compressed stream to a string or someother storeable data type thanks
|
| Timer not working in thread | 04 Apr 2008 15:48 GMT | 16 |
My application processes a file and updates the data into sql server. The process takes around 30-90 seconds.I decided to put a timer to display the user a label(making label visible false and true) with message like "processing..." and do the other process using thread.
|
| Stopping log file created by TextWriterTraceListener getting too big? | 04 Apr 2008 15:48 GMT | 1 |
Does the TextWriterTraceListener class keep the log file it's responsible for to a manageable size, or will it grow it until the system crashes with a full disk? If the latter, what's the best way to maintain the log file?
|
| How to load pcx-images into an System.Drawing.Bitmap ? | 04 Apr 2008 15:45 GMT | 3 |
I'm working on a project that have to load an display pcx-images in a PictureBox-control. When I try to load the file with Bitmap.FromFile I get an exception. Does anybody have an idea ?
|
| Dataset vs DataReader Please Help | 04 Apr 2008 14:03 GMT | 7 |
Good Day. Im new in Programming. Please help me about Dataset and Datareader. I have couple of question. 1. What is the best way to insert/retrieve a data to SQL Server using
|
| Retrieving initializeData attribute from TextWriterTraceListener | 04 Apr 2008 13:09 GMT | 2 |
I set up a TextWriterTraceListener in the App.config file. I'd like to be able to tell, programmatically, which file it's using. However, I don't seem to be able to get at the initializeData attribute. The Attribute collection attached to the TextWriterTraceListener is empty.
|
| Error in C# Single Quote | 04 Apr 2008 11:35 GMT | 2 |
I have a problem about single quote search in C#. I have 1 table: ID NAME COMPANY 1 Sayre One
|
| Formating output text | 04 Apr 2008 10:27 GMT | 4 |
I need to write some strings in text file, it consist 3 columns and it must looks like: ID Name Points ======================
|
| Get Extension methods using reflection!?! | 04 Apr 2008 08:21 GMT | 6 |
I can't seem to get the extension methods using reflection... They just don't want to show up. I've read that it is possible and even saw some code to do it but it doesn't work ;/ If I use the standard method of getting the methods and pass various
|
| newbie question on dynamic variable creation | 04 Apr 2008 08:20 GMT | 6 |
i'm a newbie in C#. Was in programming many years ago with dBase/ Foxpro/Clipper and some VB. Perhaps my thinking is still stuck in that kind of mindset.. here's something i'm stuck at..
|
| Extend Types like instances? | 04 Apr 2008 08:18 GMT | 8 |
Can one extend the type itself and not just an instance of the type? So I have something, say, like public static DateTime RawRead(this DateTime i, Stream s) {
|
| Concat two Dictionary<> | 04 Apr 2008 07:53 GMT | 15 |
How do i concat two dictionaries aka the following sample: Dictionary<int, string> a; Dictionary<int, string> b; b.Add(a);
|
| Create object from type | 04 Apr 2008 05:21 GMT | 3 |
How do I create an object from a type? I don't need to actually do anything with the object. My code actually uses the object to get only type info rather than anything specific about the object. (its because I'm passing around objects instead of types)
|