Code: Select all
#LF = Chr(10)
#CR = Chr(13)
#CRLF = Chr(13) + Chr(10)
Anybody got any more?
Code: Select all
#LF = Chr(10)
#CR = Chr(13)
#CRLF = Chr(13) + Chr(10)
Code: Select all
#LF$ = Chr(10)
#CR$ = Chr(13)
#CRLF$ = Chr(13) + Chr(10)
#LFCR$ =Chr(10) + Chr(13)
#TAB$ = Chr(9)
#ESC$ = Chr(27)
....
...
Code: Select all
D:\PureBasic\Compilers\PBCompiler PureBasic.pb /RESIDENT PureBasic_x86.res
Code: Select all
D:\PureBasic\Compilers\PBCompiler MyResident.pb /RESIDENT MyResident.res
Code: Select all
#LF$ = Chr(10)
#CR$ = Chr(13)
#CRLF$ = Chr(13) + Chr(10)
#LFCR$ = Chr(10) + Chr(13)
#TAB$ = Chr(9)
#ESC$ = Chr(27)
Code: Select all
MessageRequester("Title","ABC"+#TAB$+"DEF"+#CRLF$+"GHI"+#TAB$+"JKL")
Judging for your posts i think you are a man, but just in case ...who is a woman ?
I'm a man, in French Dominique is for both !
Why don't you simply build your own .res file with all constants, structures you aften need ?
Nice! what about:Danilo wrote:added for next version:works fine:Code: Select all
#LF$ = Chr(10) #CR$ = Chr(13) #CRLF$ = Chr(13) + Chr(10) #LFCR$ = Chr(10) + Chr(13) #TAB$ = Chr(9) #ESC$ = Chr(27)
Syntax Highlighting corrected.Code: Select all
MessageRequester("Title","ABC"+#TAB$+"DEF"+#CRLF$+"GHI"+#TAB$+"JKL")
Code: Select all
#DOUBLEQUOTE$ = Chr(34)