Message 1 of 2
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report
I have two parameters with the same name so I extracted the Guid for both and try to access one of them by element.Get_Parameter(Guid guid) but the code gives an error.
Here's completely what I wrote for it,
///get value of guid from datatable row backup = dr["Guid"].ToString(); //working fine and the backup is getting the guid value. Guid myguid = new Guid(backup); //not sure if it works as expected. room.Get_Parameter(myguid).set("j"); // this parameter is of type string. and this is what not executing.
Thanks, Ibrahim Naeem
Solved! Go to Solution.