devxlogo

Conditionally Compile Your Code

Most developers know about VB4’s Conditional Compilation feature, where you can declare WindowsAPIs for 16-bit and 32-bit operating systems:

 #If Win#32 then        'If running in 32-bit OS          Declare SomeApi....#Else        'If running in 16-bit OS        Declare SomeApi#End IF 

This same feature applies not only to Windows API statements, but also to your own functions:

 #If Win32 Then        Dim lRc&        lRc& = ReturnSomeNumber(35000)#Else        Dim lRc%        lRc% = ReturnSomeNumber(30000)#End If#If Win32 Then        Private Function ReturnSomeNumber_                (lVar&) As Long                ReturnSomeNumber = 399999#Else        Private Function ReturnSomeNumber_                (lVar%) As Integer                ReturnSomeNumber = 30000#End IfEnd Function

Charlie has over a decade of experience in website administration and technology management. As the site admin, he oversees all technical aspects of running a high-traffic online platform, ensuring optimal performance, security, and user experience.

See also  How Seasoned Architects Evaluate New Tech

About Our Editorial Process

At DevX, we’re dedicated to tech entrepreneurship. Our team closely follows industry shifts, new products, AI breakthroughs, technology trends, and funding announcements. Articles undergo thorough editing to ensure accuracy and clarity, reflecting DevX’s style and supporting entrepreneurs in the tech sphere.

See our full editorial policy.