Board index » delphi » Translating the language in the Paradox password dialog

Translating the language in the Paradox password dialog

I'm creating an application in Swedish and I'd like to translate the
language of the Paradox password dialog (and maybe the quick report
window to..). I know it's possible using a resource dll, but I don't
want to use one. How??

-Petter-

--
Petter Holmstr?m
E-mail: mailto:petter.holmst...@parnet.fi
Home page: http://www.parnet.fi/~pkh/

 

Re:Translating the language in the Paradox password dialog


Quote
Petter Holmstr?m <petter.holmst...@parnet.fi> wrote in message

news:37B32F13.4BAC524C@parnet.fi...

Quote
> I'm creating an application in Swedish and I'd like to translate the
> language of the Paradox password dialog (and maybe the quick report
> window to..). I know it's possible using a resource dll, but I don't
> want to use one. How??

Try using Session.OnPassword event.

Gert

Re:Translating the language in the Paradox password dialog


I have, but I haven't got any idea how to make sure the inputted password
is the right one.

-Petter-

Quote
Gert Kello wrote:
> Petter Holmstr?m <petter.holmst...@parnet.fi> wrote in message
> news:37B32F13.4BAC524C@parnet.fi...
> > I'm creating an application in Swedish and I'd like to translate the
> > language of the Paradox password dialog (and maybe the quick report
> > window to..). I know it's possible using a resource dll, but I don't
> > want to use one. How??

> Try using Session.OnPassword event.

> Gert

--
Petter Holmstr?m
E-mail: mailto:petter.holmst...@parnet.fi
Home page: http://www.parnet.fi/~pkh/

Re:Translating the language in the Paradox password dialog


As much as I know, it will continue executing this event until You provide
the correct password or set the Continue to False; And I don't know any way
do confirm if the password You'll supply is correct or not.

Gert

Quote
Petter Holmstr?m <petter.holmst...@parnet.fi> wrote in message

news:37B5BF38.A8B8A656@parnet.fi...
Quote
> I have, but I haven't got any idea how to make sure the inputted password
> is the right one.

> -Petter-

> Gert Kello wrote:

> > Try using Session.OnPassword event.

> > Gert

Re:Translating the language in the Paradox password dialog


Session.AddPassword(Edit1.Text);

--

Alain Quesnel
[remove the brackets on each side of my address to reply]

Quote
Petter Holmstr?m <petter.holmst...@parnet.fi> wrote in message

news:37B5BF38.A8B8A656@parnet.fi...
Quote
> I have, but I haven't got any idea how to make sure the inputted password
> is the right one.

> -Petter-

> Gert Kello wrote:

> > Petter Holmstr?m <petter.holmst...@parnet.fi> wrote in message
> > news:37B32F13.4BAC524C@parnet.fi...
> > > I'm creating an application in Swedish and I'd like to translate the
> > > language of the Paradox password dialog (and maybe the quick report
> > > window to..). I know it's possible using a resource dll, but I don't
> > > want to use one. How??

> > Try using Session.OnPassword event.

> > Gert

> --
> Petter Holmstr?m
> E-mail: mailto:petter.holmst...@parnet.fi
> Home page: http://www.parnet.fi/~pkh/

Other Threads