0
please check "do you like this answer" on my post which helped you :)
0
It worked, thank you so much
0
Thanks I will try that. If it doesn't work I will let you know
0
Just Bind the Text Boxes and Fields in Different Tabs to Database Fields which you retrived in DataSet.
it will work because all the fields are on same form no matter its on Different tabs :)
//Define in Global Scope
DataSet ds = new DataSet();
|
//Now Bind The TextBoxes etc to DataSet Table Which is Filled From Database
textBox1.DataBindings.Add("Text",ds.Tables[0],"CustometName");
textBox2.DataBindings.Add("Text"ds.Tbales[0],"CarId");
|
and Move Records By CurrencyManager :)
thats it :)
if my answer helped you please mark "do you like this answer" :)
0
I'm using Visual Studio 2010, there wasn't a topic choice for that.
Here's an example: the titles at the top are the tab names. Let's say I'm looking at Brandon. I'd like no matter which tab I go on it's still his info.
# |
Customer |
Car Details |
Payment |
Contact details |
1 |
Tara |
[many fields] |
[many fields] |
[many fields] |
2 |
John |
[many fields] |
[many fields] |
[many fields] |
3 |
Brandon |
[many fields] |
[many fields] |
[many fields] |
4 |
Valerie |
[many fields] |
[many fields] |
[many fields] |
5 |
Jenny |
[many fields] |
[many fields] |
[many fields] |
0
Wizard control is Available in Asp.net on Which Environment you are workiong on Windows Form or Asp.net ??
0
what do you mean on the same record?
0
There's a wizard control?
0
Friend,
Why dont you use Wizard Control it will be nice to collect data by different sections :)