AddEnter
Adding Text with Hard Carriage Return ( ENTER )
** ENTER code is chr(13)+chr(10)
Examples 1 :
************
clear
? "hello .... "+chr(13)+chr(10)+"This second row ...."+chr(13)+chr(10)+"This is third row .... "
return
** end
Examples 2 :
************
clear
? "hello .... "+AddEnter+"This second row ...."+AddEnter+"This is third row .... "
Messagebox("hello .... "+AddEnter+;
"This second row ...."+AddEnter+;
"This is third row .... ")
return
function AddEnter()
return chr(13)+chr(10)
** end
19.05.2008. 10:41
This article hasn't been commented yet.
Write a comment
* = required field