tagCANDY CGI VBレスキュー(花ちゃん)の Visual Basic 6.0用 掲示板 [ツリー表示へ]   [Home]
一括表示(VB6.0)
タイトルName TestFile.Doc As NewFile.Docについて
記事No11587
投稿日: 2008/03/01(Sat) 11:18
投稿者Do_Shirouto
いつも教えて頂き有難う御座います。
また教えて頂きたいのですが、
'----------------------------
strPath = "C:\Documents and Settings\Owner\My Documents\Dog\"
wdDoc.SaveAs strPath & List1.Text
strA = strPath & List1.Text
strB = strPath & "済" & List1.Text
Name strA As strB
'List1.Text は".Doc"Fileです
'----------------------------
これでError75(パス名が無効です)が
出るのですが、どこがいけないのでしょうか?
ここの逆引きHelpに書いてある通り
Name strPath & List1.Text As strPath & "済" & List1.Text 
これでもダメでした。
wdDoc.SaveAs は出来ています。  
ご指導のほど宜しくお願いします

[ツリー表示へ]
タイトルRe: Name TestFile.Doc As NewFile.Docについて
記事No11588
投稿日: 2008/03/01(Sat) 11:54
投稿者花ちゃん
> strPath = "C:\Documents and Settings\Owner\My Documents\Dog\"

> wdDoc.SaveAs strPath & List1.Text

Debug.Print strPath & List1.Text


> strA = strPath & List1.Text
Debug.Print strA
> strB = strPath & "済" & List1.Text
Debug.Print strB

> Name strA As strB

Debug.Print の結果を確認して見て下さい。
それで解らなければ結果を投稿してください。

[ツリー表示へ]
タイトルRe^2: Name TestFile.Doc As NewFile.Docについて
記事No11589
投稿日: 2008/03/01(Sat) 12:12
投稿者Do_Shirouto
> > strPath = "C:\Documents and Settings\Owner\My Documents\Dog\"
>
> > wdDoc.SaveAs strPath & List1.Text
>
> Debug.Print strPath & List1.Text
>
>
> > strA = strPath & List1.Text
> Debug.Print strA
> > strB = strPath & "済" & List1.Text
> Debug.Print strB
>
> > Name strA As strB


>
> Debug.Print の結果を確認して見て下さい。
> それで解らなければ結果を投稿してください。

花ちゃんさん有難う御座いました。
Debug.Print は下記のようになりました。
変数には思うとおりの文字列が入っていると思うのですが?
個人情報はバレても何の関係もありませんので
編集はして有りません。
strAをKillしても良いですが、それも同じErrorがでます
'-------------------------------------
'Debug.Print strPath & List1.Text
C:\Documents and Settings\Owner\My Documents\Dog\07-12-16チワワ1052.doc
'Debug.Print strA
C:\Documents and Settings\Owner\My Documents\Dog\07-12-16チワワ1052.doc
'Debug.Print strB
C:\Documents and Settings\Owner\My Documents\Dog\済07-12-16チワワ1052.doc

[ツリー表示へ]
タイトルRe^3: Name TestFile.Doc As NewFile.Docについて
記事No11590
投稿日: 2008/03/01(Sat) 12:43
投稿者Do_Shirouto
> > > strPath = "C:\Documents and Settings\Owner\My Documents\Dog\"
> >
> > > wdDoc.SaveAs strPath & List1.Text
> >
> > Debug.Print strPath & List1.Text
> >
> >
> > > strA = strPath & List1.Text
> > Debug.Print strA
> > > strB = strPath & "済" & List1.Text
> > Debug.Print strB
> >
> > > Name strA As strB
>
>
> >
> > Debug.Print の結果を確認して見て下さい。
> > それで解らなければ結果を投稿してください。
>
> 花ちゃんさん有難う御座いました。
> Debug.Print は下記のようになりました。
> 変数には思うとおりの文字列が入っていると思うのですが?
> 個人情報はバレても何の関係もありませんので
> 編集はして有りません。
> strAをKillしても良いですが、それも同じErrorがでます
> '-------------------------------------
> 'Debug.Print strPath & List1.Text
> C:\Documents and Settings\Owner\My Documents\Dog\07-12-16チワワ1052.doc
> 'Debug.Print strA
> C:\Documents and Settings\Owner\My Documents\Dog\07-12-16チワワ1052.doc
> 'Debug.Print strB
> C:\Documents and Settings\Owner\My Documents\Dog\済07-12-16チワワ1052.doc
花ちゃんさん有難う御座いました。
解決いたしました。
wdDoc.Close がしてありませんでした。
お手数をおかけして誠に申し訳御座いませんでした。
有難う御座いました

[ツリー表示へ]