On what platform?? If it's web, then don't try and reinvent the wheel, use ImageMap HTML, it works very well in IE, although never tried through anything else....
Hi guys, I've another question for you... I need a custom TreeView component that also displays columns near the tree nodes. Each node'd have 3 columns that...
Here is one: http://www.codeproject.com/cs/miscctrl/treelistview.asp Michael ... From: "overlo4ded" <overlo4ded@...> To: <CSharpNET@yahoogroups.com> ...
When you close a form, or let any object go out of scope for that matter, the finalize method is not called immediately by the garbage collector. Finalization...
Maybe if you actually showed us what the method is doing, as well as WHAT ERROR you are getting, then maybe we could help. ... From: Mehrdad Senobari...
Application.MessageLoop is used to see if your application has an active message loop running. Having a message loop just means that a method is running a...
Trust me I don't want to reinvent anything! :-) My bad, I was referring to a windows application. With regards to the pictureBox and MouseMove is this the...
Oops, you did not understand my question correctly, let me explain it more : Imagine that we have a method with this prototype: public void SomeMethod(object...
... I agree with your statement. I really do! Unfortunately in this case it wasn't important. I did the primary system 2 years ago and touched on the concept...
Hi all, Can anyone which is the correct defintion of ToArray public new Subject[] ToArray() { int num1 = base.Count - 1; Subject[] subjectArray1 = new...
Hey! The boys not wrong !! The compiler also complains if you pass in any inherited class by ref to a method which take it's base class by ref as it's ...
We know there are 2 categories of datatypes in C#: Value type and reference type String and Class both are refernce types. I have made 2 program in C# using...
Strings are designed to be immutable. It is not possible to change the value of a string. .NET languages provide syntax sugar that allows you to use...
... I go to a PDF doc instead of their viewer myself. Stephen Russell S.R. & Associates Memphis, TN 38115 Nothing but a deficit grows under a Bush. ...
The output is correct. You're not using the strings and classes in the same way, which is why I think you're confusing yourself. Strings are reference types,...
Doh, I wasn't even thinking about the immutable part of strings during an assignment... well, most of what I said still holds true ;) ... From: Bob Grommes...
There are "Count" items in the array. The first and last index is 0 and Count-1. To copy the entire array, copy Count items, not Count -1. You might be...
There is actually a simple explanation: http://blogs.msdn.com/csharpfaq/archive/2004/04/08/110241.aspx Basically, it would allow you to circumvent type safety...
Thanks For Reply This Code Is Working Also But What Iam Trying To Get Is The Serial Number Of The Hard Disk Not The Volume Number Because The Volume Number Can...
I don't normaly use DG's but have to for "keeping" updates on a checkbox. How do I not display that first column in a grid? Thanks. Stephen Russell S.R. &...
hi all, In web environment I wanted 2 dropdowns in all the pages of my project. What could be the best way so that I can access both the dropdowns from all the...
Dear all How can we view our aspx page on different devices cutomize on basis on of that device screen. different devices may be(mobile phone, pocket pc,...
Hi, [WebMethod] public System.Data.SqlDbType GetSQLDataType(int intDataType) { } and when i try to reference it in the client appliation, i cant see it in ...