Search found 64 matches: nstatus

Searched query: nstatus

by Antonio Linares
Fri Jan 17, 2025 11:04 pm
Forum: FiveWin for Harbour/xHarbour
Topic: Using new Class TDeepSeek for documenting
Replies: 29
Views: 4826

Re: Using new Class TDeepSeek for documenting

... of the event.

13. **`cSubject` (STRING)**
The subject or title of the event.

14. **`nIdx` (NUMERIC)**
A custom index for the event.

15. **`nStatus` (NUMERIC)**
The status of the event (e.g., pending, completed).

16. **`nMinutes` (NUMERIC)**
The duration of the event in minutes.

17 ...
by jnavas
Wed Apr 27, 2022 9:57 am
Forum: FiveWin para Harbour/xHarbour
Topic: USAR IMPRESORA FISCAL BERMATECH EN VENEZUELA EN PDV
Replies: 22
Views: 10992

Re: USAR IMPRESORA FISCAL BERMATECH EN VENEZUELA EN PDV

... AS LONG PASCAL ;
FROM "Bematech_FI_CierraInformeGerencial" LIB oDp:nBemaDLL

//Verifica status da gaveta
DLL32 FUNCTION BmStGaveta( @nStatus AS PTR ) AS LONG PASCAL ;
FROM "Bematech_FI_VerificaEstadoGaveta" LIB oDp:nBemaDLL

