Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
 parul_mehta
		
			parul_mehta
		
		
		
		
		
		
		
		
	
			
		
		
			
					
		I have an input box which is displayed when I press CTRL + R, where the user enters the required component name
On pressing CTRL + R I want to hide the Script Execution progress window, and show only the input box
Can you please let me know if it is possible, and what code needs to be added and where,
I need to hide the script execution progress window and show only the input box.

 stabben23
		
			stabben23
		
		
		
		
		
		
		
		
	
			
		
		
			
					
		Hi Parul,
You can use a macro to hide script window.
Sub RefreshData 
 ActiveDocument.DoReload 2,false,false
 End Sub 
 balabhaskarqlik
		
			balabhaskarqlik
		
		
		
		
		
		
		
		
	
			
		
		
			
					
		 parul_mehta
		
			parul_mehta
		
		
		
		
		
		
		
		
	
			
		
		
			
					
		At what stage should I call this macro ?
 parul_mehta
		
			parul_mehta
		
		
		
		
		
		
		
		
	
			
		
		
			
					
		Bala, I have read this article ..
Where and how should I use this ?
 stabben23
		
			stabben23
		
		
		
		
		
		
		
		
	
			
		
		
			
					
		How do you Call the script execution right now?
you should use a button or something similar to fire the trigger.
 parul_mehta
		
			parul_mehta
		
		
		
		
		
		
		
		
	
			
		
		
			
					
		I am just loading on CTRL + R
Need to use the same .
on CTRL+R, only input box should display, not script progress window
at what stage would it be best to call the macro ?
 Peter_Cammaert
		
			Peter_Cammaert
		
		
		
		
		
		
		
		
	
			
		
		
			
					
		In QV Desktop, Ctrl-R by default triggers a standard reload, which includes displaying the Progress Window. You can circumvent that dialog by launching a reload by way of a macro, but AFAIK the macro cannot replace the Ctrl-R action. You'll have to devise another User sequence (for example using a big button, as suggested before) to trigger an alternate reload with your own chain of actions and dialogs.
