1. Help. . . .
------=_NextPart_000_0051_01BF6D97.72BAD780
charset="iso-8859-1"
Content-Transfer-Encoding: quoted-printable
Hey everyone. . . . .=20
How do I get EU to send the cursor back to a MLE when the enter key =
is pressed in another MLE?
------=_NextPart_000_0051_01BF6D97.72BAD780
charset="iso-8859-1"
Content-Transfer-Encoding: quoted-printable
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
<HTML><HEAD>
<META content=3D"text/html; charset=3Diso-8859-1" =
http-equiv=3DContent-Type>
<META content=3D"MSHTML 5.00.2919.6307" name=3DGENERATOR>
<STYLE></STYLE>
</HEAD>
<BODY bgColor=3D#ffffff>
<DIV><FONT face=3DArial size=3D2>Hey everyone. . . . . </FONT></DIV>
<DIV> </DIV>
<DIV><FONT face=3DArial size=3D2> How do I get EU to =
send the=20
cursor back to a MLE when the enter key is pressed in another=20
------=_NextPart_000_0051_01BF6D97.72BAD780--
2. Re: Help. . . .
On Wed, 02 Feb 2000, you wrote:
> >%_Hey everyone. . . . .
>
> How do I get EU to send the cursor back to a MLE when the enter key is
> pressed in another MLE?
Here I change focus from a MLE (CustCode) to a button, but you could replace
(CustListButton) with (AnotherMLE)
procedure CustCode_onKeyDown ( int scanCode,
int shift ) if scanCode = VK_ESCAPE then setFocus(CustListButton)
end if
end procedure
onKeyDown[CustCode] = routine_id("CustCode_onKeyDown")
HTH:
Irv
3. Re: Help. . . .
On Wed, 02 Feb 2000, you wrote:
> >%_Hey everyone. . . . .
>
> How do I get EU to send the cursor back to a MLE when the enter key is
> pressed in another MLE?
I guess I should have added: change the VK_ESCAPE to VK_RETURN
Sorry.
Irv
4. Re: Help. . . .
----- Original Message -----
From: "Irv Mullins" <irv at ELLIJAY.COM>
To: <EUPHORIA at LISTSERV.MUOHIO.EDU>
Sent: Wednesday, February 02, 2000 5:00 PM
Subject: Re: Help. . . .
> On Wed, 02 Feb 2000, you wrote:
> > >%_Hey everyone. . . . .
> >
> > How do I get EU to send the cursor back to a MLE when the enter key
is pressed in another MLE?
>
> I guess I should have added: change the VK_ESCAPE to VK_RETURN
> Sorry.
>
> Irv
Thanks, that helps a lot. . . . .
Paul.
>