Hello,
i have customer maintenance paper form which have many inputs filling by hand.
i have created windows forms which contains name,surname ..etc. input text boxes, date time input, check boxes.
back ground i have put the scanned image of the maintenance paper form put the each boxes to the filling places.
so i am filling the form and printing it.i wanted to keep the track of the forms so created sql table and many columns for each boxes, but this is not suitable for me each form different table, many computers and many updates when new company forms came.i am thinking is there a easy way to keep multiple box value in one sql table column.for example one string array will keep the values like
string[] arr1 = new string[] { "id", "textbox1.text", "textbox2.text", "textbox3.text", "checkbox1","checkbox2","datetime1.value" "thisboxempty"}
and insert into sql column like MForm it is ok but when i want to call back from id i want to bind it to the each line of the text in sql column with row id to the connected boxes back.
i am sorry may be i am not clear enough to express myself.