| Thread | Last Post | Replies |
|
| How to read registry | 03 Dec 2007 01:24 GMT | 1 |
I trying to read the registry where my programm is installed. if (result == DialogResult.OK) { string Prog = LeesPadVanRegister();
|
| Garbage Collector Reference Counting | 02 Dec 2007 23:23 GMT | 9 |
I was wondering if there is a way to get the number of references an objects have (ie, other objects reference that object)? I know that .Net GC uses a different mechanism than the RefCount in C++ since .Net uses managed objects. I just need to know if there is any
|
| Cleaning up large amounts of data | 02 Dec 2007 21:31 GMT | 1 |
I'm using PdfSharp (an open-source PDF manipulation library) to generate a very large PDF ( 1500+ pages.) My program crashes before reaching the end because of the massive amounts of memory being used (after 750 entries the memory footprint is ONE GIGABYTE.)
|
| Pointer problems | 02 Dec 2007 20:53 GMT | 2 |
Here is the relevant part of my structure... [StructLayout(LayoutKind.Sequential)] public unsafe struct PPF_FILTER_DESCRIPTOR {
|
| Regonize the minimize button in a form | 02 Dec 2007 20:52 GMT | 5 |
How to regonize when the user clicks the minimize button in a form with events? Rinaldo
|
| Modifying apearence of radio buttons | 02 Dec 2007 19:20 GMT | 2 |
I want a group of buttons wich need to function like radio buttons ie, only one can be on but I wish to have them look like the 'Button' type button and stay down when they are pressed
|
| DataViewManager | 02 Dec 2007 13:28 GMT | 1 |
I am looking for some information on DataViewManager, I searched this group and also searched the web but could not find what I want. I need to know what is a DataViewManager and what it is used for, how does it work and etc. I looked at MSDN but could not get much information.
|
| Code Profiler | 02 Dec 2007 11:10 GMT | 2 |
A few years ago I used a Profiler (I forget the name) on my Delphi code at the time and got fantastic results showing both: a) lines of code that took the longest to execute and b) lines of code that allocated the most unreleased memory.
|
| Is the .NET 3.5 SDK available yet? | 02 Dec 2007 09:57 GMT | 6 |
I am looking for the .NET 3.5 SDK Documentation (the most current version I can find online is for .NET 2.0). If you could provide a link or information as to when it'll be released, I'd be very happy. The .NET 2.0 SDK Documentation is a really great tool and I keep it available ...
|
| How do you check to see if an object works in vs2005 standard? | 02 Dec 2007 05:55 GMT | 9 |
I have an object i want to test before putting into real code. How do i do that in vs 2005 standard?
|
| Naming Conventions of methods and variables | 02 Dec 2007 04:50 GMT | 3 |
I am doing a Project designing all the three tiers(Presentation, Business and Database). In the Middle tier what patterns should be used and how should I use one. In Middle tier C# programming I want to know what is the standard way
|
| clear fillEllipse graphics | 02 Dec 2007 02:41 GMT | 15 |
I have this function that will fill the ellipse every 10 seconds with specific x,y,w,h. Now I want do the the reverse, to clear the ellipse with given x,y using Timer at every 30s.
|
| How to get 'Graphics' of the whole screen? | 02 Dec 2007 00:15 GMT | 2 |
Hi Experts: I'd like to be able to draw image outside my application. I know I can get a drawing surface for a form by using: Graphics g = Form.CreateGraphics
|
| Restarting a computer in C# | 01 Dec 2007 23:12 GMT | 2 |
Does anyone know how to restart a computer using C# code? I can use shutdown -r command but this is not a good choice because it takes 30 seconds to restart. I have made a wizard for one of my applications which configures the
|
| Bulletproofing a DataGridView in a Windows Forms Application | 01 Dec 2007 22:12 GMT | 1 |
I am new to C# and I am writing a program which uses several DataGridViews. Because DataGridView is a complex control, handling different situations where error may occur in a DataGridView is a little
|