Changes between Initial Version and Version 1 of Ticket #3593
- Timestamp:
- 02/16/18 22:34:30 (7 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Ticket #3593 – Description
initial v1 11 11 12 12 Func _Test($sFunction, $iTest) 13 If IsFunc($sFunction) Then $sFunction( 'Test',$iTest)13 If IsFunc($sFunction) Then $sFunction($iTest) 14 14 EndFunc ;==>_Test1 15 15 16 Func _Msg($ text, $iTest)17 MsgBox(0, $iTest, $text)16 Func _Msg($iTest) 17 MsgBox(0, "Test", $iTest) 18 18 EndFunc ;==>_Msg 19 19 }}}