
Cannot input texts in pop-up window with Delphi7
Moderators: PDF-XChange Support, Daniel - PDF-XChange, Chris - PDF-XChange, Sean - PDF-XChange, Vasyl - PDF-XChange, Ivan - Tracker Software, Stefan - PDF-XChange
-
- User
- Posts: 13
- Joined: Mon Jun 21, 2010 6:15 am
Cannot input texts in pop-up window with Delphi7
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?


-
- User
- Posts: 13
- Joined: Mon Jun 21, 2010 6:15 am
Re: Cannot input texts in pop-up window with Delphi7
also, the same above problem with samples "PDFViewerActiveXTestCS.exe" and "PDFViewerActiveXTestVBNet.exe".
-
- Site Admin
- Posts: 2448
- Joined: Thu Jun 30, 2005 4:11 pm
Re: Cannot input texts in pop-up window with Delphi7
Hi, combobox.
This is a known bug. You may temporary use the following workaround:
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.
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;
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.
Please archive any files posted to a ZIP, 7z or RAR file or they will be removed and not posted.
-
- User
- Posts: 13
- Joined: Mon Jun 21, 2010 6:15 am
Re: Cannot input texts in pop-up window with Delphi7
Hi,thanks for your quick reply
-
- Site Admin
- Posts: 19913
- Joined: Mon Jan 12, 2009 8:07 am
Re: Cannot input texts in pop-up window with Delphi7
our pleasure combobox 
Best,
Stefan

Best,
Stefan