Search found 16 matches: copying

Searched query: copying

by Antonio Linares
Sun Jul 28, 2024 3:40 pm
Forum: FiveWin for Harbour/xHarbour
Topic: BCC 7.7 HARBOUR & FWH VERSION MISMATCH COMPILE ISSUE
Replies: 7
Views: 686

Re: BCC 7.7 HARBOUR & FWH VERSION MISMATCH COMPILE ISSUE

Try copying uuid.lib to the folder where you are building the EXE
by Otto
Tue Jul 16, 2024 11:23 pm
Forum: mod_harbour
Topic: Replace jQuery with JavaScript
Replies: 2
Views: 7265

Re: Replace jQuery with JavaScript

... you need to sell it?

For me, we have small databases the DBF files work well. I don't need an SQL server, and I can install my programs just by copying the exe. This is important for sales.

Our customers work remotely. We have a server (a SERVERBOOK) and all workstations access their programs on ...
by Otto
Sun Jun 16, 2024 7:13 am
Forum: FiveWin for Harbour/xHarbour
Topic: Why You Should Stick with DBF or Access Databases for Now
Replies: 5
Views: 752

Why You Should Stick with DBF or Access Databases for Now

... new databases.

Flexibility and simplicity

DBF and Access databases offer high flexibility in data changes. Tables can be
easily exchanged by copying, and data editing directly on a USB stick is possible.
Features like record locks ensure data integrity during simultaneous accesses. This ...
by nageswaragunupudi
Sun Mar 24, 2024 12:53 pm
Forum: FiveWin para Harbour/xHarbour
Topic: Problema super raro (SOLUCIONADO)
Replies: 10
Views: 3565

Re: Problema super raro

... server for our 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 cSql
UPDATE tbl_perm
SET tbl_perm.code = tmp.code, tbl_perm.name = tmp ...
by Natter
Mon Feb 05, 2024 4:43 pm
Forum: FiveWin for Harbour/xHarbour
Topic: Highlighting on a web page
Replies: 8
Views: 882

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 Otto
Fri Jan 05, 2024 4:26 pm
Forum: FiveWin for Harbour/xHarbour
Topic: file ID in the Windows file system
Replies: 5
Views: 1256

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
Tue Dec 05, 2023 3:17 pm
Forum: FiveWin for Harbour/xHarbour
Topic: copy a row of xbrowse
Replies: 36
Views: 8169

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 this:

1. **Modify Copy Functionality**: Instead ...
by Silvio.Falconi
Tue Dec 05, 2023 7:44 am
Forum: FiveWin for Harbour/xHarbour
Topic: copy a row of xbrowse
Replies: 36
Views: 8169

Re: copy a row of xbrowse

... option

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 aCopy

Function Main()

Test("00001")
Test("00002")
retur nil

function Test(codcep)
local oDlg, oBar ...
by Silvio.Falconi
Mon Dec 04, 2023 6:07 pm
Forum: FiveWin for Harbour/xHarbour
Topic: copy a row of xbrowse
Replies: 36
Views: 8169

Re: copy a row of xbrowse

nageswaragunupudi wrote:do not use oBrw:aCopy

Keep a variable aCopy

For copying

Code: Select all | Expand

aCopy := oBrw:aRow
For pasting

Code: Select all | Expand

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 nageswaragunupudi
Mon Dec 04, 2023 6:03 pm
Forum: FiveWin for Harbour/xHarbour
Topic: copy a row of xbrowse
Replies: 36
Views: 8169

Re: copy a row of xbrowse

do not use oBrw:aCopy

Keep a variable aCopy

For copying

Code: Select all | Expand

aCopy := oBrw:aRow
For pasting

Code: Select all | Expand

aCopy[ 1 ] := codsep
oBrw:aArrayData[ oBrw:nArrayAt ] := aCopy
by nageswaragunupudi
Thu Oct 26, 2023 9:05 pm
Forum: FiveWin para Harbour/xHarbour
Topic: enviar mensajes a whatsapp, ¿posible solucion?
Replies: 55
Views: 9532

Re: enviar mensajes a whatsapp, ¿posible solucion?

... oCol:Value, nil, .f. )
if !Empty( aBmp[ 1 ] )
GDIPLUSHBITMAPTOCLIPBOARD( aBmp[ 1 ], GetDeskTopWindow() )
lRet := .t.
PalBmpFree( aBmp )
endif
endif

return lRet

Use this code for copying images to clipboard, not the traditional class/functions.
This can be pasted in whatsapp, word, excel, etc.
by Natter
Wed Oct 18, 2023 9:26 am
Forum: FiveWin for Harbour/xHarbour
Topic: Windows Defender
Replies: 9
Views: 1157

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 Enrico Maria Giordano
Sat Aug 05, 2023 3:21 pm
Forum: Off Topic / Otros temas
Topic: Compiling Harbour from source code
Replies: 9
Views: 3953

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 nageswaragunupudi
Thu Jun 29, 2023 2:06 pm
Forum: FiveWin for Harbour/xHarbour
Topic: SetClipboardData to UTF-8
Replies: 14
Views: 2012

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 Armando
Sun May 28, 2023 4:35 pm
Forum: FiveWin for Harbour/xHarbour
Topic: Problem with xBrowse (Fixed)
Replies: 34
Views: 4459

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 more hours ...