If the string length in the GetRecipeNames method is lower than the default value, there will be a problem with the resulting Recipe file names.
For example; When the method in the link is called, let's say the defined string length is 19. In this case, the string content is corrupted as in the image.
Hi,
If the string length in the GetRecipeNames method is lower than the default value, there will be a problem with the resulting Recipe file names.
For example; When the method in the link is called, let's say the defined string length is 19. In this case, the string content is corrupted as in the image.
strArr: ARRAY[0..9] OF STRING(19);
https://content.helpme-codesys.com/de/libs/Recipe%20Management/Current/pou-RecipeManCommands/GetRecipeNames.html
The same problem does not occur when the string definition is made in the default size.
strArr: ARRAY[0..9] OF STRING;
FYI
Regards,
Imdat