私はこのようなことをするつもりです、
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を使用しています
私はこのようなことをするつもりです、
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を使用しています
これを書くだけでこれを行うことができます
"path of my file which name is = c:\" & txt1.Text & "." & txt2.Text
メソッドを使用して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