Example01 - Single Line

Category: Macros

Date: 02-16-2022

Return to Index


 
'Compilable Example:  (Jose Includes)
#Compile Exe
#Dim All
%Unicode=1
#Include "Win32API.inc"
 
Macro gbMacroA  = "dog"
Macro gbMacroB (a,b) = Max(a,b)
 
 
Function PBMain() As Long
   Local i As Long
   ? gbMacroA
   i = gbMacroB(5,4)
   ? Str$(i)
End Function
 
'gbs_00834
'Date: 03-05-2012


created by gbSnippets
http://www.garybeene.com/sw/gbsnippets.htm