tiago882 0 Denunciar post Postado Janeiro 14, 2008 Bom dia, estou com a sequinte função onde ele me da erro no btn operator '=' is not defined fot typed 'system.web.UI.webcontrol.Button' and object Protected Sub Button3_Click(ByVal sender As Object, ByVal e As System.EventArgs) CheckBoxList1.Visible = True rafa.Visible = True Dim i As Integer = 13 Dim tseg As TextBox Dim btn As Button For i = 0 To 17 btn = Gridagenda.Rows(i).Cells(2).FindControl("Button3") If btn = sender as Button --------------------------------------------------------------- o erro referente a essa linha If CheckBoxList1.Items(0).Selected = True Then tseg = Gridagenda.Rows(i).Cells(2).FindControl("tseg") tseg.ForeColor = Drawing.Color.Yellow End If If CheckBoxList1.Items(1).Selected = True Then tseg = Gridagenda.Rows(i).Cells(2).FindControl("tseg") tseg.ForeColor = Drawing.Color.Blue End If If CheckBoxList1.Items(2).Selected = True Then tseg = Gridagenda.Rows(i).Cells(2).FindControl("tseg") tseg.ForeColor = Drawing.Color.Maroon End If If CheckBoxList1.Items(3).Selected = True Then tseg = Gridagenda.Rows(i).Cells(2).FindControl("tseg") tseg.ForeColor = Drawing.Color.Red End If End If Next End Sub Compartilhar este post Link para o post Compartilhar em outros sites
quintelab 91 Denunciar post Postado Janeiro 14, 2008 Mas o que você esta tentando fazer neste linha: If btn = sender as Button Nunca vi esse tipo de comparação... Compartilhar este post Link para o post Compartilhar em outros sites
tiago882 0 Denunciar post Postado Janeiro 14, 2008 no lugar dessa comparação If btn.ClientID("Button3") = sender Compartilhar este post Link para o post Compartilhar em outros sites