Olá Pessoal,
Tô precisando utilizar um FlexGrid editável e não tenho experiencia
em tornar o grid editável. Pesquisei e peguei uma dica postada na
sessão de dicas aqui do VbWeb.
Gostaria de editar/trabalhar somente uma coluna do grid e a função
publicada edita qualquer celula disponível...
Como posso trabalhar só com uma coluna ?
Veja a função :
Private Sub MSFlexGrid1_EnterCell()
text1.Visible = True
text1.Top = MSFlexGrid1.Top + MSFlexGrid1.CellTop
text1.Left = MSFlexGrid1.Left + MSFlexGrid1.CellLeft
text1.Width = MSFlexGrid1.CellWidth
text1.Text = MSFlexGrid1.Text
text1.Visible = True
text1.SetFocus
End Sub
Private Sub MSFlexGrid1_LeaveCell()
If MSFlexGrid1.MouseCol <> 7 Then
If text1.text <> "" Then
text1.Visible = False
MSFlexGrid1.TextMatrix(MSFlexGrid1.Row, MSFlexGrid1.Col) = text1.text
Else
text1.Visible = False
MSFlexGrid1.TextMatrix(MSFlexGrid1.Row, MSFlexGrid1.Col) = "NÃO"
End If
End If
End Sub
Agradeço qualquer ajuda
JGD