0

私はこのようなことをするつもりです、

If txt1.Text = "A" And txt2.Text = "B" Then
"path of my file which name is = c:/A.B"
End If

If txt1.Text = "C" And txt2.Text = "D" Then
"path of my file which name is = c:/C.D"
End If

どうやってこのようなことをするつもりですか?私はvb.netを使用しています

4

3 に答える 3

0

これを書くだけでこれを行うことができます

"path of my file which name is = c:\" & txt1.Text & "." & txt2.Text
于 2013-09-11T05:17:53.760 に答える
0

メソッドを使用してString.Formatそれらを連結します。

Dim path As String = String.Format("c:/{0}.{1}", txt1.Text, txt2.Text)

関数:

Private Function ConPath(a As String, b As String) As String
  Return String.Format("c:/{0}.{1}", a, b)
End Function
于 2013-09-11T05:01:57.660 に答える