Pizza Tutorial on nuBuilder 4.5
Posted: Sat Jan 16, 2021 5:13 pm
This is a tutorial in several videos.
1. Create the Customer Form in FastForm Builder and size it, laying it out as needed 2. View the table structure in nudb Since the table was created by NuBuilder, we need to set the mandatory fields manually in nudb with:
3. Insert some initial customer data records
Anatomy of the user interface interaction:
1. A Form is created
2. Browseable fields are listed
3. A tab is generated
4. Field objects with layout details are placed in the tab
5. Mandatory fields are manually set
6. Sample data is inserted
The set of SQL statements which when imported into the nubuilder4 database will recreate the entire user interaction above. Case insensitive search but with data case changed to search string's case:
1. Create the Customer Form in FastForm Builder and size it, laying it out as needed 2. View the table structure in nudb Since the table was created by NuBuilder, we need to set the mandatory fields manually in nudb with:
Code: Select all
ALTER TABLE `customer` CHANGE `cus_name` `cus_name` VARCHAR(1000) CHARSET utf8 COLLATE utf8_general_ci NOT NULL;
1. A Form is created
2. Browseable fields are listed
3. A tab is generated
4. Field objects with layout details are placed in the tab
5. Mandatory fields are manually set
6. Sample data is inserted
The set of SQL statements which when imported into the nubuilder4 database will recreate the entire user interaction above. Case insensitive search but with data case changed to search string's case: