From 61173c1b58efa79c0ba6b08348d2796a249d0186 Mon Sep 17 00:00:00 2001 From: Norbert Thiebaud Date: Sat, 1 Sep 2012 09:51:27 -0500 Subject: move help structure one directory up Change-Id: Ie970e39fbb6795a92d9fdd13510409d7dcd071bc --- source/text/sbasic/shared/03020401.xhp | 74 ++++++++++++++++++++++++++++++++++ 1 file changed, 74 insertions(+) create mode 100644 source/text/sbasic/shared/03020401.xhp (limited to 'source/text/sbasic/shared/03020401.xhp') diff --git a/source/text/sbasic/shared/03020401.xhp b/source/text/sbasic/shared/03020401.xhp new file mode 100644 index 0000000000..6ea00b311a --- /dev/null +++ b/source/text/sbasic/shared/03020401.xhp @@ -0,0 +1,74 @@ + + + + + + + + +ChDir Statement [Runtime] +/text/sbasic/shared/03020401.xhp + + +Sun Microsystems, Inc. +converted from old format - fpe + + + +
+ChDir statement + +ChDir Statement [Runtime] +Changes the current directory or drive. +
+
+This runtime statement currently does not work as documented. See this issue for more information. +
+Syntax: +ChDir Text As String +Parameters: + +Text: Any string expression that specifies the directory path or drive. +If you only want to change the current drive, enter the drive letter followed by a colon. + + + +Example: +Sub ExampleChDir +Dim sDir1 as String , sDir2 as String +sDir1 = "c:\Test" +sDir2 = "d:\private" +ChDir( sDir1 ) +msgbox CurDir +ChDir( sDir2 ) +msgbox CurDir +end sub + +
-- cgit v1.2.3