D 
		
				
			
		Dominique
Guest
I'm working with Progress-4GL, release 11.6.
As explained in this other question, I'm now using dynamic queries, like this:
	
	
	
		
I have put this piece of code in an
	
	
	
		
I would like to put this include file only at certain customers' systems. This, however, would cause compilation problems at the other customers.
Is there a way to say (C-style preprocessors):
	
	
	
		
If yes, what are the conditions I can use in such a preprocessor directive?
Thanks in advance
Continue reading...
				
			As explained in this other question, I'm now using dynamic queries, like this:
		Code:
	
	CREATE BUFFER h-Table1 FOR TABLE "Table1" NO-ERROR.
IF VALID-HANDLE(h-Table1)
...
	I have put this piece of code in an
*.i file, which I include as:
		Code:
	
	{incl\include_file.i}
	I would like to put this include file only at certain customers' systems. This, however, would cause compilation problems at the other customers.
Is there a way to say (C-style preprocessors):
		Code:
	
	#IF <condition>
#THEN {incl\include_file.i}
	If yes, what are the conditions I can use in such a preprocessor directive?
Thanks in advance
Continue reading...