I am having Delphi XE2 Project to write some values in Windows Registry. I am trying to run RegEdit in Delphi Environment. I have tried the following codes :
You don't use a valid string. When doing a line break in a string, you need to close it and concatinate it with the + sign.
e.g.:
AFunction(..., 'text1' + 'text2' + 'text3', ...);
or write the whole string parameter in one line.