| Thread | Last Post | Replies |
|
| DataGridView: Column Header with 2 lines | 23 Sep 2006 06:49 GMT | 1 |
I want to create columns in my DataGridView just like that: ______________________________________
|________________Taxes________________| |_______Tax 1_______|______Tax 2______| |
| Form1.Visible= false C# | 23 Sep 2006 04:44 GMT | 3 |
Why is there no Visible method for Form1 on a new windows app ? using System; using System.Collections.Generic; using System.ComponentModel;
|
| firefox download process | 23 Sep 2006 03:08 GMT | 1 |
I would like to know how to write a c# application which does download like firefox does.
|
| Inteface for Controls.Add(???) | 23 Sep 2006 00:23 GMT | 1 |
how do I solve this problem: Interface A {...} Class B : System.Windows.Forms.UserControl, A
|
| /// <example> | 22 Sep 2006 23:58 GMT | 8 |
Where will code that is preceded with: /// <example> /// some comments /// </example>
|
| Paradigm for multiple IDisposables | 22 Sep 2006 22:52 GMT | 3 |
I'm sure this comes up often, but I have a situation where I have at least 4 objects that all implement IDisposable. It gets very tedious having to write finally blocks that Dispose all of them in a row, but the using statement is very limited in that it doesn't (seem to) allow
|
| What is the Best Icon Maker? | 22 Sep 2006 22:29 GMT | 7 |
What is the Best Icon Maker? Thanks, Jack
|
| Confusing error message | 22 Sep 2006 22:21 GMT | 3 |
I have a SqlDataAdapter.Fill filling a standard dataset and my code is returning the below error. The "Error Loading data" is just a message my code displays. "Error:" is the Exception.Message message and then below that is the stack trace. The strange part is the "Error:" ...
|
| Dictionary class lacks the very basic function ? | 22 Sep 2006 22:05 GMT | 3 |
I want to use Dictionary class like this: textboxM.Text = oMyDict.GetValue("textboxM"); textboxN.Text = oMyDict.GetValue("textboxN"); Where my dictionary contains the list of values for my textbox based on
|
| Requesting implementation details of Regsitry Optimization and Defragmentation | 22 Sep 2006 21:25 GMT | 1 |
Can anybody please help me in finding out information ( implementation details )regarding Registry Optimization, defragmentation ? Since I am dealing with an application in which I have to implment those features, I googled the NET, but clouldn't find any implmentation details ...
|
| char* in C struct mapping to C# struct | 22 Sep 2006 18:44 GMT | 1 |
I have been browsing C struct to C# mapping emails on the newsgroups, but I haven't been able to find a solution to my problem. My C structure looks like this: struct myCstruct {
|
| safely copy files | 22 Sep 2006 18:29 GMT | 11 |
Good day, I need to safely copy files from one directory to another. I need to make sure that I do not lock the file making it unreadable by others. I am not sure if this is the default behavior if I just used
|
| threading and variable scope question | 22 Sep 2006 17:16 GMT | 1 |
If I have a class C that contains a private variable (property) V and private function T and T is executed within C as a separate thread, does thread T have access to private variable (property) V in the instance of class C? It appears to but another person has suggested that ...
|
| @ symbol in C# | 22 Sep 2006 16:09 GMT | 32 |
I do not have any trouble declaring string values except when it comes to directory path's. Why does C# implicitly put a @ symbol at the being of a String value that has been declared like this: string strSourceDirectory="C:\\Documents and Settings\\admin\\My
|
| How to Convert SHDocVw.WebBrowser to System.Windows.Forms.WebBrowser | 22 Sep 2006 15:33 GMT | 2 |
Anybody knows how to convert an instance of SHDocVw.WebBrowser to System.Windows.Forms.WebBrowser? Or is it possible? thanks, Qiang
|