Wondering if anyone else has noticed or encountered a strange behavior
with 'ProfileString' in PB2017 with running in/on Citrix?
The same code running on a Windows 7 PC (both 32 and 64 Bit PC's) using the
'ProfileString' command to navigate thru an INI file performs correctly.
But when placing that same code and same INI file in a Citrix environment
and the 'ProfileString' command is responding as value not found.
Example-
WIN.INI file has the following info in it.
[AppINI]
jc=C:\Windows\jc.ini
co=C:\Windows\co.ini
ejp=C:\Windows\ejp.ini
the following command-
string s_ini_file
s_ini_file = ProfileString ("win.ini", "AppINI", "ejp", "NOT FOUND" )
in Win 7 it returns
C:\windows\ejp.ini
in Citrix it returns
NOT FOUND
thoughts?