My Specific requirement is as follows:
To make a 12x12 table with column headers as 50,52,54,56,58,60,62,64,66,68,70,72
row headers as 290,300,310,320,330,340,350,360,370,380,390.
A portion of table looks like:
50 52 54 56 58 60
290 -5 -3 -3 -5 -2 -1
300 2 3 4 3 1 6
310 2 1 8 1 9 0
320 6 2 5 1 8 2
330 1 4 1 5 1 0
340 9 1 0 1 7 8
Firstly, how do i create this table via table control without using csv/xml??
Secondly,how do i add/remove row/column headers and other data??
Thirdly,with reference from two combo boxes on the form,one giving column input and other giving the row input, how do I display the result in a textbox/label.For e.g,if one combobox gives input as 58 and other combobox as 320, how will textbox/label indicate 8,taking reference from the above table??
I'm sure its very simple for most of you.Will be very grateful for your replies.
Harry