//Abre cupom adicional
DLL32 FUNCTION BmCupAdAbr( FormaPgto ...
by Silvio.Falconi
Mon Apr 05, 2021 4:33 pm
Forum: FiveWin for Harbour/xHarbour
Topic: Also error on Tplan with tdatabase
Replies: 3
Views: 762

Re: Also error on Tplan with tdatabase

Now I insert

? ValType( oData )

before of

If ValType( oData ) == "O"

oData:Cargo = {=>}
oData:Cargo['STATUS'] = nStatus
oData:Cargo['INDICE'] = ::oReserva:ROOMS_ID + DToS(::oReserva:CHECK_IN)
oPlann:oLastData = NIL

else
? "odata is not object"
endif



and it make this error ( another ...
by CARLOS ATUNCAR
Thu Apr 01, 2021 3:34 am
Forum: FiveWin para Harbour/xHarbour
Topic: AYUDA PARA LEER XML DE FACTURA ELECTRONICA ( SOLUCIONADO )
Replies: 6
Views: 1707

Re: AYUDA PARA LEER XML DE FACTURA ELECTRONICA ( SOLUCIONADO )

... version="1.0" encoding="UTF-8"?>'+CRLF
nXml += cText
Else
nXml := cXml
cNodo:= cProc
EndIf

oXmlDoc := TXmlDocument():new( nXml )

IF oXmlDoc:nStatus != HBXML_STATUS_OK
RETURN cRet
ENDIF

oNode := oXmlDoc:findfirst(cNodo)

If oNode != Nil
If lNodo
xmlNode := oXmlDoc:oRoot:oChild

WHILE ...
by kajot
Wed Dec 09, 2020 9:20 am
Forum: FiveWin for Harbour/xHarbour
Topic: read xml file
Replies: 6
Views: 1438

read xml file

How read xml file size 10Mb

cFileName:='test.xml'

I am using

oXmlDoc := TXmlDocument():new( ) // HBXML_TYPE_CDATA HBXML_STYLE_NOESCAPE
IF oXmlDoc:nStatus != HBXML_STATUS_OK
Msginfo( "error file .XML" )
Break
ENDIF


oXmlDoc:read( Memoread( cFileName ) )


best regard
KAJOT
by Silvio.Falconi
Mon Mar 30, 2020 1:59 pm
Forum: FiveWin for Harbour/xHarbour
Topic: Tooltip color
Replies: 3
Views: 601

Tooltip color

... make
obtn:cToolTip := {|obtn| FwTooltip(obtn) }



on FwTooltip(obtn) I have

local cText := Crea_Tooltip(oBtn)
local cTitle := cMyTitle+IIF(nstatus=3, " Prenotazione", IIF(nstatus=2," Occupato"," Libero"))
local cIcon := IcoTooltip(cCliente,nstatus)
local nClrFore := CLR_HRED
local nClrBack ...
by cnavarro
Sun Jul 28, 2019 7:41 pm
Forum: FiveWin for Harbour/xHarbour
Topic: mod harbour session js session object
Replies: 20
Views: 2676

Re: mod harbour session js session object

Dear Otto
Function in harbour is
win_UuidCreateString( [@<nStatus>] )

contrib/hbwin/win_rpc.c
contrib/hbwin/tests/testrpc.prg
by Silvio.Falconi
Fri Apr 26, 2019 3:24 am
Forum: FiveWin for Harbour/xHarbour
Topic: tdatabase Filter error
Replies: 20
Views: 2296

Re: tdatabase Filter error

... dDataIniziale and dDataFinale)

after making the filter (cfilter) I made I cycle on the archive reserva.dbf


DO WHILE !oReservation:EoF()
nStatus := Val( oReservation:STATUS )

to take the first record and have the value of the variable nStatus

later with this value I can change the image ...
by Silvio.Falconi
Thu Apr 25, 2019 9:34 am
Forum: FiveWin for Harbour/xHarbour
Topic: Problem with FW_SayText RESOLVED
Replies: 8
Views: 1201

Problem with FW_SayText RESOLVED

For nY := 1 to TOTY
For nX := 1 To TOTX
cSettore:= aSettori[nY,nX]
nElemento:= aNumeri[nY,nX]
cTypeRoom := aData[nY,nX]
nStatus:= 5

aBmps[nY,nX]:cargo := {nElemento,cSettore,cTypeRoom,nStatus }

aBmps[nY,nX]:bPainted:= { |hDC| FW_SayText( hDC, ltrim(str(nElemento)), { 30, 2, 48, 25 ...
by dutch
Wed Oct 03, 2018 7:51 am
Forum: FiveWin for Harbour/xHarbour
Topic: Read Com port
Replies: 13
Views: 3293

Re: Read Com port

... Dutch,
I use a timer .

DEFINE TIMER oTmr INTERVAL 6000 ACTION (BytesAtPort( nComm),oLbx:Refresh()) OF oWnd
ACTIVATE TIMER oTmr


function BytesAtPort( nComm, nStatus )

local cBuffer:=space(18)

ReadComm( nComm, @cBuffer )
select RAWPOIDS
append blank
replace data with cBuffer

return nil
by Jack
Wed Oct 03, 2018 5:50 am
Forum: FiveWin for Harbour/xHarbour
Topic: Read Com port
Replies: 13
Views: 3293

Re: Read Com port

Dutch,
I use a timer .

DEFINE TIMER oTmr INTERVAL 6000 ACTION (BytesAtPort( nComm),oLbx:Refresh()) OF oWnd
ACTIVATE TIMER oTmr


function BytesAtPort( nComm, nStatus )

local cBuffer:=space(18)

ReadComm( nComm, @cBuffer )
select RAWPOIDS
append blank
replace data with cBuffer

return nil
by Jack
Wed Sep 26, 2018 9:45 am
Forum: FiveWin for Harbour/xHarbour
Topic: Read Com port
Replies: 13
Views: 3293

Read Com port

... FiveWin.ch"

function Main()

local oDlg, nComm := InitComm()

DEFINE DIALOG oDlg TITLE "Testing Comm functions"

oDlg:bCommNotify = { | nComm, nStatus | BytesAtPort( nComm, nStatus ) }

ACTIVATE DIALOG oDlg ;
ON INIT EnableCommNotification( nComm, oDlg:hWnd, 20, 20 )

CloseComm( nComm ...
by Silvio.Falconi
Wed Jun 27, 2018 5:34 pm
Forum: FiveWin for Harbour/xHarbour
Topic: show tooltip on btnbmp
Replies: 13
Views: 2295

Re: show tooltip on btnbmp

BUT not run I cannot see the tooltip

For n= 1 to 4
@ nRow, nCol BTNBMP aBtn[ n ] RESOURCE GiveBmp(nStatus) ;
SIZE OMB_W,OMB_H PIXEL OF oDlg ;
FLAT TOP COLOR CLR_WHITE NOBORDER ;
TOOLTIP cPosNome

next

ACTIVATE DIALOG oDlg CENTERED ;
on init Mostra(aBtn)
RETURN NIL

Function Mostra(aBtn)
for n ...
by Otto
Sat Oct 07, 2017 9:41 pm
Forum: FiveWin for Harbour/xHarbour
Topic: Isprinter and bluetooth
Replies: 8
Views: 1457

Re: Isprinter and bluetooth

Hello Silvio,
does PrnStatus work for you.
Best regards,
Otto



#define PRINTER_STATUS_PENDING_DELETION 4
#define PRINTER_STATUS_PAPER_JAM 8
#define PRINTER_STATUS_PAPER_OUT 16
#define PRINTER_STATUS_MANUAL_FEED 32
#define PRINTER_STATUS_PAPER_PROBLEM 64
#define PRINTER_STATUS_OFFLINE 128
#define ...
by Adolfo
Wed Jan 25, 2017 2:08 pm
Forum: FiveWin para Harbour/xHarbour
Topic: Validar respuesta desde un WEBSERVICE
Replies: 6
Views: 2721

Re: Validar respuesta desde un WEBSERVICE

... Datos Incorrectos.

TDUP = Existen Token Activo.

TBLOQ = Otro Problema.

RESPUESTAS Token:

TOKEN


If I do a xbrowse( oXml ) I Get
Num - Data - Value
1 cHeader <Protected>
2 nError 0
3 nLine 1
4 nNodeCount 0
5 nStatus 1
6 oErrorNode
7 oIterator <Protected>
8 oRoot


Any help will be appreciated