Hi
I have two Combo Box 1st one is Shape & 2nd one is Size, If I click on Shape data will come from database(Example If i select Oval Shape), then Box will automatically selected some shape (example 15 X 32 i.e Height & Width) from Database(SQL). There is two Input box namely Height and Width, Both input box show the same height & width that was selected.
Please tell me the how to do this.. Please show me how to create database(SQL) for that.
Thanks..
Loading
Piyush PansuriyaPosted Apr 30, 2015, 9:33 AM
You have to create table with these fields like,
SHAPE_ID int (PK)
SHAPE_TYPE nvarchar(50)
HEIGHT int
WIGHT int
Now have to make a query using filter with SHAPE_TYPE. that will return data as per you pass shape type using parameter.