Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations strongm on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Memo field problem

Status
Not open for further replies.

FoxEgg

Programmer
Mar 24, 2002
749
AU
Glad I am not the only one to be using FPD26...

I have a memofield and I use Ctrl-W to write and close the memofield... It worked fine before I used Popups .. now the ctrl - W invokes them...

Is there another way to write and save the memofield ?

Or am I doing something dumb

Code:
IF memofield > " " 
clear
@ 1, 20 say "Type Ctrl-W to save and exit the Memo field "
modi memo memofield window memofield
@ 24, 20 say "Print out the Memos ? " GET crap picture "!"
read
if crap = "Y"
set prin on
?MEMOFIELD
ejec page
set prin off
endif


**sorry it just a snippet of code

Thanks...

JF
 
You can use CTRL+ENTER. It works like CTRL+W
and with ON KEY LABEL 'AnyYourKey' KEYBOARD '{CTRL+ENTER}' you can use almost anything.


Tomas
 
Thanks Tomas...

Tried Ctrl-Enter and it brought up another (and different) pull down.../popup (whatever)...

So I have advanced a bit...

I suspect that the problem is where I have the code in the prg....

I'll fiddle a bit...

Thanks for the help .. much appreciated.


JF
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top