Click here to Skip to main content
15,922,696 members

Comments by Member 12547339 (Top 5 by date)

Member 12547339 26-May-16 7:15am View    
Thanks dude ! it worked. Mind if you can help me out getting the buttons next to the users?

for (int i = 0; i < detailsList; i++)
{

Button button = new Button();
button.Location = new Point(200, );
button.Text = "Off";
button.Tag = i;
button.BackColor = Color.Red;
this.Controls.Add(button);

button.Click += button_Click;
}

this is what I have now.
Member 12547339 26-May-16 5:19am View    
The json has to be random, because when I login with another uuid. I need to show up different usernames.
Member 12547339 26-May-16 4:42am View    
?
Member 12547339 26-May-16 4:25am View    
I want to show all the 3 names on my form. Right now it only shows up the first "Jeff"
Member 12547339 26-May-16 4:18am View    
Json :

[
{
"id": 1,
"fname": "Jeff",
},
{
"id": 1,
"fname": "Jan",
},
{
"id": 1,
"fname": "Piet",
}
]