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 135615
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 11, 20262026-05-11T06:49:07+00:00 2026-05-11T06:49:07+00:00

I have some VB6 code that I am converting to VB.net and came across

  • 0

I have some VB6 code that I am converting to VB.net and came across this section

Declare Function TmSendByLen Lib 'tmctl.dll'  Alias 'TmSendByLength'(ByVal id As Integer, ByRef msg As Any, ByVal blen As Integer) As Integer 'snip'  Function TmSendByLength(ByVal id As Integer, ByVal msg As String, ByVal blen As Integer) As Integer     TmSendByLength = TmSendByLen(id, msg, blen) End Function 

I have not come across the Alias term before but I can guess what it does. What I am unsure of is the reasoning behind overloading the alias. If that is what is happening.

I need to create overloads for the TmSendByLen function as the ‘As Any’ is not supported in VB.net so I am not sure if I should just remove the alias or if I should leave it in place.

  • 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. 2026-05-11T06:49:07+00:00Added an answer on May 11, 2026 at 6:49 am

    The Alias doesn’t specify that the function is overloaded exactly, but that the name specified is really named something else in the called dll.

    Since your example is a bit confusing (because of the repeated names), I’ll use a slightly modified version to explain:

    Declare Function TmSendByLen Lib 'tmctl.dll' Alias 'TmSendByLength' (ByVal id As Integer, ByRef msg As Any, ByVal blen As Integer) As Integer)  Function InternalVersion(ByVal id As Integer, ByVal msg As String, ByVal blen As Integer) As Integer     InternalVersion = TmSendByLen(id, msg, blen) End Function 

    So in this modified version, the TmSendByLength name is the one that the referenced function’s entrypoint is really called in tmctl.dll. TmSendByLen is what we’re referring to it as in our code, and InternalVersion is the name of the wrapper function.

    I would imagine that this is so that InternalVersion can be called across modules/classes, while the TmSendByLen version was intended to be private.

    To answer the second part of your question, Alias is still available in VB.NET, although As Any isn’t. (You can find information about it here.) Whether you want to remove the Alias or not is completely up to you, but either way, I suspect you’re going to need to use As IntPtr (or SafeHandle) instead of As Any.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Ask A Question

Stats

  • Questions 162k
  • Answers 162k
  • Best Answers 0
  • User 1
  • Popular
  • Answers
  • Editorial Team

    How to approach applying for a job at a company ...

    • 7 Answers
  • Editorial Team

    How to handle personal stress caused by utterly incompetent and ...

    • 5 Answers
  • Editorial Team

    What is a programmer’s life like?

    • 5 Answers
  • Editorial Team
    Editorial Team added an answer It's not necessary to split the line using tr. You… May 12, 2026 at 12:00 pm
  • Editorial Team
    Editorial Team added an answer You shouldn't be trying to capture the return value of… May 12, 2026 at 12:00 pm
  • Editorial Team
    Editorial Team added an answer First off, take admin out of the IIS_WPG group before… May 12, 2026 at 12:00 pm

Related Questions

I have a feeling the answer to this is going to be not possible,
I'm using jython 2.2.1, and jdbc 1.2 and connecting to a mssql 2000 database,
I have a console application in C# in which I run various arcane automation
FYI - I am a mainframer that moved to the .NET world a couple

Trending Tags

analytics british company computer developers django employee employer english facebook french google interview javascript language life php programmer programs salary

Top Members

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.