Search found 21 matches: chk

Return to advanced search

Re: Leer página web desde FWH

karinha No entiendo tu respuesta... si voy a esa dirección SI que veo que está funcionando, pero lo que intento es "leer o capturar" los datos que retorna esa página "https://aviationweather.gov/adds/metars/index.php?submit=1&station_ids=LEAL&chk_metars=on&chk_tafs=on&...
by Xevi
Wed Sep 09, 2020 9:09 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: Leer página web desde FWH
Replies: 5
Views: 1456

OFnt:END() generating logfile

I create the font object in this way: DEFINE FONT cFontBot NAME "Ms Sans Serif" SIZE 0, -08 BOLD And when I finish the dialog, after the active dialog, I destroy the source object in this way: CFontBot: END () But this is creating a log with this message: 10/03/2017 11:57:02: EXCESS RELEAS...
by aferra
Fri Mar 10, 2017 3:48 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: OFnt:END() generating logfile
Replies: 11
Views: 1998

Re: Window moving into the background

DEFINE WINDOW oWnd //main window

DEFINE TIMER oTm OF oWnd INTERVAL 15000 ACTION Chk_Grnd()
oTm:Activate()

procedure Chk_Grnd

if oWnd is background (I don't know how to define it)
.............
else
.............
endif
return
by Natter
Fri Oct 21, 2016 10:36 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Window moving into the background
Replies: 6
Views: 1037

Re: SETCHECK EN XBROWSE CON QUERY MYSQL

Jose Luis, yo lo uso asi: aoCols[6] := oBrw:AddCol() aoCols[6]:nWidth := 26 aoCols[6]:cHeader := "CxC" aoCols[6]:AddBmpHandle( "Chk_T" ) aoCols[6]:AddBmpHandle( "Chk_F" ) aoCols[6]:bBmpData := {|| IF(oQry:FieldGet("escxc"), 1, 2) } aoCols[6]:nDataStrAlign := A...
by Francisco Horta
Tue May 24, 2016 10:07 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: SETCHECK EN XBROWSE CON QUERY MYSQL-SOLUCIONADO
Replies: 6
Views: 1234

Re: LAN User Messaging Service

Thnx Silvio,
Will chk it out. Many many years back I was using netlib library for the same purpose..worked beautifully. Will post a few screen shots, later.
Regards
by RiazKhan
Wed Jan 13, 2016 12:47 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: LAN User Messaging Service
Replies: 15
Views: 4314

Re: Input form

Thanks James, You have set me on the right path. However I still have two issues that are not working. Once I auto populate several fields I want the function to set focus to a field 4 spaces over. What I get is the focus going to the first field on the form. Also the color does not want to be set. ...
by Vytas
Wed Aug 05, 2015 5:53 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Input form
Replies: 8
Views: 1701

Re: xbrowse check and unckeck

Wanderson,

myarray := { { 1, .t., "Hello" }, {2, .f., "World" } }

oBrw:aCols[2]:AddBmpHandle( "Chk_T" )
oBrw:aCols[2]:AddBmpHandle( "Chk_F" )
oCol:bBmpData := {|| IF( myArray[ oBrw:nArrayAt, 2], 1, 2) }
oCol:bStrData := { || Nil }

Regards
Paco
by Francisco Horta
Tue May 26, 2015 9:22 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: xbrowse check and unckeck
Replies: 4
Views: 721

Re: array into array

Sylvio,

Can you tell us what the chk_ore() function does? I got the idea that there is a problem in it.
by driessen
Tue Feb 24, 2015 11:07 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: array into array
Replies: 3
Views: 684

array into array

I need to insert the data of an array into another but the first array data change each skip sample : ... Local aDchk7:= {} Local aData:= {} while (!DO->(EOF())) aData:= chk_ore( do->(RecNo()) , do->cognome, do->nome) // this give me an array with ten elements aadd(aDchk7,{{ aData[1], aD...
by Silvio.Falconi
Mon Feb 23, 2015 4:50 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: array into array
Replies: 3
Views: 684

Re: messaggio per mercurial

Comunque mi sembra che anche questa tua seconda ipotesi non sia corretta... che valore avrebbe la prof.ssa Frati che ha 10 ore in 1D? 10? il problema che alcune funzioni non le trovo ho trovato solo le funzioni classelib aulalib giornolib ( giorno libero per il docente e in base al campo do->pun...
by Silvio.Falconi
Sat Feb 07, 2015 9:11 am
 
Forum: All products support
Topic: messaggio per mercurial
Replies: 18
Views: 4270

Reading a Web page from fwh

Good evening, I'm trying to read a web page from my program. The address is: http://aviationweather.gov/adds/metars/index.php?submit=1&station_ids=LEAL&chk_metars=on&chk_tafs=on&hoursStr=3 I use this code, which works fine with pages that are not php:     // ---...
by alvaro533
Thu Feb 02, 2012 11:01 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Reading a Web page from fwh
Replies: 6
Views: 1219

Leer página web desde FWH

Buenas tardes Estoy intentado leer una página web desde mi programa. La página es http://aviationweather.gov/adds/metars/index.php?submit=1&station_ids=LEAL&chk_metars=on&chk_tafs=on&hoursStr=3 El siguente código me funciona perfectamente con páginas que no son php. // --...
by alvaro533
Thu Feb 02, 2012 10:52 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: Leer página web desde FWH
Replies: 5
Views: 1456

Re: Arrays en FastReport (SOLUCIONADO)

Alguien sabe de esto necesito hacer una matriz para almacenar un total. Usamos el "TStringList" de clase como una matriz para el almacenamiento de sumas ". Vamos a almacenar datos numéricos valores como cadenas. Al mismo tiempo, la primera línea en la lista corresponde al valor de la ...
by Carlosrebu
Thu Sep 08, 2011 6:02 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: Arrays en FastReport (SOLUCIONADO)
Replies: 11
Views: 2738

Re: modificar el sistema cuando ya está distribuido

Yo lo hago parecido. Tengo las estruturas en código, en una función chk_bases(). Cada vez que se entra al programa se comprueban las estructuras de todas las bases de datos y se modifica sólo si es necesario, avisando a otros usuarios que salgan, comprobando que los ficheros no están en uso, etc. Si...
by alvaro533
Mon Mar 29, 2010 9:53 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: modificar el sistema cuando ya está distribuido
Replies: 8
Views: 1931

Re: modificar el sistema cuando ya está distribuido

Lorenzo, aqui otra sugerencia como lo hago yo, todas son muy parecidas al inicio de mi programa ejecuto una funcion: chk_bases() luego en esta funcion, tengo todas las estructuras de las bases de datos, ejemplo: Func Chk_Bases()   cDbf := "Cultivos"   T_aPaso :=...
by Francisco Horta
Fri Mar 26, 2010 6:43 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: modificar el sistema cuando ya está distribuido
Replies: 8
Views: 1931
Next

Return to advanced search