Generated WinForms |
Quick Description |
1. List with Add, Edit Redirect & Delete
|
A windows form with a list of items shown in a grid with CRUD functionality. Adding or updating an item redirects to another form.
more info
Contains a DataGridView control that has CRUD (Create, Retrieve, Update, Delete) functionality.
Adding a new record opens a modal form
Updating an existing record opens a modal form
Delete functionality uses a Pop-up for delete confirmation
DataGridView control shows Sort Direction Image in the header
BindingNavigator placed in the header can go from page to page, or jump to another page
List retrieves data on demand using Skip/Take logic
One Windows Form is generated per table
|
2. Add New Record
|
A windows form with validated input controls used for adding a new record.
more info
Contains Validation
Contains Labels, TextBoxes, Combo Boxes, MaskedTextBoxes, and DateTimePickers
Contains bound Combo Box for foreign fields
You can get here from the "List with Add, Edit Redirect, & Delete" Form when clicking the Add New Record link
One Windows Form is generated per table
|
3. Update Record
|
A windows form with validated input controls used for updating an existing record.
more info
Contains Validation
Contains Labels, TextBoxes, Combo Boxes, MaskedTextBoxes, and DateTimePickers
Contains bound Combo Box for foreign fields
You can get here from the "List with Add, Edit Redirect, & Delete" Form when clicking the Add New Record link
One Windows Form is generated per table
|
4. Record Details (Read Only)
|
A windows form with read-only details of a record.
more info
Shows details of a record (Read-Only)
You can get here when clicking a foreign key link in a DataGridView
One Windows Form is generated per table
|
5. List (Read-Only)
|
A windows form with a list of items shown in a grid. No CRUD functionality.
more info
Contains a DataGridView Control. No CRUD functionality (read-only).
DataGridView control shows Sort Direction Image in the header
BindingNavigator placed in the header can go from page to page, or jump to another page
List retrieves data on demand using Skip/Take logic
One Windows Form is generated per table
|
6. List with Search
|
A windows form with a list of items shown in a grid with CRUD and Search functionality. You can filter grid results by entering values in the input controls shown on the header.
more info
Contains a DataGridView Control. No CRUD functionality (read-only).
Contains search functionality in the header of each searchable column
Search uses the "AND" operator to satisfy all search filters
DataGridView control shows Sort Direction Image in the header
BindingNavigator placed in the header can go from page to page, or jump to another page
List retrieves data on demand using Skip/Take logic
One Windows Form is generated per table
|
7. List with Inline Add and Edit
|
A windows form with a list of items shown in a grid with CRUD functionality. Add a new record and update an existing item inline with the grid.
more info
Contains a DataGridView Control.
Add a new record on the same form inline the header of the List.
Updates an existing record inline the item being edited.
DataGridView control shows Sort Direction Image in the header
BindingNavigator placed in the header can go from page to page, or jump to another page
List retrieves data on demand using Skip/Take logic
One Windows Form is generated per table
|
8. List with Master Detail (Grid)
|
A windows form with two grids with a master-detail relationship. No CRUD functionality. Clicking an item in the first grid loads related items in the second grid.
more info
Contains 2 DataGridView Controls with a Master-Detail relationship, one on top of the other. No CRUD functionality (read-only).
Clicking an item in the first (master) grid loads related items in the second (details) grid
Both DataGridView controls shows Sort Direction Image in the header
Both DataGridView uses Paging in the footer
Both list retrieves data on demand using Skip/Take logic
Both list retrieves data for every page or sort operation
One Windows Form is generated for each foreign key in each table
|
9. List filtered by a Combo Box
|
A windows form with a Combo Box as parent list and a child grid with a master-detail relationship. No CRUD functionality. Choosing an item in the combo box loads related items in the child grid.
more info
Contains a Combo Box (parent) and DataGridView Controls (child) with a Master-Detail relationship, No CRUD functionality (read-only).
Choosing an item in the combo box loads related items in grid
DataGridView controls shows Sort Direction Image in the header
BindingNavigator placed in the header of the DataGridView and can go from page to page, or jump to another page
The DataGridView (child list) retrieves data on demand using Skip/Take logic
List retrieves data on demand using Skip/Take logic
One Windows Form is generated for each foreign key in each table
|
10. Unbound Windows Form
|
A view with validated input controls which can be used for adding a new record or updating a record. Not bound/connected to the database so you will need to add your own code to bind it to the database.
more info
Windows Forms are not bound to the database
Contains Validation
Contains Labels, TextBoxes, Combo Boxes, MaskedTextBoxes, and DateTimePickers
Contains unbound Combo Box for foreign fields
Can be used when adding a new record or updating an existing record
One Windows Form is generated per table
|