Now using the TelldusCore api.

This commit is contained in:
Stefan Persson 2009-09-13 14:23:59 +00:00
parent 79f44a4b9e
commit b1df94e99c
8 changed files with 68 additions and 43 deletions

View file

@ -158,7 +158,7 @@ namespace DeviceScheduler
{
ListViewItem item = lvwCommon.Items.Add(dev.Name,2);
item.SubItems.Add(dev.ID.ToString());
item.SubItems.Add(dev.Vendor);
item.SubItems.Add(dev.Protocol);
item.Tag = dev;
}
}
@ -214,7 +214,7 @@ namespace DeviceScheduler
Cursor = Cursors.WaitCursor;
System.Diagnostics.Process proc = new System.Diagnostics.Process();
string filename = System.IO.Path.Combine(path, "TelldusSetup.exe");
string filename = System.IO.Path.Combine(path, "TelldusCenter.exe");
proc.StartInfo.FileName = filename;
proc.StartInfo.WorkingDirectory = path;
proc.Start();