Search found 854 matches: entire

Return to advanced search

Re: 2404 Fivewin.ch error -- Antonio

Antonio Here is the entire file .. not very large .. // LOGIN.PRGFUNC _LOGIN( cAUTH, oDLG, oSAY, cSAY )LOCAL cNAME,SAYING,lOK := .F.LOCAL oRsUser,oErr,cFIND,cSQLSET DELETED ON#INCLUDE "FIVEWIN.CH"xLOGIN := UPPER( ...
by Rick Lipkin
Mon Apr 29, 2024 6:44 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: 2404 Fivewin.ch error -- Antonio
Replies: 7
Views: 202

Re: Brush

... background image is the way I need it, taking up 3/4 of the screen, but the second image is not transparent. In the second, the image occupies the entire screen and the image becomes transparent. Att., Oliveiros Junior /*------------------------------------------------------------------------------- ...
by oliveiros junior
Fri Apr 19, 2024 1:42 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: Brush
Replies: 10
Views: 468

Re: Compiler with MSVC y HARBOUR

... seen that the binaries can be downloaded from https://www.apachefriends.org. If I now copy the new binaries into the bin folder and delete the entire folder beforehand, then mod harbour no longer works. I have seen that I need the following files additionally: c:\Apache24\bin\libssl-1_1-x64.dll ...
by Otto
Fri Apr 19, 2024 6:26 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Compiler with MSVC y HARBOUR
Replies: 3
Views: 183

Re: Another for Btnbmp

... I want the same colors that I put in and they must have the border with the color that I put in, why do I have to change the aesthetics of my entire application?
by Silvio.Falconi
Tue Mar 19, 2024 11:17 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Another for Btnbmp
Replies: 26
Views: 5071

Re: DBF editor

`mh_dbftohtml()` is a Fivetech function similar to `xBrowser()`. You pass the path of the database, and then a standard browser is automatically created. Here, you can practically see the entire endpoint code.

Image
by Otto
Wed Feb 21, 2024 7:06 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: DBF editor
Replies: 2
Views: 241

Runner XBase (RX)

... building, or prototyping web applications. Start comfortably testing your first pages, forms, and assembling all the pieces, giving logic to the entire process. Runner XBase (RX) is freeware and aims to assist those who, for one reason or another, have always found it challenging to take this ...
by Carles
Tue Feb 20, 2024 6:25 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Runner XBase (RX)
Replies: 10
Views: 1149

Re: SAPI : change Voice

please can you post the entire test with the recources so we can help you too? ¿Puedes publicar la prueba completa con los recursos para que podamos ayudarte también? Hola Silvio ya está la solución con respecto a Sapi.Voice con la ayuda ...
by Silvio.Falconi
Fri Feb 16, 2024 7:51 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: SAPI : change Voice
Replies: 69
Views: 3744

Re: SAPI : change Voice

Silvio.Falconi wrote:please can you post the entire test with the recources so we can help you too?


¿Puedes publicar la prueba completa con los recursos para que podamos ayudarte también?


Hola Silvio
ya está la solución con respecto a Sapi.Voice con la ayuda de Antonio Linares
by Danielmaximiliano
Fri Feb 16, 2024 5:50 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: SAPI : change Voice
Replies: 69
Views: 3744

Re: SAPI : change Voice

please can you post the entire test with the recources so we can help you too?


¿Puedes publicar la prueba completa con los recursos para que podamos ayudarte también?
by Silvio.Falconi
Fri Feb 16, 2024 2:35 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: SAPI : change Voice
Replies: 69
Views: 3744

Re: Mr. Rao, refresh a Tree

Mr. Rao:

This is my video, it is 18 seconds, if you consider it necessary, I will send you my entire PRG, help me please.

Greetings

https://files.fm/u/u25vv7ebbv
by Armando
Fri Feb 09, 2024 12:42 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Mr. Rao, refresh a Tree
Replies: 21
Views: 756

Re: RAO advice on using Mysql

... means read first 100 records only Sameway oCn:RecSet( cSql, 100 ) also means read first 100 records only. But oCn:RecSet( cSql, -100 ) means read entire table with page size 100. RecSet does not read entire table atonce. That will take a very long wait time and also consume huge memory of the ...
by nageswaragunupudi
Wed Feb 07, 2024 10:06 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: RAO advice on using Mysql
Replies: 12
Views: 1014

Re: Highlighting on a web page

You can easily use oWebView:InjectJavascript( ... ) to get the entire DOM
by Antonio Linares
Wed Feb 07, 2024 7:05 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Highlighting on a web page
Replies: 8
Views: 496

Re: Mr. Rao EOF() BOF() not working wirh RecSet

... nSave )   Note: We advise to use RecSet class if and only if the table is very large and there is no other go but to read and browse the entire table. In all other cases use RowSet class with suitable WHERE clause.
by nageswaragunupudi
Fri Feb 02, 2024 8:08 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Mr. Rao EOF() BOF() not working wirh RecSet
Replies: 3
Views: 422

Re: Creating table with Trichedit

... wrote a class for creation rtf of files // Copyright: (C) 01/28/97 1997, Thomas R. Marchione oRTF := SetRT( cOutFile ) // Use this to write an entire paragraph, with optional formatting. NEW PARAGRAPH oRTF TEXT 'OOO «Text in aligned left»'; FONTNUMBER 1 ; APPEARANCE BOLD_OFF+ITALIC_OFF+CAPS_OFF; ...
by Silvio.Falconi
Sun Jan 28, 2024 5:32 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Creating table with Trichedit
Replies: 18
Views: 1491

Re: Creating table with Trichedit

... wrote a class for creation rtf of files // Copyright: (C) 01/28/97 1997, Thomas R. Marchione oRTF := SetRT( cOutFile ) // Use this to write an entire paragraph, with optional formatting. NEW PARAGRAPH oRTF TEXT 'OOO «Text in aligned left»'; FONTNUMBER 1 ; APPEARANCE BOLD_OFF+ITALIC_OFF+CAPS_OFF; ...
by Silvio.Falconi
Sat Jan 27, 2024 9:36 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Creating table with Trichedit
Replies: 18
Views: 1491
Next

Return to advanced search