cancel
Showing results for 
Search instead for 
Did you mean: 

Making Pop up window border solid in NW04s

Former Member
0 Kudos

Hi ,

i created a pop window using the following code:


	IWDWindowInfo myWinInfo =
	wdComponentAPI.getComponentInfo().findInWindows("ABCWindow");
	IWDWindow myPopupWindow =
	wdComponentAPI.getWindowManager().createWindow(myWinInfo, true);
	myPopupWindow.setWindowPosition(350, 80);
	myPopupWindow.setWindowSize(350, 400);
	myPopupWindow.setTitle(dialogTitle);
	myPopupWindow.open();

The opened pop up window shows a dotted border .

Is there any way we can make window border solid instead of dotted?

Regards

Radhika

Edited by: Radhika Kuthiala on May 7, 2010 2:08 PM

Accepted Solutions (0)

Answers (1)

Answers (1)

Former Member
0 Kudos

Hi,

Please try with the below:

IWDWindowInfo windowInfo = wdComponentAPI.getComponentInfo().findInWindows("PopupWin");

IWDWindow popup = wdComponentAPI.getWindowManager().createModalWindow(windowInfo);