obtain value from functio + array

Collapse
This topic is closed.
X
X
 
  • Time
  • Show
Clear All
new posts
  • Don Quijote de Nicaragua

    obtain value from functio + array

    Hi everyone, How I get values resulting from this function:

    Private Function MyArrayF_Return Value() As String()
    Dim astrTemp() As String
    ' >Inicializar y llenar valores
    ReDim astrTemp(2)
    astrTemp(0) = "Valor 1"
    astrTemp(1) = "Valor 2"
    astrTemp(2) = "Valor 3"
    ' >retornar valores
    MyArrayF_Return Value = astrTemp
    End Function
    ////////////////////////
    Spanish:
    Hola a todos como puedo obtener los valores resultantes de esta
    funcion que retorna un array.
    Saludos.
    Don Quijote de Nicaragua.
    Elder Soto.
  • Mark Rae [MVP]

    #2
    Re: obtain value from functio + array

    "Don Quijote de Nicaragua" <eldersoto@gmai l.comwrote in message
    news:9755d259-f6a5-4a37-9fd4-aacc7b6d0033@r6 6g2000hsg.googl egroups.com...
    Hi everyone, How I get values resulting from this function:
    Dim strReturn() As String = MyArrayF_Return Value()


    --
    Mark Rae
    ASP.NET MVP


    Comment

    • Don Quijote de Nicaragua

      #3
      Re: obtain value from functio + array

      Thanks You.
      Gracias.
      Don Quijote de Nicaragua.

      On 27 jul, 04:36, "Mark Rae [MVP]" <m...@markNOSPA Mrae.netwrote:
      "Don Quijote de Nicaragua" <elders...@gmai l.comwrote in messagenews:975 5d259-f6a5-4a37-9fd4-aacc7b6d0033@r6 6g2000hsg.googl egroups.com...
      >
      Hi everyone, How I get values resulting from this function:
      >
      Dim strReturn() As String = MyArrayF_Return Value()
      >
      --
      Mark Rae
      ASP.NET MVPhttp://www.markrae.net

      Comment

      Working...