devxlogo

Conditionally Compile Your Code

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
See also  Why ChatGPT Is So Important Today
devxblackblue

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.

About Our Journalist