Search found 192 matches: copying

Return to advanced search

Re: Problema super raro

... tests. Creating temporary table with data from the permanent table: oCn:Execute( "SELECT * INTO [TBL_TEMP] FROM [TBL_PERM]" ) Copying back modified data from temporary table to permanent table: TEXT INTO cSqlUPDATE tbl_perm SET tbl_perm.code = tmp.code, tbl_perm.name = tmp.name FROM ...
by nageswaragunupudi
Sun Mar 24, 2024 12:53 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: Problema super raro (SOLUCIONADO)
Replies: 10
Views: 2068

Highlighting on a web page

Hi,

There is a website that I open in WebView. This site is protected from highlighting and copying.
To allow highlighting in Firefox or Chrome, I can use, for example, Just Read. I do not know how to do this in WebView :(
by Natter
Mon Feb 05, 2024 4:43 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Highlighting on a web page
Replies: 8
Views: 484

file ID in the Windows file system

... **User: What happens if I rename a file to the ID or if I copy a file to another folder?** When you interact with a file by renaming it or copying it, the underlying file system handles these actions with specific behaviors related to the file's unique identifier (File ID) and other metadata: ...
by Otto
Fri Jan 05, 2024 4:26 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: file ID in the Windows file system
Replies: 5
Views: 618

Re: copy a row of xbrowse

Silvio, ask ChatGPT: To address the issue of copying multiple rows and pasting them into your xBrowse control in Harbour with FiveWin, you need to modify your `Copy` and `Paste` functionalities to handle multiple rows. Here is an approach to achieve ...
by Otto
Tue Dec 05, 2023 3:17 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: copy a row of xbrowse
Replies: 36
Views: 5754

Re: copy a row of xbrowse

... I go to the second xbrowse I paste when I view the popup menu the "copy" option is always disabled while it should be re-enabled after copying #include "fivewin.ch" static aCopyFunction Main()   Test("00001")   Test("00002") retur ...
by Silvio.Falconi
Tue Dec 05, 2023 7:44 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: copy a row of xbrowse
Replies: 36
Views: 5754

Re: copy a row of xbrowse

nageswaragunupudi wrote:do not use oBrw:aCopy

Keep a variable aCopy

For copying
Code: Select all  Expand view
aCopy := oBrw:aRow


For pasting
Code: Select all  Expand view
aCopy[ 1 ] := codsep
oBrw:aArrayData[ oBrw:nArrayAt ] := aCopy

Sorry,
I'am not understading
where i must inserti these Lines on my test (up)
Thanks
by Silvio.Falconi
Mon Dec 04, 2023 6:07 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: copy a row of xbrowse
Replies: 36
Views: 5754

Re: copy a row of xbrowse

do not use oBrw:aCopy

Keep a variable aCopy

For copying
Code: Select all  Expand view
aCopy := oBrw:aRow


For pasting
Code: Select all  Expand view
aCopy[ 1 ] := codsep
oBrw:aArrayData[ oBrw:nArrayAt ] := aCopy
by nageswaragunupudi
Mon Dec 04, 2023 6:03 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: copy a row of xbrowse
Replies: 36
Views: 5754

Re: enviar mensajes a whatsapp, ¿posible solucion?

... .t.         PalBmpFree( aBmp )      endif   endifreturn lRet  Use this code for copying images to clipboard, not the traditional class/functions. This can be pasted in whatsapp, word, excel, etc.
by nageswaragunupudi
Thu Oct 26, 2023 9:05 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: enviar mensajes a whatsapp, ¿posible solucion?
Replies: 55
Views: 4433

Re: Windows Defender

... The other 10 are running Windows Defender. Windows Defender is also installed on the Windows 2016 Data Center server. Problems occurred when copying the file xx.exe from the local computer to the server - Defender immediately deleted this file. There were similar problems on local computers ...
by Natter
Wed Oct 18, 2023 9:26 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Windows Defender
Replies: 9
Views: 541

Re: Compiling Harbour from source code

Dear Antonio,

I'm compiling Harbour from source code. So win-make should take care of copying all the Harbour's include directory to the HB_INSTALL_PREFIX directory. It does except some files. Anyway, Harbour is working fine at the end. I only wonder why some files are missing.
by Enrico Maria Giordano
Sat Aug 05, 2023 3:21 pm
 
Forum: Off Topic / Otros temas
Topic: Compiling Harbour from source code
Replies: 9
Views: 966

Re: SetClipboardData to UTF-8

Copying data correctly to clipboard but there is problem in pasting, i.e, GetClpData
We are looking to all the issues raised by you.
by nageswaragunupudi
Thu Jun 29, 2023 2:06 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: SetClipboardData to UTF-8
Replies: 14
Views: 1037

Re: Problem with xBrowse

Mr. Rao: Oh Sorry, yes. Pardon my forgetfulness. It selects TEST as current database. Don't worry! I am now copying your program with minor changes and trying to execute at my end. Thanks a lot BTW, it is now about 10:30 pm in Toluca. Are you still awake? Yeah I'm up for a couple ...
by Armando
Sun May 28, 2023 4:35 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Problem with xBrowse (Fixed)
Replies: 34
Views: 2147

Re: Problem with xBrowse

... all commands affect tables in TEST database Best regards Oh Sorry, yes. Pardon my forgetfulness. It selects TEST as current database. I am now copying your program with minor changes and trying to execute at my end. BTW, it is now about 10:30 pm in Toluca. Are you still awake?
by nageswaragunupudi
Sun May 28, 2023 4:24 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Problem with xBrowse (Fixed)
Replies: 34
Views: 2147

Re: calculate the frequency of a number

James Bott wrote:Read the database once while copying all the data into a multidimensional array.

Then calculate the frequency using the array.



I made it but the time is big
by Silvio.Falconi
Fri May 27, 2022 7:18 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: calculate the frequency of a number
Replies: 6
Views: 440

Re: calculate the frequency of a number

Read the database once while copying all the data into a multidimensional array. Then calculate the frequency using the array. that is in practice how should I do? if I asked in the forum it means that I don't know how to do it I cannot ...
by Silvio.Falconi
Wed May 11, 2022 6:19 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: calculate the frequency of a number
Replies: 6
Views: 440
Next

Return to advanced search