Can any explaine why this happens ?
;WHen I use single quates ' the = sign disapears
Local $a = " 'Test=Test' "
Local $b = ' "Test=Test" '
MsgBox( 0, "Test", $a ) ; OK
MsgBox( 0, "Test", $b) ; OK
Run("TestCQl.cmd" & $a ) ;Missing =
Run("TestCQl.cmd" & $b ) ; OK
;Just at simpel file there writes output to a Dos Console
;TestCQL.cmd
;@echo off
;echo %1 %2 %3 %4 %5 %6 %7 %8
BG
Lyon