Why is my default Culture Info changing

CurrentCulture is the culture of the thread, which is normally the culture of the OS, unless overridden. I suppose some other QAction sets the Thread culture to InvariantCulture. Depending on …

How to conditionally compile logging information in an automation script

Besides using the DEBUG define, you could check at runtime if the current assembly is compiled in DEBUG with the following code: var assembly = Assembly.GetExecutingAssembly(); bool isDebug= assembly.GetCustomAttributes(false).OfType<DebuggableAttribute>().Any(da => …

SLNET query failover mechanism

Hi, You can request the status of the failover with this message. FailoverConfigMessage fc = engine.SendSingleResponseMessage(new GetInfoMessage(yourDataMinerID, InfoType.FailoverConfig)) as FailoverConfigMessage; DmsAgent[] agents = fc.Agents; If you loop through the agents, …

Forcing Users to Enter a Password

I understand the additional security layer for local users where pw is not saved, but what would be the benefit for domain users in your scenario? I mean, one of …

Exporting an alarm template to xls

Hi Mark, Normally if you right click on the header , where you see MON PARAMETER NAMES you should be able export all parameter data. Is that where you’re after?