Click here to Skip to main content
15,886,748 members
Home / Discussions / C#
   

C#

 
GeneralRe: Short filename Pin
bouli27-May-05 10:55
bouli27-May-05 10:55 
GeneralRe: Short filename Pin
John Fisher27-May-05 11:48
John Fisher27-May-05 11:48 
GeneralRe: Short filename Pin
bouli27-May-05 11:51
bouli27-May-05 11:51 
GeneralRe: Short filename Pin
John Fisher27-May-05 12:21
John Fisher27-May-05 12:21 
GeneralRe: Short filename Pin
bouli27-May-05 12:40
bouli27-May-05 12:40 
GeneralRe: Short filename Pin
John Fisher27-May-05 17:18
John Fisher27-May-05 17:18 
GeneralRe: Short filename Pin
Niklas Ulvinge27-May-05 11:18
Niklas Ulvinge27-May-05 11:18 
GeneralSimple Data BInding Problem Pin
goldoche27-May-05 10:10
goldoche27-May-05 10:10 
Hi, I have this database that contains 3 tables, and I want to bind its contents to textboxes. I'm able to bind them correctly (I see the values in the TextBoxes) but I can't update them when I select another row of a given table. I'll explain what I do.

I have a Next and a Previous button. When I push the Next, I do the following:

BindingManagerBase bm = BindingContext[networkDataSet.Tables["TableOne"]];
if(bm != null && bm.Position < bm.Count -1)
   bm.Position++;
CurrencyManager cm = bm as CurrencyManager;
if(cm != null)
   cm.Refresh();


The code executes, the Position increments, but doesn't update the TextBoxes with the values contained in the next Rows...

What do I do wrong?

Thanks!!!
GeneralSerialize a Queue Collection Pin
Waleed Eissa27-May-05 9:42
Waleed Eissa27-May-05 9:42 
GeneralRe: Serialize a Queue Collection Pin
MoustafaS27-May-05 9:50
MoustafaS27-May-05 9:50 
GeneralRe: Serialize a Queue Collection Pin
Waleed Eissa27-May-05 9:57
Waleed Eissa27-May-05 9:57 
GeneralRe: Serialize a Queue Collection Pin
Marc Clifton27-May-05 9:55
mvaMarc Clifton27-May-05 9:55 
GeneralRe: Serialize a Queue Collection Pin
Waleed Eissa27-May-05 10:01
Waleed Eissa27-May-05 10:01 
GeneralRe: Serialize a Queue Collection Pin
Marc Clifton27-May-05 10:46
mvaMarc Clifton27-May-05 10:46 
GeneralRe: Serialize a Queue Collection Pin
Waleed Eissa27-May-05 11:09
Waleed Eissa27-May-05 11:09 
GeneralDrop Down List Box Pin
MarkMokris27-May-05 8:11
MarkMokris27-May-05 8:11 
GeneralRe: Drop Down List Box Pin
Luis Alonso Ramos27-May-05 9:02
Luis Alonso Ramos27-May-05 9:02 
GeneralRe: Drop Down List Box Pin
Green Fuze27-May-05 10:19
Green Fuze27-May-05 10:19 
GeneralRe: Drop Down List Box Pin
MoustafaS28-May-05 0:27
MoustafaS28-May-05 0:27 
GeneralComma Seperated String Pin
Tridith27-May-05 7:51
Tridith27-May-05 7:51 
GeneralRe: Comma Seperated String Pin
rocky_pulley27-May-05 7:56
rocky_pulley27-May-05 7:56 
GeneralRe: Comma Seperated String Pin
Tridith27-May-05 9:16
Tridith27-May-05 9:16 
GeneralSave Thumbnail Image to File Pin
handa2927-May-05 6:54
handa2927-May-05 6:54 
GeneralRe: Save Thumbnail Image to File Pin
Raja Sekhar Amirapu27-May-05 19:22
Raja Sekhar Amirapu27-May-05 19:22 
GeneralRe: Save Thumbnail Image to File Pin
handa2928-May-05 3:58
handa2928-May-05 3:58 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.