Abid Ali
Abid Ali

Reputation: 11

Master/ Detail Form using Datagridviewcontrol (DevExpress) in VB.Net

I need to create Master/Detail Form having (Dev Express) Datagridviewcontrol in VB.Net, that should have Insert, update and delete function.

Currently, I have developed a master/detail form that is working well upto data display, but I want to add three events for both master and detail (Insert, Update and Delete)

Upvotes: 0

Views: 789

Answers (1)

ljubomir
ljubomir

Reputation: 1525

You can find comprehensive information on the DevExpress documentation page for DataGrid here

From my experience with DevExpress controls, these editors support in-place editing and management of data supporting all CRUD operations, so it shouldn't be a problem for you to find a simple example and go step by step until you apply the same settings to your code.

This list of examples and documentation can be a good starting point.

Upvotes: 1

Related Questions