The following is the CowSystem ERP Module Diagram

July 22, 2009
The following is the CowSystem ERP Module Diagram

July 20, 2009

July 17, 2009
The following is the Order Processing Flow Overview of the CowSystem ERP:

July 16, 2009
July 15, 2009
July 14, 2009
THe following is the Module Relationship within SD of the CowSystem ERP:

July 13, 2009
The following is the Module relationship of the CowSystemERP , a simple web-base ERP package that can be easily implemented for small-to-medium enterprise.

June 24, 2009
June 9, 2009
Sub GridView_RowUpdating(ByVal sender As Object, ByVal e As GridViewUpdateEventArgs) Handles GridView1.RowUpdating
Dim result As Boolean = False
Dim oldKey As String
Dim newKey As String
oldKey = e.Keys(0)
newKey = e.NewValues(0)
If oldKey <> newKey Then
If ValidateKey(newKey) Then
result = True
Else
result = False
e.Cancel = “True”
Exit Sub
End If
‘Return result
End If
End Sub
So far, I do not know how to get old value of Key fields in CustomValidator sub-routine. So I normally, write the actual validation routine within RowUpdating. If validation fails, it will stop the update process by setting e.Canel=”True”
June 8, 2009