Localization of assistents

delphi package - automated exception handling
Post Reply
ccr
Posts: 14
Joined: Tue Jun 28, 2011 7:34 am

Localization of assistents

Post by ccr »

hello,
i realized now that the main message box is well translated but the assistents (like send assistent) still have the design-settings from the ide.
is there a way to have them translated as well?
madshi
Site Admin
Posts: 10764
Joined: Sun Mar 21, 2004 5:25 pm

Re: Localization of assistents

Post by madshi »

madNVAssistant.pas exports the following:

Code: Select all

var
  OnAssistantCreate : procedure (const assistant: INVAssistant; const exception: IUnknown) = nil;
You can register your own callback there, and then via code change all the controls on the INVAssistant.
Post Reply