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

  • SEARCH
  • Home
  • 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

Related Questions

In some VB6 code, I have a handler for a TreeView's Collapse event: Private
I am doing some maintenance on a VB6 Windows application. I have a .Net
I have some code for starting a thread on the .NET CF 2.0: ThreadStart
I have some C# / asp.net code I inherited which has a textbox which
I have to work on several VB6 legacy projects and despite some good VB6
I have VB6 application , I want to put some good error handling finction
I have some UI in VB 2005 that looks great in XP Style, but
I have some ASP.NET web services which all share a common helper class they
We have some input data that sometimes appears with &nbsp characters on the end.
I have some classes layed out like this class A { public virtual void

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.