How to select data from dataset in to single value control
-
hi .. i hav an application , i want if i enter roll no in a textbox and then click button then corresponding name of that rollno will show in other textbox.. i want to do this using dataset when dataset is filled with table "stdrecord"..
-
hi .. i hav an application , i want if i enter roll no in a textbox and then click button then corresponding name of that rollno will show in other textbox.. i want to do this using dataset when dataset is filled with table "stdrecord"..
What I understand is user can type some text in a text box and now on click of some button, same text should go in some other text box. Suppose Textbox1 is first textbox and Textbox2 is second, then on click of button, you only have to write this; Textbox2.text = Textbox1.text; Thats it!!! and in which context are you talking about dataset... please elaborate... Ali http://aliwritings.blogspot.com/
-
hi .. i hav an application , i want if i enter roll no in a textbox and then click button then corresponding name of that rollno will show in other textbox.. i want to do this using dataset when dataset is filled with table "stdrecord"..
Hi, so if that was the case ..initially fill the dataset with the desired format ..like for the above case ..fill with number,name,.,,.etc etc and in textbox leave event handler write the code to traverse inside the dataset and if the match found for number get the corresponding name and fill the desired text box i hope u got!!! With Regards, Vinayaka Shenoy