Dear all,
I have a problem with a good display of source code in the fivewin debugger. Instead of seeing a new line I can see only a space in fivewin debugger.
Example:
Function HelloWorld()
MsgInfo(Hello World!)
Return Nil
would be in my case:
Function HelloWorld() MsgInfo("Hello World!") Return Nil
I see this in the fivewin debugger, but also in notepad:
I searched on the internet and I think it has something to do with: \r\n (windows new line character) and \n (unix new line character).
Notepad++ and gvim are displaying the code correct, but notepad not. If I copy code from gvim to notepad and save it and then use fivewin debugger it displays the code well.
I have a lot of files which could have the same problem. Anybody ideas how I can solve this problem?, maybe there is a tool.
Pieter