| Thread | Last Post | Replies |
|
| Correct way to resize a control when form is resized | 16 Sep 2005 19:57 GMT | 8 |
Is this the correct way to resize the controls on a form when the form is resized? protected override void OnResize(EventArgs ea) {
|
| Initializing a HashTable like arrays | 16 Sep 2005 19:54 GMT | 4 |
Considering the fact that we can initialize an two dimensional array like the following syntax: int[] myIntArray = new int[5] { 1, 2, 3, 4, 5 }; Can I initialize a HashTable like an array?
|
| use of unassigned local variable - object can't be null though | 16 Sep 2005 19:44 GMT | 2 |
I am trying to work with an object and create it like so: EXTRA.Sessions oSessions = new EXTRA.Sessions(); This doesn't work because I get this error: 'Cannot create an instance of the abstract class or interface
|
| Can I have enum of strings? | 16 Sep 2005 19:43 GMT | 5 |
Can I have enum contain strings? Thank you, Alan
|
| Interogating Quick Launch Items | 16 Sep 2005 19:08 GMT | 3 |
hi, I want to interogate the Quick Launch folder, looking at each icon and getting the image, and target that it fires when clicked. I can get to the folder and create a filelist of the icons, but cannot seem to find where to go from there, can anyone help ?
|
| How do I change to a different form that runs when the appl starts | 16 Sep 2005 18:48 GMT | 7 |
Hi, I just found out that I need a different form to run at the start of the application. How can I change the current form to not start and the new form to start? Thanks, Alpha
|
| Freeing Memory allocted in unmanged C code | 16 Sep 2005 18:44 GMT | 1 |
I am passing the address of pointer like char** from managed extension and getting the its initialized value from a C library dll. How can i free the memory from the code in Managed Extension ?
|
| How do I set only certain levels of a TreeView to have checkboxes? | 16 Sep 2005 17:54 GMT | 2 |
The only property I can find to enable checkboxes on a TreeView affect the whole tree - all levels. What if I only want a certain level to have checkboxes?
|
| passing array of structures from C dll to C# | 16 Sep 2005 17:34 GMT | 4 |
I am trying to pass array of structures from a C dll to C# as msdn sample does(outarrayofstructs sample) but PtrToStructure function gives error : --> "structure must not be a value class"
|
| Reading from standart input stream using BinaryReader | 16 Sep 2005 16:48 GMT | 1 |
// Open input file and create the BinaryReader. br = new BinaryReader(new FileStream("Test.dat", FileMode.Open, FileAccess.Read));
|
| Can we upload folder as it is from client to server in .NET | 16 Sep 2005 16:45 GMT | 1 |
Can we upload folder as it is from client to server in .NET Please give me link of sites or any other information regarding this
|
| how to retrive client side file information | 16 Sep 2005 16:44 GMT | 1 |
how to retrive client side file information through .NET Any link or information please ?
|
| Streaming multiple pages into one page | 16 Sep 2005 16:15 GMT | 2 |
I have couple of ASPX pages that I want to display on one page. This is sort of printing multiple ASPX pages to one ASPX page. (then may be I can convert it to PDF file). Is there a way that I can attach Response bodies and attach to one body
|
| GUI Interface design | 16 Sep 2005 15:45 GMT | 2 |
Hey folks... Does anyone know if there is a Microsoft doc out there that give guidelines on developing a GUI interface? i.e. The look and feel of it, and how it's supposed to flow?
|
| threading question | 16 Sep 2005 15:41 GMT | 7 |
I have a c++ program NumberCruncher that I wroteto do some heavy number crunching, it's a single threaded console app which takes command line arguments (input file, paramters, output file) . I wrote a c# program which runs the c++ program with all the correct
|