Hi , I'm a beggener in C# and i have an assignment about Linked List, i have been asked to do it in GUI .

i managed to add the node and move around one to another, now i am suppose to update the node but really don't have clue how to do that with GUI

i just need to update the TextBox values:
(NTB.Text, Convert.ToInt32(PTB.Text), addressT.Text);
using my linked list "this":
list[currentRecord]

private void button3_Click(object sender, EventArgs e)
        {
            xxxxxxxxxxxxxxxxxxxxxx;
        }

Recommended Answers

All 3 Replies

anyone to help .... :(

Hi , I'm a beggener in C# and i have an assignment about Linked List, i have been asked to do it in GUI .

i managed to add the node and move around one to another, now i am suppose to update the node but really don't have clue how to do that with GUI

i just need to update the TextBox values:
(NTB.Text, Convert.ToInt32(PTB.Text), addressT.Text);
using my linked list "this":
list[currentRecord]

private void button3_Click(object sender, EventArgs e)
        {
            xxxxxxxxxxxxxxxxxxxxxx;
        }

i managed to add the node and move around one to another, now i am suppose to update the node but really don't have clue how to do that with GUI

How is your "node" defined? We cannot really tell you how to interface it with the GUI without knowing this...

Be a part of the DaniWeb community

We're a friendly, industry-focused community of developers, IT pros, digital marketers, and technology enthusiasts meeting, networking, learning, and sharing knowledge.