I'm trying to write a simple function that reads the text from a designated hosted file and changes a label's text from " Waiting For Update Check " to " Update Available " depending on it's value. I was wondering how I could do so? I understand it somewhat, using " ; " as a delominater to read the text, I just don't know of how to actually write it, if someone could help me or lead me to a tutorial on the subject I'd be grateful.
There are many ways to read from a file, not necessarily using a delimiter such as ';'. It all depends on what you're reading. Numbers? Strings? A combination of both?
I'm not a C++ string expert though. I know that '\' meant an escape character and when you needed '\' literally, you needed to type it twice for each one. I don't know off-hand if C++ strings behave the same.