Hi,
I am trying to use Gurux DLMS UI .Net but facing the issue with the below Gurux code. It's giving the error like property does not exist.
//Clear old view.
foreach (Control it in UIPanel.Controls)
{
it.Hide();
}
UIPanel.Controls.Clear();
//Select new COSEM object. In this example we select clock.
GXDLMSClock clock = new GXDLMSClock();
IGXDLMSView selectedView = views[clock];
selectedView.Target = clock;
GXDlmsUi.UpdateProperties(clock, selectedView);
//Add DLMS COSEM view to UI panel.
UIPanel.Controls.Add((Form)selectedView);
// Facing the issue with the below code, so request you to give the help on this part like how to use and why it's giving error //
Show UI.
((Form)selectedView).Show();
// Facing the issue with the…
// Facing the issue with the below code, so request you to give the help on this part like how to use and why it's giving error //
Show UI.
((Form)selectedView).Show();
Hi, Is the view included to…
Hi,
Is the view included to views? Where are you exactly receiving this error and what is the error message?
BR,
Mikko
GXDlmsUi.UpdateProperties…
GXDlmsUi.UpdateProperties(clock, selectedView);
giving error
UpdateProperties method not available in GXDlmsUi
Hi, There is no…
Hi,
There is no UpdateProperties method in GXDlmsUi. Check your code.
BR,
Mikko