문제

Where did I mess up this syntax? testname is returning as an empty string. TestType is a Combobox, and TestType.Value in this case is "TE" (confirmed with the debugger)

Dim testname    As String
If Not IsNull(TestType.Value) Then (testname = " & TestType.Value & ")
도움이 되었습니까?

해결책

I'm surprised this even ran for you. I can't get it to compile. You can't wrap an entire line in parentheses.

If Not IsNull(TestType.value) Then testname = " & TestType.Value & "
라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 StackOverflow
scroll top