Janus Grid Sample Form

Waqas Khan

New member
Joined
Jul 26, 2005
Messages
4
Programming Experience
Beginner
Hi, EveryOne

I need Janus Grid Sample Form, with column validation rules. i want
to make voucher entry form for my account system this grid is tottaly
new for me.

thx
 
Dear Waqas Khan i m not much expert but here is ur solution. if any one know better let me know as well


Private Sub GridEX1_UpdatingCell(ByVal sender As Object, ByVal e As Janus.Windows.GridEX.UpdatingCellEventArgs) Handles GridEX1.UpdatingCell

If e.Column.Index = 2 Then
If e.Value < 10 Then
MsgBox(e.Value)
e.Cancel =
True
End If
End If
End Sub
 
Back
Top