ERR_NOT_INITIALIZED_STRING 4008 Not initialized string.

 

Hi All,

Does anyone know how I could find where this error is in my EA?

Does it represent a bug possibility in my EA?

What do this mean really?

thanks for your help!

R

 

When u declare a string variable, make sure to initialize it:

string str = "";      // declare and init a string variable
Reason: