This will crash:
Just to let you know..
(Useless code anyway)
And somethimes this too:
module WGFWER.EXE op014f:00401981
Used: W95b
------------------
[email protected]
Just to let you know..
(Useless code anyway)
Code:
#Compile Exe Function PbMain MsgBox Str$( Len( "123" ) + Len( "234" ) ) End Function
Code:
#Compile Exe Function PbMain Dim T1 As String Dim T2 As String ' T1 = "123" ' T2 = "234" MsgBox Str$( Len( "123" ) + Len( "234" ) ) MsgBox Str$( Len( T1 ) & Len( T2 ) ) End Function
Used: W95b
------------------
[email protected]
Comment