Search found 77 matches: foreign

Return to advanced search

azzoMax-dashboard for internal use

... that it now really helps me with my work. Everything is on the backend with ModHarbour, and I only use Bootstrap, TinyMCE, and jQuery, no other foreign LIBs. azzoMax is a dashboard for internal use. The core is the sidebar, from which you can access the various menu items. For example, we store ...
by Otto
Sun Feb 18, 2024 8:12 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: azzoMax-dashboard for internal use
Replies: 1
Views: 213

Re: SAPI : change Voice

Ops, sorry, my fault. Ok, it compiles file and speaks in a foreign language (it seems). What it is supposed to do?
by Enrico Maria Giordano
Thu Feb 08, 2024 2:20 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: SAPI : change Voice
Replies: 69
Views: 3572

Re: check on get

Dear João, it's difficult in a foreign language. I just wanted to say that one shouldn't see and hear everything during full moon times. It's not a criticism of you. With kind regards, Otto Mr. Otto, #include"fivewin.ch"Function ...
by Silvio.Falconi
Wed Nov 29, 2023 8:49 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: check on get
Replies: 27
Views: 3943

Re: check on get

Dear João,
it's difficult in a foreign language.
I just wanted to say that one shouldn't see and hear everything during full moon times.
It's not a criticism of you.
With kind regards,
Otto
by Otto
Wed Nov 29, 2023 8:14 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: check on get
Replies: 27
Views: 3943

Re: DBF . Commit

... use FFI. Does HARBOUR really have this and are there examples? To implement a similar function in Harbour, you might want to use Harbour's FFI (Foreign Function Interface) to call the necessary Windows API functions. Best regards, Otto
by Otto
Mon Oct 23, 2023 8:14 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: DBF . Commit
Replies: 39
Views: 2346

Re: not ISOEM(), ISANSI() or IsUTF8()

... reason I requested you to prepare a list of all such characters and provide us and then we will work out a correct conversion function. The only foreign language I know is English whose characters are the same in OEM, ANSI and UTF8. Because I do not know German, we need your help. i do not understand ...
by Jimmy
Wed Aug 30, 2023 3:17 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: not ISOEM(), ISANSI() or IsUTF8()
Replies: 34
Views: 2099

Re: not ISOEM(), ISANSI() or IsUTF8()

... reason I requested you to prepare a list of all such characters and provide us and then we will work out a correct conversion function. The only foreign language I know is English whose characters are the same in OEM, ANSI and UTF8. Because I do not know German, we need your help.
by nageswaragunupudi
Wed Aug 30, 2023 2:23 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: not ISOEM(), ISANSI() or IsUTF8()
Replies: 34
Views: 2099

Re: ADS - The future is <sadly> now so where do you go ?

... DD is not appreciated unless you've used them. Having Data Integrity rules, User logins, Stored Procedures, Functions, Replication, etc... is all foreign to most xbase developers. Having files on a file system does not protect or keep data private and secured the way you can with a DD. Files on ...
by reinaldocrespo
Sat May 14, 2022 12:53 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: ADS - The future is <sadly> now so where do you go ?
Replies: 26
Views: 2794

Re: FWH : Built-in MySql/MariaDB functionality

... DEFAULT CURRENT_TIMESTAMP,   `changedt` TIMESTAMP DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP) Example showing how to specify foreign key constraints, collations, calculated columns ( mysql 5.7 and above):   aStru := {  ;               { "code", "REFERENCES ...
by goosfancito
Tue Sep 28, 2021 8:18 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: FWH 16.08 : Built-in MySql/MariaDB functionality (Updated )
Replies: 76
Views: 28450

Re: OT Will you update your PC to Windows 11

Antonio Windows 365 is totally Cloud Based ( saas software as a service ) and I fear that our Data Centers are such high profile targets of foreign country Hackers that wish to disrupt the Free world's way of life .. https://www.bleepingcomputer.com/news/microsoft/microsoft-explains-the-cause-of-yesterdays-massive-service-outage/ ...
by Rick Lipkin
Sun Sep 05, 2021 1:45 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: OT Will you update your PC to Windows 11
Replies: 16
Views: 1431

[RESUELTO] Group compuesto en Report

Hola Foro, Estoy haciendo un sistema de "Casas de Cambio" - Foreign Exchange. Estoy trabado hace horas, estuve buscando por aca y por el wiki y no lo encuentro. En el report que trato de generar, tengo clientes y sus movimientos. Lo tengo que agrupar ...
by nlerdafehn
Thu Feb 04, 2021 1:51 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: [RESUELTO] Group compuesto en Report
Replies: 2
Views: 333

Re: Peer to Peer, NAS and NTX -> CDX

... app. But there is nothing better than direct access via dbf. I'm talking about programs like you and I do. If you work for a corporation or for foreign bosses, it's a little different. Best regards, Otto
by Otto
Sun Jan 03, 2021 3:58 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Peer to Peer, NAS and NTX -> CDX
Replies: 41
Views: 3383

Re: FOREIGN KEY

Gracias a todos, lo he resuelto de la siguiente forma:

cQuery:= "DELETE estudio_ratio,gastos FROM estudio_ratio JOIN gastos ON estudio_ratio.idestudio=gastos.idgastos WHERE gastos.idgastos='" + Str( nIdGastos ) + " ' "
oVar:oMysql:Execute(cQuery)

Un saludo
Gabriel
by jgabri
Wed Jun 03, 2020 10:26 am
 
Forum: FiveWin para Harbour/xHarbour
Topic: FOREIGN KEY
Replies: 6
Views: 1621

Re: FOREIGN KEY

Gabriel:

Otra opción es que hagas un Trigger.

Saludos
by Armando
Tue May 26, 2020 3:17 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: FOREIGN KEY
Replies: 6
Views: 1621

Re: FOREIGN KEY

Una idea
Code: Select all  Expand view

DELETE etr,gas
FROM estudio_ratio etr
LEFT JOIN gastos gas
    ON etr.idestudio = gas.idgastos
WHERE etr.id= 1;
 
by leandro
Tue May 26, 2020 1:48 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: FOREIGN KEY
Replies: 6
Views: 1621
Next

Return to advanced search