hi everybody,

     i've doubt in using datagrid in c# and ASP.net
I'm developing a mailing application using ASP.NET , i
want to include check box control in the datagrid.
It will be helpful in the successfull completion of my
project

Thanks in advance

-
Karthikeyan V
--- [EMAIL PROTECTED] wrote:

> ------------------------ Yahoo! Groups Sponsor
> --------------------~--> 
> $9.95 domain names from Yahoo!. Register anything.
>
http://us.click.yahoo.com/J8kdrA/y20IAA/yQLSAA/XGgtlB/TM
>
--------------------------------------------------------------------~->
> 
> 
> There are 7 messages in this issue.
> 
> Topics in this digest:
> 
>       1. Treeview
>            From: "Stephen the Cook"
> <[EMAIL PROTECTED]>
>       2. RE: Treeview
>            From: "Tarakeshwar L"
> <[EMAIL PROTECTED]>
>       3. Re: Treeview
>            From: Mohamed Galal <[EMAIL PROTECTED]>
>       4. Re: Treeview
>            From: Mohamed Galal <[EMAIL PROTECTED]>
>       5. RE: Treeview
>            From: "Stephen the Cook"
> <[EMAIL PROTECTED]>
>       6. RE: Treeview
>            From: Mohamed Galal <[EMAIL PROTECTED]>
>       7. RE: Treeview
>            From: "Tarakeshwar L"
> <[EMAIL PROTECTED]>
> 
> 
>
________________________________________________________________________
>
________________________________________________________________________
> 
> Message: 1         
>    Date: Fri, 10 Sep 2004 07:51:27 -0500
>    From: "Stephen the Cook"
> <[EMAIL PROTECTED]>
> Subject: Treeview
> 
> How do I grab where the user clicked in a 4 node
> tree?  
> 
> Am I looking for a series like 5,2,4,1 or am I going
> to each node by
> name and diong it there?
> 
> TIA 
> 
> Stephen Russell
> S.R. & Associates
> Memphis, TN 38115
> 
> 901.246-0159
> 
> 
> 
>
________________________________________________________________________
>
________________________________________________________________________
> 
> Message: 2         
>    Date: Fri, 10 Sep 2004 18:45:28 +0530
>    From: "Tarakeshwar L"
> <[EMAIL PROTECTED]>
> Subject: RE: Treeview
> 
> Hi,
> 
> You can use the mouse down event to find out which
> node has been clicked by
> the user.
> 
> private void treeView1_MouseDown(object sender,
> System.Windows.Forms.MouseEventArgs e)
> {
>     TreeNode selectedNode = null;
>     selectedNode = treeView1.GetNodeAt(e.X,e.Y);
> }
> 
> The selectedNode will contain the Node that was
> clicked by the user.
> 
> 
> Regards,
> Tarakeshwar
> 
>   -----Original Message-----
>   From: Stephen the Cook
> [mailto:[EMAIL PROTECTED]
>   Sent: Friday, September 10, 2004 6:21 PM
>   To: [EMAIL PROTECTED]
>   Subject: [Microsofts_C_Sharp] Treeview
> 
> 
>   How do I grab where the user clicked in a 4 node
> tree?
> 
>   Am I looking for a series like 5,2,4,1 or am I
> going to each node by
>   name and diong it there?
> 
>   TIA
> 
>   Stephen Russell
>   S.R. & Associates
>   Memphis, TN 38115
> 
>   901.246-0159
> 
> 
> [This message contained attachments]
> 
> 
> 
>
________________________________________________________________________
>
________________________________________________________________________
> 
> Message: 3         
>    Date: Fri, 10 Sep 2004 06:57:59 -0700 (PDT)
>    From: Mohamed Galal <[EMAIL PROTECTED]>
> Subject: Re: Treeview
> 
> hi...
>  
> u can use the following
> 
> private void tv_AfterSelect(object sender,
> System.Windows.Forms.TreeViewEventArgs e)
> 
> {
> 
> TreeNode tn = ((TreeView)sender).SelectedNode;
> 
> /*
> 
> Do whatever u want
> 
> */
> 
> }
> hope this helps
> 
> Stephen the Cook <[EMAIL PROTECTED]>
> wrote:
> How do I grab where the user clicked in a 4 node
> tree?  
> 
> Am I looking for a series like 5,2,4,1 or am I going
> to each node by
> name and diong it there?
> 
> TIA 
> 
> Stephen Russell
> S.R. & Associates
> Memphis, TN 38115
> 
> 901.246-0159
> 
> 
> Yahoo! Groups SponsorADVERTISEMENT
> 
> 
> ---------------------------------
> Yahoo! Groups Links
> 
>    To visit your group on the web, go to:
> http://groups.yahoo.com/group/Microsofts_C_Sharp/
>   
>    To unsubscribe from this group, send an email to:
> [EMAIL PROTECTED]
>   
>    Your use of Yahoo! Groups is subject to the
> Yahoo! Terms of Service. 
> 
> 
>               
> ---------------------------------
> Do you Yahoo!?
> Yahoo! Mail - 50x more storage than other providers!
> 
> [This message contained attachments]
> 
> 
> 
>
________________________________________________________________________
>
________________________________________________________________________
> 
> Message: 4         
>    Date: Fri, 10 Sep 2004 07:17:48 -0700 (PDT)
>    From: Mohamed Galal <[EMAIL PROTECTED]>
> Subject: Re: Treeview
> 
> 
> 
> Mohamed Galal <[EMAIL PROTECTED]> wrote:hi...
> i didn't read the question carefully in the first
> time
>  
> u can use the following instead.
>  
> private int [4] Sequence;
> private int index = 0;
>  
> private void tv_AfterSelect(object sender,
> System.Windows.Forms.TreeViewEventArgs e)
> {
>     if(index < 4)
>     {
>         Sequence[index++] =
> ((TreeView)sender).SelectedNode.Index;
>     }
>     else
>     {
>         MessageBox("Sequence is:" +
>                                Sequence[0] +
>                                Sequence[1] +
>                                Sequence[2] +
>                                Sequence[3] );
>    }
>  
> }
>  
> hope this helps
>  
> Mohamed Galal
> 
> Stephen the Cook <[EMAIL PROTECTED]>
> wrote:
> How do I grab where the user clicked in a 4 node
> tree?  
> 
> Am I looking for a series like 5,2,4,1 or am I going
> to each node by
> name and diong it there?
> 
> TIA 
> 
> Stephen Russell
> S.R. & Associates
> Memphis, TN 38115
> 
> 901.246-0159
> 
> 
> 
> 
> ---------------------------------
> Do you Yahoo!?
> Yahoo! Mail - 50x more storage than other providers!
> 
> Yahoo! Groups SponsorADVERTISEMENT
> 
> 
> ---------------------------------
> Yahoo! Groups Links
> 
>    To visit your group on the web, go to:
> http://groups.yahoo.com/group/Microsofts_C_Sharp/
>   
>    To unsubscribe from this group, send an email to:
> [EMAIL PROTECTED]
>   
>    Your use of Yahoo! Groups is subject to the
> Yahoo! Terms of Service. 
> 
> 
> 
>               
> ---------------------------------
> Do you Yahoo!?
> Shop for Back-to-School deals on Yahoo! Shopping.
> 
> [This message contained attachments]
> 
> 
> 
>
________________________________________________________________________
>
________________________________________________________________________
> 
> Message: 5         
>    Date: Fri, 10 Sep 2004 09:49:52 -0500
>    From: "Stephen the Cook"
> <[EMAIL PROTECTED]>
> Subject: RE: Treeview
> 
> Thanks,  That is a good start.  Would you trap all
> of the hits as people
> went down the tree using stringbuilder?
>  
> I have Make | Model | Opening 
>  
> Allison  | 1000 EVS | RIGHT 
>  
> I need to trap 1000 EVS & Right in this case.
>  
> So how would I grab the 2 items?
>  
>  
> 
> Stephen Russell
> S.R. & Associates
> Memphis, TN 38115
> 
> 901.246-0159 
> 
> -----Original Message-----
> From: Tarakeshwar L
> [mailto:[EMAIL PROTECTED] 
> Sent: Friday, September 10, 2004 8:15 AM
> To: [EMAIL PROTECTED]
> Subject: RE: [Microsofts_C_Sharp] Treeview
> 
> 
> Hi,
>  
> You can use the mouse down event to find out which
> node has been clicked
> by the user.
>  
> private void treeView1_MouseDown(object sender,
> System.Windows.Forms.MouseEventArgs e)
> {
>     TreeNode selectedNode = null;
>     selectedNode = treeView1.GetNodeAt(e.X,e.Y);
> }
>  
> The selectedNode will contain the Node that was
> clicked by the user.
>  
>  
> Regards,
> Tarakeshwar
>  
> 
> -----Original Message-----
> From: Stephen the Cook
> [mailto:[EMAIL PROTECTED]
> Sent: Friday, September 10, 2004 6:21 PM
> To: [EMAIL PROTECTED]
> Subject: [Microsofts_C_Sharp] Treeview
> 
> 
> How do I grab where the user clicked in a 4 node
> tree?  
> 
> Am I looking for a series like 5,2,4,1 or am I going
> to each node by
> name and diong it there?
> 
> TIA 
> 
> Stephen Russell
> S.R. & Associates
> Memphis, TN 38115
> 
> 901.246-0159
> 
> 
> Yahoo! Groups Sponsor 
> 
> ADVERTISEMENT
>  
>
<http://us.ard.yahoo.com/SIG=12975r0oj/M=295196.4901138.6071305.3001176/
>
D=groups/S=1706426775:HM/EXP=1094908739/A=2128215/R=0/SIG=10se96mf6/*htt
> p://companion.yahoo.com> click here   
>  
>
<http://us.adserver.yahoo.com/l?M=295196.4901138.6071305.3001176/D=group
> s/S=:HM/A=2128215/rand=543473402>     
> 
> 
>   _____  
> 
> Yahoo! Groups Links
> 
> 
> *     To visit your group on the web, go to:
> http://groups.yahoo.com/group/Microsofts_C_Sharp/
>   
> 
> *     To unsubscribe from this group, send an email to:
> [EMAIL PROTECTED]
>
<mailto:[EMAIL PROTECTED]
> be> 
>   
> 
> *     Your use of Yahoo! Groups is subject to the Yahoo!
> Terms of
> Service <http://docs.yahoo.com/info/terms/> . 
> 
> 
> 
> 
> [This message contained attachments]
> 
> 
> 
>
________________________________________________________________________
>
________________________________________________________________________
> 
> Message: 6         
>    Date: Fri, 10 Sep 2004 07:52:47 -0700 (PDT)
>    From: Mohamed Galal <[EMAIL PROTECTED]>
> Subject: RE: Treeview
> 
> i don't seem to understand u, can u elaborate more?
> 
> Stephen the Cook <[EMAIL PROTECTED]>
> wrote:
> Thanks,  That is a good start.  Would you trap all
> of the hits as people went down the tree using
> stringbuilder?
>  
> I have Make | Model | Opening 
>  
> Allison  | 1000 EVS | RIGHT 
>  
> I need to trap 1000 EVS & Right in this case.
>  
> So how would I grab the 2 items?
>  
>  
> 
> Stephen Russell
> S.R. & Associates
> Memphis, TN 38115
> 
> 901.246-0159 
> 
> -----Original Message-----
> From: Tarakeshwar L
> [mailto:[EMAIL PROTECTED] 
> Sent: Friday, September 10, 2004 8:15 AM
> To: [EMAIL PROTECTED]
> Subject: RE: [Microsofts_C_Sharp] Treeview
> 
> 
> Hi,
>  
> You can use the mouse down event to find out which
> node has been clicked by the user.
>  
> private void treeView1_MouseDown(object sender,
> System.Windows.Forms.MouseEventArgs e)
> {
>     TreeNode selectedNode = null;
>     selectedNode = treeView1.GetNodeAt(e.X,e.Y);
> }
>  
> The selectedNode will contain the Node that was
> clicked by the user.
>  
>  
> Regards,
> Tarakeshwar
>  
> -----Original Message-----
> From: Stephen the Cook
> [mailto:[EMAIL PROTECTED]
> Sent: Friday, September 10, 2004 6:21 PM
> To: [EMAIL PROTECTED]
> Subject: [Microsofts_C_Sharp] Treeview
> 
> 
> How do I grab where the user clicked in a 4 node
> tree?  
> 
> Am I looking for a series like 5,2,4,1 or am I going
> to each node by
> name and diong it there?
> 
> TIA 
> 
> Stephen Russell
> S.R. & Associates
> Memphis, TN 38115
> 
> 901.246-0159
> 
> Yahoo! Groups SponsorADVERTISEMENT
> 
> 
> ---------------------------------
> Yahoo! Groups Links
> 
>    To visit your group on the web, go to:
> http://groups.yahoo.com/group/Microsofts_C_Sharp/
>   
>    To unsubscribe from this group, send an email to:
> [EMAIL PROTECTED]
>   
>    Your use of Yahoo! Groups is subject to the
> Yahoo! Terms of Service. 
> 
> 
>               
> ---------------------------------
> Do you Yahoo!?
> Yahoo! Mail Address AutoComplete - You start. We
> finish.
> 
> [This message contained attachments]
> 
> 
> 
>
________________________________________________________________________
>
________________________________________________________________________
> 
> Message: 7         
>    Date: Fri, 10 Sep 2004 20:28:16 +0530
>    From: "Tarakeshwar L"
> <[EMAIL PROTECTED]>
> Subject: RE: Treeview
> 
> MessageIf ur tree looks like this
> 
> |
> |__Make
> |
> |__Model
> |
> |__Opening
> |
> |__Allison
> |
> |__1000 EVS
> |
> |__Right
> 
> What you could do is store each of the mouse down in
> a string, When a item
> is pressed in the tree, just change the color of
> that item
> into Red and store that in a string, now with the
> next click make the next
> string as red and store that in a string, once u
> have both the
> strings use some condition statment. If there is a
> third click on the mouse
> then release both the redcolors and make the 2
> strings emtpy.
> 
> So eventually u will have.
> 
> 1) 1st Press 1000 Evs will become Red, It will be
> stored in string1
> 2) 2nd Press Right will become Red, It will be
> stored in string 2.
> 3) When the submit button is clicked, u check for
> both the string, if it
> satisfies ur condition then write your code.
> 4) If there is more than 2 clicks, release the color
> and the strings and
> wait for step 1 and step 2.
> 
> Using the red color will make the UI more easy to
> understand.
> 
> Regards
> Tarakeshwar
> 
>   -----Original Message-----
>   From: Stephen the Cook
> [mailto:[EMAIL PROTECTED]
>   Sent: Friday, September 10, 2004 8:20 PM
>   To: [EMAIL PROTECTED]
>   Subject: RE: [Microsofts_C_Sharp] Treeview
> 
> 
>   Thanks,  That is a good start.  Would you trap all
> of the hits as people
> went down the tree using stringbuilder?
> 
>   I have Make | Model | Opening
> 
>   Allison  | 1000 EVS | RIGHT
> 
>   I need to trap 1000 EVS & Right in this case.
> 
>   So how would I grab the 2 items?
> 
> 
>   Stephen Russell
>   S.R. & Associates
>   Memphis, TN 38115
> 
>   901.246-0159
> 
>     -----Original Message-----
>     From: Tarakeshwar L
> [mailto:[EMAIL PROTECTED]
>     Sent: Friday, September 10, 2004 8:15 AM
>     To: [EMAIL PROTECTED]
>     Subject: RE: [Microsofts_C_Sharp] Treeview
> 
> 
>     Hi,
> 
>     You can use the mouse down event to find out
> which node has been clicked
> by the user.
> 
>     private void treeView1_MouseDown(object sender,
> System.Windows.Forms.MouseEventArgs e)
>     {
>         TreeNode selectedNode = null;
>         selectedNode = treeView1.GetNodeAt(e.X,e.Y);
>     }
> 
>     The selectedNode will contain the Node that was
> clicked by the user.
> 
> 
>     Regards,
>     Tarakeshwar
> 
>       -----Original Message-----
>       From: Stephen the Cook
> [mailto:[EMAIL PROTECTED]
>       Sent: Friday, September 10, 2004 6:21 PM
>       To: [EMAIL PROTECTED]
>       Subject: [Microsofts_C_Sharp] Treeview
> 
> 
>       How do I grab where the user clicked in a 4
> node tree?
> 
>       Am I looking for a series like 5,2,4,1 or am I
> going to each node by
>       name and diong it there?
> 
>       TIA
> 
>       Stephen Russell
>       S.R. & Associates
>       Memphis, TN 38115
> 
>       901.246-0159
> 
> 
>           Yahoo! Groups Sponsor
>                 ADVERTISEMENT
> 
> 
> 
> 
> 
>
----------------------------------------------------------------------------
>     Yahoo! Groups Links
> 
>       a.. To visit your group on the web, go to:
>      
> http://groups.yahoo.com/group/Microsofts_C_Sharp/
> 
>       b.. To unsubscribe from this group, send an
> email to:
>       [EMAIL PROTECTED]
> 
>       c.. Your use of Yahoo! Groups is subject to
> the Yahoo! Terms of
> Service.
> 
> 
> 
> [This message contained attachments]
> 
> 
> 
>
________________________________________________________________________
>
________________________________________________________________________
> 
> 
> 
>
------------------------------------------------------------------------
> Yahoo! Groups Links
> 
> http://groups.yahoo.com/group/Microsofts_C_Sharp/
> 
>     [EMAIL PROTECTED]
> 
>  
>
------------------------------------------------------------------------
> 
> 
> 


=====

Everyone wants to win,few  prepare

 









__________________________________________________
Do You Yahoo!?
Tired of spam?  Yahoo! Mail has the best spam protection around 
http://mail.yahoo.com 


------------------------ Yahoo! Groups Sponsor --------------------~--> 
Make a clean sweep of pop-up ads. Yahoo! Companion Toolbar.
Now with Pop-Up Blocker. Get it for free!
http://us.click.yahoo.com/L5YrjA/eSIIAA/yQLSAA/XGgtlB/TM
--------------------------------------------------------------------~-> 

 
Yahoo! Groups Links

<*> To visit your group on the web, go to:
    http://groups.yahoo.com/group/Microsofts_C_Sharp/

<*> To unsubscribe from this group, send an email to:
    [EMAIL PROTECTED]

<*> Your use of Yahoo! Groups is subject to:
    http://docs.yahoo.com/info/terms/
 



Reply via email to