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 your group to be featured on the Yahoo! Groups website? 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 16390 - 16419 of 19704   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand   (Group by Topic) Author Sort by Date ^
16390
I have a treevuew and all of the nodes are stored in a dictionary: Dictionary<long,TreeNode> dic; when I'm selecting a node by the id I'm trying to select the...
gvolfson2
Offline Send Email
May 1, 2007
12:10 pm
16391
Hi TreeView.SelectedNode is a read-only property, I'm not sure but you could try: dic[34].Selected = true; dic[34].Expanded = true; So select the node and...
Matt Evans
im_matt_evans
Offline Send Email
May 1, 2007
2:34 pm
16392
That doesn't work. Only if the identity increment is 1. I use different increment values quite often... The only reliable way of determining the identity value...
Jasmine
polly_peptide
Offline Send Email
May 1, 2007
3:10 pm
16393
I'm using Visual Studio 2005 with .NET v2 TreeView.SelectedNode is not read only but it does not work. The Expand() method of the TreeNode does not work. There...
gvolfson2
Offline Send Email
May 1, 2007
5:37 pm
16394
I am not really sure of what you mean by the question but if you mean that you want to get the value of the empid before updating, You can put an event on the...
Eng. Ahmed Youssef
ah_hatem2
Offline Send Email
May 1, 2007
8:54 pm
16395
Are you trying to make multiple copies of a form to fit into an MDI application, or are you just trying to pop up a form from a a menu click If you just need...
Gerald Myers
geraldmyers
Offline Send Email
May 1, 2007
8:55 pm
16396
That works. Thanks! ... click ... form to ... called ... 40yahoogroups.com>, "Gerald ... object? ... for ... an if ... properties...
ernestlipford
Offline Send Email
May 2, 2007
12:45 pm
16397
Hi! All, I am new to Visual Studio 2005. In that I am having some problem specially building project. My Solution project having 2-3 projects in it. If I am...
ashish patel
ashish276
Offline Send Email
May 2, 2007
5:31 pm
16398
hi! has any1 developed any expert system using C# ? I am developing a medical expert system about ear diseases using C# and ASP.NET does any1 know about any...
seemi_uet
Offline Send Email
May 2, 2007
8:22 pm
16399
Rebuild the project individually, be sure to build the solution ashish patel <ashish276@...> wrote: Hi! All, I am new to...
mubashir hameed koul
koul_mubashir
Offline Send Email
May 3, 2007
5:38 am
16400
I will say, this is the process of build a dependent project in a solution. There is another way to do it have a common folder for all the assemblies and once...
Jaiprakash M Bankolli
jbanx
Offline Send Email
May 3, 2007
2:52 pm
16401
HI Use refrences of other project in the main project and then build it wiil take less time. I mean add other projects as reference to the main hope it will...
swati saraswat
saraswat_swati
Offline Send Email
May 3, 2007
2:54 pm
16402
Hi all I have a simple page with a text box and a button, when i put a value in the text box, and press on the Enter Key, it fire the on click event for the ...
johnsmith2797480@...
samsoftwareltd
Offline Send Email
May 3, 2007
4:51 pm
16403
This was just posted on CodeProject, it might help. http://www.codeproject.com/aspnet/XTextBox.asp Steve ... value in the ... the ... when you press ... ...
ysfred4
Offline Send Email
May 3, 2007
4:57 pm
16404
Hi, I have a dll, no gui, which needs a data binding mechanism. Since BinderContext and CurrencyManager are derived from windows forms, how do I Implement data...
passionateprogrammer
passionatepr...
Offline Send Email
May 4, 2007
5:29 pm
16405
Actually if you don't need the button and want just the code to be fired upon the enter button pressing the code will not be put on the button, it will be put...
Eng. Ahmed Youssef
ah_hatem2
Offline Send Email
May 4, 2007
5:29 pm
16406
Yeah that could be one option ... -- Regards Jaiprakash M Bankolli Contact Number (India): 09989054442 Blog: http://jaiprakash.blog.com/ Suggestions:...
Jaiprakash M Bankolli
jbanx
Offline Send Email
May 4, 2007
5:33 pm
16407
I f I talk about classic ASP. Each Form (<Form>) has a submit button which is fired on pressing enter on any control. You can use the submit button or you can...
Adnan Amin
adnanaminarain
Offline Send Email
May 4, 2007
5:34 pm
16408
The reason that databinding is in the Forms things is that you are binding your data to the GUI controls. What do you want to "bind" to instead then? Steve...
ysfred4
Offline Send Email
May 4, 2007
5:37 pm
16409
Hi, I use C#.net Express Edition 2005 and in my project, I have set the database 'Copy property' to 'Do not Copy'. At this situation, I was able to add data...
hilbert_programmer_engg
hilbert_prog...
Offline Send Email
May 4, 2007
10:56 pm
16410
how everyone is doing, I was wondering if using share point 2007 will degrade my programming skills ? Because I went through a small course of it, I found it...
realhossam
Offline Send Email
May 4, 2007
10:57 pm
16411
Share point is just an out of the box tool with a lot of capabilities and I really doubt that you can use it all the time in all your projects, It doesn't do...
Eng. Ahmed Youssef
ah_hatem2
Offline Send Email
May 7, 2007
12:32 am
16412
Dear All, I am using DataGridView -Windows Application from C#. I have a Button Column inside DataGridView. I want to change the Button Text for few rows...
guess2me2003
Offline Send Email
May 7, 2007
12:32 am
16413
Hi folks - can anybody help me with this one please ? Is it possible to reference a class and receive a value/object, bit like accessors do with arrays in a...
Liz
itslz
Offline Send Email
May 7, 2007
12:34 am
16414
What you need is what in C# is known as an INDEXER. The example below is a very basic implementation. You might have to add test logic for your particular...
Ian Grech
iangrech
Offline Send Email
May 7, 2007
1:36 pm
16415
That is done by operator overloading, by overloading the = operator for example. Check this link: http://msdn2.microsoft.com/en-us/library/aa288467(vs.71).aspx...
Eng. Ahmed Youssef
ah_hatem2
Offline Send Email
May 7, 2007
1:49 pm
16416
To be honest, when I read that a few alarm bells were going off in my head because this sort of thing has the potential to cause a lot of headaches. You can't...
Pius Ott
saugoof
Offline Send Email
May 7, 2007
1:49 pm
16417
HI Dont make the EMpID column Hidden instead make it like other column and set the width of this column to zero .So by width zero it wil not be visible to the...
Swati Saraswat
saraswat_swati
Offline Send Email
May 7, 2007
3:10 pm
16418
Include the field name in KeyValues for the grid. Then, you can retrieve the value as NameOfYourGridView.KeyValues ["NameOfYourField"].Value. ... the time of...
Alan S. Bookman
alansb2003
Offline Send Email
May 7, 2007
3:36 pm
16419
You can use an indexer: using System; using System.Collections.Generic; using System.Text; using System.Drawing; namespace console_excercises { class Program {...
Alan S. Bookman
alansb2003
Offline Send Email
May 7, 2007
4:04 pm
Messages 16390 - 16419 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