Structures and Fixed array Help

I am working on a program and I am declaring a structure:

Public Structure Header

#Region "Standard Header Fields"
Public Logo1() As Char
#End Region

I am trying to set up the code that calls this

Headervar.Logo1 = " "PadRight(Integer).ToCharArray

and I would like to set the integer in the PadRight section to be based off of the declared array size or size constraint.

Can anyone help me out on how to do this?

Comments

  • Hi,

    Try the following please.>>

    [code]
    Public Class Form1

    Public Structure Header
    #Region "Standard Header Fields"
    _
    Public Logo1() As Char
    #End Region
    End Structure

    Private Sub Example()

    Dim instance As New Header

    instance.Logo1 = " ".PadRight(instance.Logo1.Length).ToCharArray

    End Sub

    End Class
    [/code]

    Regards,

    DrM
Sign In or Register to comment.

Howdy, Stranger!

It looks like you're new here. If you want to get involved, click one of these buttons!

Categories

In this Discussion