FiveTech Support Forums

FiveWin / Harbour / xBase community
Board index FiveWin for Harbour/xHarbour Copy / paste in spanish
Posts: 3022
Joined: Fri Oct 07, 2005 01:45 PM

Copy / paste in spanish

Posted: Wed Feb 17, 2010 04:50 PM

When highlighting an edit field, the right click shows me the menu in spanish ( for copy / paste ). How do I get this back to english ?

Tim Stone
http://www.MasterLinkSoftware.com
http://www.autoshopwriter.com
timstone@masterlinksoftware.com
Using: FWH 23.10 with Harbour 3.2.0 / Microsoft Visual Studio Community 2022-24 32/64 bit
Posts: 4043
Joined: Wed Dec 19, 2007 06:40 PM

Re: Copy / paste in spanish

Posted: Wed Feb 17, 2010 05:24 PM
Tim,

it seems, You included a different Fget.prg in Your Link-File.
If You want to keep this, replace the Menue with the one from the original File
from Subdir < FWH/source/classes/Fget.prg >

search for :

METHOD RButtonDown( nRow, nCol, nFlags ) CLASS TFGet
...
...
MENU oMenu POPUP

if ::oGetBak != nil .and. !::lReadOnly
MENUITEM "&Undo" ACTION ::UnDo()
else
MENUITEM "&Undo" ACTION ::UnDo() DISABLED
endif

SEPARATOR

if ::lBlock .and. !::lReadOnly
MENUITEM "Cu&t" ACTION ::Cut()
else
MENUITEM "Cu&t" ACTION ::Cut() DISABLED
endif

if ::lBlock
MENUITEM "&Copy" ACTION ::Copy()
else
MENUITEM "&Copy" ACTION ::Copy() DISABLED
endif

if !Empty( oClp:GetText() ) .and. !::lReadOnly
MENUITEM "&Paste" ACTION ::Paste()
else
MENUITEM "&Paste" ACTION ::Paste() DISABLED
endif

if ::lBlock .and. !::lReadOnly
MENUITEM "&Delete" ACTION ::Del()
else
MENUITEM "&Delete" ACTION ::Del() DISABLED
endif
...
...
Best Regards
Uwe :-)
Since 1995 ( the first release of FW 1.9 )

i work with FW.

If you have any questions about special functions, maybe i can help.
Posts: 3022
Joined: Fri Oct 07, 2005 01:45 PM

Re: Copy / paste in spanish

Posted: Mon Feb 22, 2010 06:33 PM

I used the tGet.prg but had to make a modification suggested elsewhere on this forum. I am using FWH 8.12. It doesn not have the method you reference.

Tim Stone
http://www.MasterLinkSoftware.com
http://www.autoshopwriter.com
timstone@masterlinksoftware.com
Using: FWH 23.10 with Harbour 3.2.0 / Microsoft Visual Studio Community 2022-24 32/64 bit
Posts: 4043
Joined: Wed Dec 19, 2007 06:40 PM

Re: Copy / paste in spanish

Posted: Mon Feb 22, 2010 09:29 PM
Hello Tim,

I had a look in older FWH-Versions
there are 4 Files I found : FGet.prg, mGet.prg, Menu.prg and Trichedi.prg, with Copy, Paste ....
Maybe in one of these Files, there is something in Spanish.

Best Regards
Uwe :-)
Since 1995 ( the first release of FW 1.9 )

i work with FW.

If you have any questions about special functions, maybe i can help.

Continue the discussion