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
detailsList = JsonConvert.DeserializeObject
- >(json1);
foreach (details dets in detailsList)
{
label.Text = dets.id;
this.Controls.Add(label);
}
}
this is what i got now
Vishal JadavPosted May 26, 2016, 6:17 AM