| Thread | Last Post | Replies |
|
| Checkbox persistence during GridView paging | 18 Nov 2005 01:44 GMT | 4 |
Currently using VS2005 c# Scenario: I have a gridview control displaying many items with paging enabled. Column[1] is a checkbox column which users can check, but when the gridview is paged to another page and then back again, the value of the checkbox has
|
| array random sort | 18 Nov 2005 00:58 GMT | 9 |
How do I take an array or arraylist, and sort it randomly? Like suppose the items in it are (1,2,3,4,5) and I want to get it to be in a random order (2,3,1,4,5). How do you do that? I think it's a call to the array or array lists sort method, but i'm not exactly sure how you do ...
|
| a += b vs a = a + b | 18 Nov 2005 00:39 GMT | 13 |
Compiles: short a = 1; a += 2; Does not:
|
| log4Net.dll | 18 Nov 2005 00:09 GMT | 3 |
Gurus, I have never heard about log4net.dll, any links or help that you can help me to learn about this dll? Thanks,
|
| Is visual basic more functional than C#? Why I ask is because... | 18 Nov 2005 00:03 GMT | 5 |
Microsoft gives the following get available space function but no C# function and I have seen that a lot where system functions like that are only shown with examples for VB (Visual Basic) Can anyone comment on this situation. Below is visual basic code for
|
| StreamReader to read from string? | 17 Nov 2005 22:57 GMT | 6 |
Im using a code snippet that reads a text file from disc and processes it using stream = new StreamReader(filename); Is it possible to assign a String instead of a file as the source of the
|
| possible generic inheritance bug | 17 Nov 2005 22:54 GMT | 2 |
Either I am missing something, or there is a compiler bug in the way inheritance from generic s is treated. In the following code, class c2 inherits from c1_generic. c1_generic has T as a generic paramter, and in the inheritance, class c2 specifies
|
| Is VS2005 optimized for ... ? | 17 Nov 2005 22:52 GMT | 8 |
Is VS2005 optimized for Intel or AMD processor ? What gives best speed when I develop webprojects ? What really means in the term of speed 2 cores or frequency I assume 64bits. Jarod
|
| Default Property Value in C# | 17 Nov 2005 22:48 GMT | 5 |
I have created a static class which contains properties. I can assign values to them when the software is running. How can I create default values for these properties when I am coding them, so that I can retrieve those values without assigning a new one when the software is ...
|
| Blank Destructor - is this code okay? | 17 Nov 2005 22:45 GMT | 5 |
I have inherited some code and I am debug some connection pooling errors. Is there anything wrong with the implementation of this class? I am just curious about the empty destructor and implementation of IDisposable as I have never seen this done before.
|
| squeeze few image files into one binary file | 17 Nov 2005 22:43 GMT | 2 |
I need to take few files (images in my case) and create one file out of them, this file should be accessed so i can grab a single image from it if necessary, i thought of taking all the images and put them in one binary file, but
|
| Lost saved code after Visual C# Express crashed | 17 Nov 2005 22:37 GMT | 2 |
Just want to rant about something horrible that happened to me tonight. It was my first time using the new Visual C#. I started a new project, coding away continuously for about 6 hours. I saved and executed my code multiple times. I'd assume the source files are saved safely
|
| Why doesn't this throw an exception? | 17 Nov 2005 22:35 GMT | 4 |
Any ideas why the below code won't throw an exception? It appears that the base Add method is being called, and not mine :-( -- Console App -- using System;
|
| Release Outlook Application object | 17 Nov 2005 22:30 GMT | 1 |
I'm trying to access the appointments from MS Outlook 2003 using the interop assembly. Here is the code using .Net Framework 2.0 beta: Microsoft.Office.Interop.Outlook.Application m_coOutlookApp = new Microsoft.Office.Interop.Outlook.Application();
|
| FTPS using C# | 17 Nov 2005 22:02 GMT | 1 |
I need to develop a FTPS application using C#. Does anyone know which .NET libraries to use, Is there code that i can use? thanks.
|