Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
 
					
				
		
 paulyeo11
		
			paulyeo11
		
		
		
		
		
		
		
		
	
			
		
		
			
					
		Hi All
Below script working fine :-
Binary "C:\Users\pauly\Dropbox\mainqv\QV_PROJECT\Bin load with Computer Name\QVD.qvw";
When i insert above script to below :-
LET vComputerID = Upper(ComputerName());
IF '$(vComputerID)' = 'DESKTOP-9837GT0' THEN
Binary "C:\Users\pauly\Dropbox\mainqv\QV_PROJECT\Bin load with Computer Name\QVD.qvw";
ELSEIF '$(vComputerID)' = 'PAUL' THEN
Else
END IF
I get below error msg :-
Unknown statement
Binary "C:\Users\pauly\Dropbox\mainqv\QV_PROJECT\Bin load with Computer Name\QVD.qvw"
May i know why ?
Paul
 
					
				
		
 atoz1158
		
			atoz1158
		
		
		
		
		
		
		
		
	
			
		
		
			
					
		Hi
This is from the help system
Only one binary statement is allowed in the script and it must be the first statement of the script, even before the SET statements usually located at the beginning of the script.
HTH
Adrian
 
					
				
		
 atoz1158
		
			atoz1158
		
		
		
		
		
		
		
		
	
			
		
		
			
					
		Hi
This is from the help system
Only one binary statement is allowed in the script and it must be the first statement of the script, even before the SET statements usually located at the beginning of the script.
HTH
Adrian
 
					
				
		
 paulyeo11
		
			paulyeo11
		
		
		
		
		
		
		
		
	
			
		
		
			
					
		Hi Sir
Thank you very much for your double confirmation.
Paul
