Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • Home
  • SEARCH
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 7873855
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 3, 20262026-06-03T02:38:08+00:00 2026-06-03T02:38:08+00:00

I am looking at some old VB6 code. I am new to VB and

  • 0

I am looking at some old VB6 code. I am new to VB and I come from a C/Java background, so I don’t understand some of the assignment statements. Here is one example –

     Private Type UGH
       Rsp(3) As Byte
       ProgramId(7) As Byte
       RID(7) As Byte
       TID(3) As Byte
       FL(39) As Byte
    End Type
    Private UHeader As UGH

Later, the assignment takes place as follows-

    With UHeader
    StringToByteArray UHeader.ProgramId(), "ABCDPQRS"

My question is, why is the parenthesis used after ProgramId in the above assignment? To me it seems like a function call, but it obviously is not a function call. Then what is it?

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-06-03T02:38:09+00:00Added an answer on June 3, 2026 at 2:38 am

    Well it is not actually needed. Calling the same line without the parenthesis will do exactly the same thing. The reason it is allowed is because it is a byte array.

    Maybe rewriting the line like this will make it more readable:

    call StringToByteArray(UHeader.ProgramId(), "ABCDPQRS")
    

    But this is also valid:

    call StringToByteArray(UHeader.ProgramId, "ABCDPQRS")
    

    It would probably make more sense to you if the StringToByteArray method was a function instead of a subroutine:

    Private Function StringToByteArray(ByVal strValue As String) As Byte()
        'conversion code left out
    End Function
    

    Then you can call it like this:

    UHeader.ProgramId() = StringToByteArray("ABCDPQRS")
    

    or this:

    UHeader.ProgramId = StringToByteArray("ABCDPQRS")
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I'm looking at some legacy VB6 code (years+years old, before my time) which runs
Looking at some old code in Java 1.4 but I'm unfamiliar with Java. Does
I'm charged with porting some old code to a new platform and I'm looking
I have been looking into refactoring some old code into a new WCF service,
Ahoy! I've been looking into updating some old test code in an attempt to
I am currently refactoring some old code. I am looking for directions on the
I am looking at some old code in Perl, where the author has writtern
I am looking through some old code and found a piece that i cant'
I have some old school looking code that is as follows: IList<KeyValuePair<string, ValuePair>> ServicePairs
Looking at some old VB 6.0 code we had created a global mFont variable

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.