BC30518:Overload resolution failed because no accessible 'Join' can be called with these arguments

Collapse
This topic is closed.
X
X
 
  • Time
  • Show
Clear All
new posts
  • Bart

    BC30518:Overload resolution failed because no accessible 'Join' can be called with these arguments

    Hi,

    i get the error "BC30518:Overlo ad 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, ",")






  • Herfried K. Wagner [MVP]

    #2
    Re: BC30518:Overloa d resolution failed because no accessible 'Join' can be called with these arguments

    "Bart" <b@b.dschrieb :
    i get the error "BC30518:Overlo ad 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/>

    Comment

    • Bart

      #3
      Re: BC30518:Overloa d resolution failed because no accessible 'Join' can be called with these arguments

      thanks for replying...

      "Herfried K. Wagner [MVP]" <hirf-spam-me-here@gmx.atschr eef in bericht
      news:%23hE46fCc IHA.4696@TK2MSF TNGP05.phx.gbl. ..
      "Bart" <b@b.dschrieb :
      >i get the error "BC30518:Overlo ad 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/>

      Comment

      Working...