Search found 25 matches

Search

by buec
Thu Jan 16, 2025 1:22 pm
Forum: Off-Topic
Topic: Unread topic that does not exist anymore
Replies: 7
Views: 7874

Re: Unread topic that does not exist anymore

I have the same problem.

Best regards
Christoph
by buec
Wed Feb 28, 2024 7:29 am
Forum: HowTos
Topic: How to read the timestamp of a datapoint in Ctrl?
Replies: 3
Views: 2128

Re: How to read the timestamp of a datapoint in Ctrl?

You can read the timestamp from the _online.._stime attribute.
by buec
Tue May 16, 2023 12:24 pm
Forum: Bugs / Problems
Topic: Username restrictions
Replies: 6
Views: 7127

Re: Username restrictions

From my point of view, a '.' must be allowed in the user name. This is very common in ActiveDirectory environments. I see the problem more in the fact that the user settings derive the DP from the user name and not e.g. the user id.

Best regards
Christoph
by buec
Tue Dec 13, 2022 12:12 pm
Forum: Features / Solutions
Topic: SQL Query to extract out the description along with value
Replies: 3
Views: 13183

Re: SQL Query to extract out the description along with value

Also dpGetAllComments() coud be useful, if you have to filter comments.
by buec
Tue Sep 07, 2021 9:54 am
Forum: HowTos
Topic: embedded DP types in queries
Replies: 5
Views: 8883

Re: embedded DP types in queries

Have a look at the function dpGetRefsToDpType. It may help you.
by buec
Thu Nov 05, 2020 3:32 pm
Forum: Bugs / Problems
Topic: 3.17 Setup Failed
Replies: 2
Views: 3978

Re: 3.17 Setup Failed

I had the same problem when the digital signature of the installation file was corrupt. After a new download of the installation file it worked.
In Windows you can check the digital signature in the file properties.

Best regards
Christoph
by buec
Wed Aug 26, 2020 4:00 pm
Forum: Features / Solutions
Topic: User Defined Icon in Para module
Replies: 13
Views: 19482

Re: User Defined Icon in Para module

On the script editor screenshot, it looks like your script file name starts with space.

Best regards
Christoph
by buec
Thu Nov 21, 2019 12:10 pm
Forum: HowTos
Topic: Modify XML panels with CONTROL
Replies: 1
Views: 3650

Modify XML panels with CONTROL

I have to modify XML panels with CONTROL. When I save the panels with fputs, the line endings are changed from LF to CR/LF. When I use xmlDocumentToFile, the line endings are preserved as LF but empty XML elements are shortened. Variant 1: fileToString( sPath, sFileData ); // replace icon path in sF...
by buec
Wed Nov 20, 2019 12:27 pm
Forum: Bugs / Problems
Topic: Combination of string methods
Replies: 0
Views: 9259

Combination of string methods

If string methods are combined, only the first one will be executed. main() { string s = "ABC"; DebugN( s.toLower( ).endsWith( "C" ) ); // returns "abc" instead of false DebugN( s.toLower( ).endsWith( "c" ) ); // returns "abc" instead of true } Unfor...
by buec
Wed Nov 20, 2019 11:20 am
Forum: Bugs / Problems
Topic: Return value string.replace( )
Replies: 1
Views: 3835

Return value string.replace( )

According to the help, string.replace(string before, string after) returns an int value. Unfortunately, there is no description of what this int represents. I assumed it was the number of replaced elements like strreplace( ). But the function always returns 0, no matter if something was replaced or ...