Search found 619 matches: ctrl

Return to advanced search

Re: Inserting a string with CRLF into a single-line TGet.

... This is working with ANSI gets only. Not working reliably with Unicode gets. We are looking into it. 2. This works if the user pastes by pressing Ctrl-V. Does not work if the user pastes by selecting "Paste" menu option in the popup context menu. This needs modification of HandleEvent ...
by nageswaragunupudi
Mon Dec 11, 2023 8:00 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Inserting a string with CRLF into a single-line TGet.
Replies: 10
Views: 893

Re: Inserting a string with CRLF into a single-line TGet.

... And substitution by itself is a simple one line code. The user copies some text from some other window or application or a webpage by pressing Ctrl-C or by selecting Copy from the context And as a programmer you do not know what text the user will copy. And when the user wants to paste in the ...
by nageswaragunupudi
Mon Dec 11, 2023 7:44 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Inserting a string with CRLF into a single-line TGet.
Replies: 10
Views: 893

Re: Excell to xbrowse ?

... opened in Microsoft Excel and I marked some of it and copied it to the clipboard. Can I paste the part I copied to the clipboard into xbrowse with Ctrl-V?
by Horizon
Mon Nov 20, 2023 5:50 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Excell to xbrowse ?
Replies: 5
Views: 430

Re: enviar mensajes a whatsapp, ¿posible solucion?

... FW_CopyToClipBoard( { FullName( cFile1 ), FullName( cFile2 ), ... } ) --> lSuccess After this, press Ctrl-V in WhatsApp and then all files are attached. All at a time with only one click of Ctrl-V. Image files are displayed as images and other files ...
by nageswaragunupudi
Fri Oct 27, 2023 2:00 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: enviar mensajes a whatsapp, ¿posible solucion?
Replies: 55
Views: 4441

Re: Consulta sobre la funcion FW_CopyToClipBoard()

Can you please explain how did you do it with FWH2111 please?

For now the only way I know is
Code: Select all  Expand view
FW_CopyToClipboard( MEMOREAD( "tutor01.prg" ) )

and then press Ctrl-V in WhatsApp.
by nageswaragunupudi
Wed Sep 13, 2023 10:23 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: Consulta sobre la funcion FW_CopyToClipBoard()
Replies: 3
Views: 308

Re: Copy & paste with a single mouse clic, how?

1)
RETURN + CTRL+ V+RETURN.

Not required. Simple Ctrl-V is enough.

2) Yes, possible. Please wait
by nageswaragunupudi
Wed Sep 13, 2023 3:50 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Copy & paste with a single mouse clic, how?
Replies: 3
Views: 266

Copy & paste with a single mouse clic, how?

... good, now I require, if possible, that with just one mouse click (Right or Left) on a cell paste the stored value, without having to use RETURN + CTRL+ V+RETURN. Is it possible?, do you have a sample? With Best regards
by Armando
Tue Sep 12, 2023 6:22 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Copy & paste with a single mouse clic, how?
Replies: 3
Views: 266

Consulta sobre la funcion FW_CopyToClipBoard()

Buena tarde
Respetados miembros del foro

Como se utiliza la funcion FW_CopyToClipBoard( { "video.prg" } ), para pegar un archivo al Whatsapp por ejemplo.
En la version 21.11 logre hacerlo. Con esta version no puedo hacer el CTRL- V

Saludos desde Panama
Erick Almanza
by Erick Almanza
Tue Sep 12, 2023 6:02 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: Consulta sobre la funcion FW_CopyToClipBoard()
Replies: 3
Views: 308

Re: Cut & Paste limit

... till the end of the Get. Example -Width of Get is 80 chars -Copied text is 70 chars -User has his cursor position 60 in the Get and then pressed Ctrl-V, the text is pasted from 61st position till the end of Get, ie., 80. 20 chars are copied and the remaining 50 chars are discared. -Instead, if ...
by nageswaragunupudi
Thu Sep 07, 2023 4:59 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Cut & Paste limit
Replies: 7
Views: 546

XBROWSER Buttonbar Hotkey ?

hi,

is it possible to assign Hotkey for Buttons in Buttonbar of XBROWSER :?:

i like to use Keyboard and not Mouse in a "normal" App
for "edit" i like to use CTRL-E or F2
for "Append" CTRL-A
by Jimmy
Mon Sep 04, 2023 8:42 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: XBROWSER Buttonbar Hotkey ?
Replies: 0
Views: 208

Re: Question about xBrowse

By the way, is it possible to paste what I have on the clipboard into a cell with just one mouse click? Yes. Just by clicking Ctrl-V. For this we first need to set oBrw:lCanPaste := .t. We can paste text into text fields and even images into Image fields. All by just one click Ctrl-V. ...
by nageswaragunupudi
Mon Aug 21, 2023 10:25 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Question about xBrowse
Replies: 6
Views: 283

Re: Actualizar xBrowse con un Clic del ratón?

Then, you can copy any text any where and then press Ctrl-V in the active cell. The value is pasted and browse updated.
This applies even for pasting images in memo fields.

Aprovechado el hilo, como debería definirse si quiero hacerlo con un Xbrowse con Array?
by cmsoft
Fri Aug 18, 2023 3:26 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: Actualizar xBrowse con un Clic del ratón?
Replies: 22
Views: 1343

Re: Actualizar xBrowse con un Clic del ratón?

Code: Select all  Expand view
oCol:VarPut( newValie _


For pasting initially set
Code: Select all  Expand view
oBrw:lCanPaste := .t.

Then, you can copy any text any where and then press Ctrl-V in the active cell. The value is pasted and browse updated.
This applies even for pasting images in memo fields.
by nageswaragunupudi
Fri Aug 18, 2023 12:40 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: Actualizar xBrowse con un Clic del ratón?
Replies: 22
Views: 1343

ayuda con edicion en xbrowse

... escrito este guardado en la celda https://i.imgur.com/FccabN8.png aca se perdio loi que tenia ingresado..., aca he notado que con ctrl https://i.imgur.com/kTElFlN.png
by carlos vargas
Sat Aug 12, 2023 8:16 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: ayuda con edicion en xbrowse
Replies: 3
Views: 238

Re: Promtp-Editor: Unleash ChatGPT's Power: The Ultimate Prompt

Hello friends, In this prompt editor, we do not use the API call but rather pass the prompt using CTRL + C or the Insert menu command. The advantage here is that you are not charged per query but rather have a fixed monthly fee of $20 currently. This makes the costs controllable ...
by Otto
Mon Jun 26, 2023 6:44 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Promtp-Editor: Unleash ChatGPT's Power: The Ultimate Prompt
Replies: 4
Views: 446
Next

Return to advanced search