do you mean character /, or string '/' or you mean backslash (\)?
/ in string = '/'
'/' in string = '''/''';
\ in string is = '\' or if you need it to be in mesage box and it is not end of line (new line character) then you can use this:
define text constant TextBackSlash as \
and than for example
message('this %1 is backslash',TextBackSlash);
will print 'this \ is backslash'
Comments
MVP - Dynamics NAV
My BLOG
NAVERTICA a.s.
/ in string = '/'
'/' in string = '''/''';
\ in string is = '\' or if you need it to be in mesage box and it is not end of line (new line character) then you can use this:
MVP - Dynamics NAV
My BLOG
NAVERTICA a.s.