VBScript - " \ n"在文件路径中

时间:2015-05-14 04:57:24

标签: vbscript

我希望按消息框显示"c:\project\ndev",但结果打印"\n"为新行,因此实际结果为"c:\project" + new line + "dev" 谁知道如何对待这个案子?我已经花了那么多时间,但仍然没有解决方案。

1 个答案:

答案 0 :(得分:0)

我在Windows 8机器上调用msgbox函数时尝试了两种变体。

选项1 - 使用sub procedure

x=msgbox("c:\project\ndev",0,"Your drive letter information")

结果

enter image description here

选项2 - 使用普通的msgbox调用。

msgbox("c:\project\ndev")

结果:

enter image description here