Search the web
Sign In
New User? Sign Up
CSharpNET · C# .NET (C-Sharp) Developers' Group
? Already a member? Sign in to Yahoo!

Yahoo! Groups Tips

Did you know...
Want to share photos of your group with the world? Add a group photo to Flickr.

Best of Y! Groups

   Check them out and nominate your group.
Having problems with message search? Fill out this form to ensure your group is one of the first to be migrated to the new message search system.

Messages

  Messages Help
Advanced
Messages 8749 - 8778 of 19704   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand   (Group by Topic) Author Sort by Date ^
8749
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....
Ian Moores
i_moores
Offline Send Email
Dec 1, 2004
8:19 am
8750
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...
overlo4ded
Offline Send Email
Dec 1, 2004
9:04 am
8751
I Wonder could anyone tell me why C# compiler reports an error on this code ? Is there any good reason for this type of restriction ? public void...
Mehrdad Senobari
senobari_iust
Offline Send Email
Dec 1, 2004
10:18 am
8752
Here is one: http://www.codeproject.com/cs/miscctrl/treelistview.asp Michael ... From: "overlo4ded" <overlo4ded@...> To: <CSharpNET@yahoogroups.com> ...
Michael Beall
mikebeall
Offline Send Email
Dec 1, 2004
11:22 am
8753
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...
Newtz, Brian
virgotat
Offline Send Email
Dec 1, 2004
12:47 pm
8754
Hi, What does the term 'MessageLoop' actually means. How Application.Messageloop is used in C# and for what purpose. I need a sample code also...
amittinku
Offline Send Email
Dec 1, 2004
12:48 pm
8755
Hi Any one can help me that how to take printout of the CrystalReport in ASP.Net by Using C#. Regards, J. Mohanraj...
mohanraj
jay_mohanraj
Offline Send Email
Dec 1, 2004
12:51 pm
8756
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...
Newtz, Brian
virgotat
Offline Send Email
Dec 1, 2004
12:54 pm
8757
In the code snippet, c1 and c2 are not initialized. ref arguments cannot be null. kevin aubuchon www.aubuchon-design.com...
kevin.aubuchon@...
ka3751
Offline Send Email
Dec 1, 2004
12:57 pm
8758
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...
Newtz, Brian
virgotat
Offline Send Email
Dec 1, 2004
1:12 pm
8759
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...
Bill Norton
bnorton916
Offline Send Email
Dec 1, 2004
1:15 pm
8760
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...
Mehrdad Senobari
senobari_iust
Offline Send Email
Dec 1, 2004
1:47 pm
8761
... 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...
Stephen Russell
lotmate
Offline Send Email
Dec 1, 2004
2:38 pm
8762
Hi all, Can anyone which is the correct defintion of ToArray public new Subject[] ToArray() { int num1 = base.Count - 1; Subject[] subjectArray1 = new...
Paul Cowan
dagda1970
Offline Send Email
Dec 1, 2004
3:24 pm
8763
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 ...
Ian Moores
i_moores
Offline Send Email
Dec 1, 2004
3:38 pm
8764
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...
amittinku
Offline Send Email
Dec 1, 2004
3:39 pm
8765
This one is correct int num1 = base.Count; Subject[] subjectArray1 = new Subject[num1];...
Ian Moores
i_moores
Offline Send Email
Dec 1, 2004
3:40 pm
8766
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...
Bob Grommes
bgrommes
Offline Send Email
Dec 1, 2004
3:48 pm
8767
... 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. ...
Stephen Russell
lotmate
Offline Send Email
Dec 1, 2004
3:54 pm
8768
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,...
Newtz, Brian
virgotat
Offline Send Email
Dec 1, 2004
3:59 pm
8769
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...
Newtz, Brian
virgotat
Offline Send Email
Dec 1, 2004
4:00 pm
8770
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...
kevin.aubuchon@...
ka3751
Offline Send Email
Dec 1, 2004
4:32 pm
8771
The explanation is quite simple. Image this method: static void Foo(ref object bar) { bar = "whatever"; // assign a string, implicit cast } static void Main()...
vizone2003
Offline Send Email
Dec 1, 2004
4:48 pm
8772
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...
Daniel O'Connell
onyxkirx
Offline Send Email
Dec 1, 2004
4:49 pm
8773
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...
HAZEM NAYEF
hazem_nayef
Offline Send Email
Dec 1, 2004
5:27 pm
8774
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. &...
Stephen Russell
lotmate
Offline Send Email
Dec 1, 2004
8:01 pm
8775
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...
meghanad chitre
meghnad0
Offline Send Email
Dec 2, 2004
10:08 am
8776
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,...
vivek tripathi
vivektripathi79
Offline Send Email
Dec 2, 2004
10:09 am
8777
I want more about this subject to learn smart device programming plz supply me with any useful thing . thanks...
jockeyce2004
Offline Send Email
Dec 2, 2004
10:11 am
8778
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 ...
johnsmith2797480@...
samsoftwareltd
Offline Send Email
Dec 2, 2004
10:57 am
Messages 8749 - 8778 of 19704   Oldest  |  < Older  |  Newer >  |  Newest
Advanced
Add to My Yahoo!      XML What's This?

Copyright © 2009 Yahoo! Inc. All rights reserved.
Privacy Policy - Terms of Service - Guidelines - Help