Cannot input texts in pop-up window with Delphi7

PDF-XChange Viewer SDK for Developer's
(ActiveX and Simple DLL Versions)

Moderators: PDF-XChange Support, Daniel - PDF-XChange, Chris - PDF-XChange, Sean - PDF-XChange, Vasyl - PDF-XChange, Ivan - Tracker Software, Stefan - PDF-XChange

combobox
User
Posts: 13
Joined: Mon Jun 21, 2010 6:15 am

Cannot input texts in pop-up window with Delphi7

Post by combobox »

In PDF-XChange Viewer SDK, I run the samle "PDFXChangeViewerActiveXDelphi.exe", and using "Sticky note tool" inserted a new note,then found that i can not input any word in pop-up window. why?
Image
combobox
User
Posts: 13
Joined: Mon Jun 21, 2010 6:15 am

Re: Cannot input texts in pop-up window with Delphi7

Post by combobox »

also, the same above problem with samples "PDFViewerActiveXTestCS.exe" and "PDFViewerActiveXTestVBNet.exe".
User avatar
Vasyl - PDF-XChange
Site Admin
Posts: 2448
Joined: Thu Jun 30, 2005 4:11 pm

Re: Cannot input texts in pop-up window with Delphi7

Post by Vasyl - PDF-XChange »

Hi, combobox.

This is a known bug. You may temporary use the following workaround:

Code: Select all

procedure TForm1.CoPDFXCview1Event(ASender: TObject; Type_: Integer; const Name: WideString; const DataIn: OleVariant; out DataOut: OleVariant; Flags: Integer);
var
...
begin
...
	if Type_ = PXCVA_OnNamedNotify then
	begin
		if (Name = 'Global::CheckKey') or (Name = 'Global::CheckSysKey') then
		begin
			DataOut := 1;
		end;
	end;
...
end;
And please wait for new build (2.0.53) (we are expecting to have this build later this week or early next one).
In the new build this trouble will be fixed.

Best
Regards.
PDF-XChange Co. LTD (Project Developer)

Please archive any files posted to a ZIP, 7z or RAR file or they will be removed and not posted.
combobox
User
Posts: 13
Joined: Mon Jun 21, 2010 6:15 am

Re: Cannot input texts in pop-up window with Delphi7

Post by combobox »

Hi,thanks for your quick reply
User avatar
Stefan - PDF-XChange
Site Admin
Posts: 19913
Joined: Mon Jan 12, 2009 8:07 am

Re: Cannot input texts in pop-up window with Delphi7

Post by Stefan - PDF-XChange »

our pleasure combobox :)

Best,
Stefan