-----------------------------------------------------------

New Message on BDOTNET

-----------------------------------------------------------
From: Corners-of-a-Circle
Message 4 in Discussion

Hi Ravi,   how about something like this. Make the Visible property of the Delete 
button to False initially. Then check for the value of the Status field on the Grid's 
ItemDataBound event and toggle the button's visibility accordingly.   Private Sub 
DataGrid1_ItemDataBound(ByVal sender As Object, ByVal e As  
System.Web.UI.WebControls.DataGridItemEventArgs) Handles DataGrid1.ItemDataBound
        Dim check_value As String
        If e.Item.ItemType = ListItemType.Item Or e.Item.ItemType = 
ListItemType.AlternatingItem Then                  check_value = e.Item.Cells(n).Text 
' Where cell(n) contains the Status field of the record
            If check_val = "" Then
                e.Item.Cells(m).Visible = True ' Here cell(m) is the cell which 
contains the delete button
            End If
        End If   HTH.

-----------------------------------------------------------

To stop getting this e-mail, or change how often it arrives, go to your E-mail 
Settings.
http://groups.msn.com/BDotNet/_emailsettings.msnw

Need help? If you've forgotten your password, please go to Passport Member Services.
http://groups.msn.com/_passportredir.msnw?ppmprop=help

For other questions or feedback, go to our Contact Us page.
http://groups.msn.com/contact

If you do not want to receive future e-mail from this MSN group, or if you received 
this message by mistake, please click the "Remove" link below. On the pre-addressed 
e-mail message that opens, simply click "Send". Your e-mail address will be deleted 
from this group's mailing list.
mailto:[EMAIL PROTECTED]

Reply via email to