| Thread | Last Post | Replies |
|
| Ignored advice, am now in serious poo on graphics | 28 Nov 2007 19:48 GMT | 3 |
When I started my current extremely graphics intensive project, I ignored advice in this ng to use the Paint method, and used the alternate CreateGraphics approach. I thought there were some good reasons for that, which I won't go into.
|
| Passing enumerator as generic type | 28 Nov 2007 19:37 GMT | 2 |
I created a generic class and I want to pass it a enum, class GObject<SomeType> { ..
|
| Dispose(bool), Idisposable, form closing etc. | 28 Nov 2007 19:22 GMT | 29 |
I am confused by dispose etc. and hope someone can set me right. 1. The Dispose(Bool) the IDE generates for a form has nothing to do with IDisposable, right? 2. So when is this called? When a form is closed? If this is caused
|
| How about this syntactic candy? | 28 Nov 2007 19:12 GMT | 43 |
for (int i = 0; i < list.Count; i++) has a hidden performance hit; i.e. list.Count gets evaluated each time, so we write something like: int listCount = list.Count;
|
| datetime | 28 Nov 2007 18:51 GMT | 2 |
are there any examples anywhere to calculate a julian Date in C# Thanks
|
| C# teasers | 28 Nov 2007 18:34 GMT | 16 |
I'm looking for C# brain teasers (or VB.NET): a little piece of code that does something special, or where a little error is. Does anyone has some of these, or links to sites? Thanks!
|
| How to include an executable in the c# console project | 28 Nov 2007 18:10 GMT | 3 |
Is there a way to include an executable (xxx.exe) file inside a c# console project so that the resulting project binary have only one final executable file? My c# console application is calling another Executable (exe) which I am trying to include in my project so I can
|
| C# to the fullest: readable code | 28 Nov 2007 17:38 GMT | 5 |
I've found that C# 2 has several non-basic-programming-features turn out to be a great help in making code readable and typesafe, most notable the Generics stuff. Consequently, when I was creating the code below, I figured there must be an easier and above all more readable
|
| Get a list of available stored procedures | 28 Nov 2007 16:28 GMT | 4 |
I would like to retrive a collection with the avvaialbe stored procedures, if there are any, I m using an ODBC connection, How can this be achieved?
|
| crystal report and pure object 's list | 28 Nov 2007 16:18 GMT | 1 |
I have a data access layer with existed List<T> , how can i set it to datasource of crystal report viewer.???
|
| How to auto scroll a datagrid? | 28 Nov 2007 16:06 GMT | 3 |
I have a datagrid (rather a dataset I guess) that I update with addStatusRow ( ... ). It basically is a Status that adds lines as something occurs in my thread. As lines are entered, when it gets to the bottom of the grid, I would like it to automatically scroll, so
|
| creating and using strongly named assembly | 28 Nov 2007 15:28 GMT | 4 |
I have a class library that I want to make into a strongly named assembly. I have used the command line to create the key and added the .snk file to my class library, and have now tried to add the following to the AssemblyInfo.cs :
|
| table metadatA_? | 28 Nov 2007 15:10 GMT | 2 |
Is there a possibility for me to retrieve table metadata so that i can catch a column of a table is foreign key at runtime? best regards emre dincer
|
| notifications | 28 Nov 2007 12:29 GMT | 1 |
Hello again, Is it possible o create a notification (delegates) mechanizm between 2 forms which don't have inheretence relation and are part of one main container? If so - how? Thank you!
|
| Representing Null with a DateTimePicker | 28 Nov 2007 12:08 GMT | 4 |
We were hoping to allow users to have DateTimePicker value null so that a unused date is stored on a Database. Does the control support this? I am pretty sure it doesn't. How would you go about representing this to a user so they are not
|