Hi again team,
Is there a way to know with an event when the user change the document(when the mdi is on).
I checked about the Selection notifications but this not really apply with my case i would to know when the active document
has been changed
Is it possible to change the document order in the mdi mode. For example, if i close a document that was in the middle and then i open back the document would this be possible to put it back where it was?.
Question about Event and tab order
Moderators: PDF-XChange Support, Daniel - PDF-XChange, Chris - PDF-XChange, Sean - PDF-XChange, Vasyl - PDF-XChange, Ivan - Tracker Software, Stefan - PDF-XChange
-
- Site Admin
- Posts: 2448
- Joined: Thu Jun 30, 2005 4:11 pm
Re: Question about Event and tab order
Hi, Pierre.
Best
Regards.
You may use the next method:Is there a way to know with an event when the user change the document(when the mdi is on).
Code: Select all
eventhandler OnEvent(type, name...)
{
if ((type == PXCVA_OnPropertyChanged) AND (name == "Documents.Active"))
{
int justActivatedDocID;
ctrl.GetProperty(name, out justActivatedDocID, 0);
...
}
}
I'm afraid, but no way for this in current implementation. Wait for the new version of SDK...Is it possible to change the document order in the mdi mode. For example, if i close a document that was in the middle and then i open back the document would this be possible to put it back where it was?.
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.