TECHNOLOGIES
FORUMS
JOBS
BOOKS
EVENTS
INTERVIEWS
Live
MORE
LEARN
Training
CAREER
MEMBERS
VIDEOS
NEWS
BLOGS
Sign Up
Login
No unread comment.
View All Comments
No unread message.
View All Messages
No unread notification.
View All Notifications
Answers
Post
An Article
A Blog
A News
A Video
An EBook
An Interview Question
Ask Question
Forums
Monthly Leaders
Forum guidelines
a bcd
NA
1
7.7k
How do i show up a value from json
May 24 2016 8:26 AM
private void Form2_Load(object sender, EventArgs e){
Location = new Point(Screen.PrimaryScreen.WorkingArea.Right - Width,
Screen.PrimaryScreen.WorkingArea.Bottom - Height);
Label label = new Label();
label.Location = new Point(13, 30);
var json1newWebClient().DownloadString("http://dev.ibeaconlivinglab.com:1881/companybyuuid?uuid=" + label.Text);
List<details> detailsList = JsonConvert.DeserializeObject<List<details>>(json1);
foreach (details dets in detailsList)
{
label.Text = dets.id;
this.Controls.Add(label);
}
}
this is what i got now
Reply
Answers (
1
)
Changes in my program
Tree node event handaling