Re: BC30518:Overload resolution failed because no accessible 'Join' can be called with these arguments
- From: "Herfried K. Wagner [MVP]" <hirf-spam-me-here@xxxxxx>
- Date: Sat, 16 Feb 2008 00:10:39 +0100
"Bart" <b@xxx> schrieb:
i get the error "BC30518:Overload resolution failed because no accessible 'Join' can be called with these arguments"
at line: hvd = Join(hvertp, ",")
Any idea what's wrong here?
Thanks
bart
Dim i, hvertp(5), x As Integer
Dim hvd As String
For i = 0 To 5
x = x + 1
hvertp(i) = x
Next
hvd = Join(hvertp, ",")
The first parameter of 'Join' must be either an array of string ('String()') or an array of object ('Object()').
--
M S Herfried K. Wagner
M V P <URL:http://dotnet.mvps.org/>
V B <URL:http://dotnet.mvps.org/dotnet/faqs/>
.
- Follow-Ups:
- References:
- Prev by Date: Re: Printing tutorial
- Next by Date: Why don't I see ContextMenu in the form's property list???
- Previous by thread: BC30518:Overload resolution failed because no accessible 'Join' can be called with these arguments
- Next by thread: Re: BC30518:Overload resolution failed because no accessible 'Join' can be called with these arguments
- Index(es):
Relevant Pages
|