Search found 91 matches: boolean

Return to advanced search

Re: Insert an record on array

... name into which the value xValue will be inserted. nPos Subscript position in aArray. Default: 1st position xValue Value to be inserted lAutoSize Boolean flag to increase or not the size of aArray. Default value: .F. https://harbour.github.io/doc/harbour.html#hb_ains example: function ...
by Silvio.Falconi
Mon Jan 15, 2024 9:03 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Insert an record on array
Replies: 4
Views: 827

Re: Insert an record on array

... name into which the value xValue will be inserted. nPos Subscript position in aArray. Default: 1st position xValue Value to be inserted lAutoSize Boolean flag to increase or not the size of aArray. Default value: .F. https://harbour.github.io/doc/harbour.html#hb_ains example: function ...
by Antonio Linares
Sun Jan 14, 2024 6:11 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Insert an record on array
Replies: 4
Views: 827

Re: DBF to Excel Sheet, without Excel, using ADO ?

... reported by ADO. This proves that there is absolutely no need to revise the existing FWH function. The above sample also proves that using .T. for boolean fields work with oRs:AddNew() and will work the same way with oRs:Update() too. I said this before and you were not agreeing. I assert again ...
by nageswaragunupudi
Wed Aug 16, 2023 10:03 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: DBF to Excel Sheet, without Excel, using ADO ?
Replies: 50
Views: 2584

Re: Small Question about Word and FWH

... actual title of Application 1 If hWnd <> IntPtr.Zero Then ' Send a message to Application 1 to check the document state Dim documentState As Boolean = GetJWordDocumentState(hWnd) If Not documentState Then ' Call cWord:Quit() because no document is open in jWord cWord.Quit() Else ' Handle ...
by Antonio Linares
Mon Jul 17, 2023 9:38 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Small Question about Word and FWH
Replies: 29
Views: 1151

Webservice de .NET a Fivewin

... i_error Catch ex As Exception End Try End Select If Trim(buscarRespuesta) <> "" Then Dim xDoxRta As New XmlDocument Dim xRtaRta As Boolean = False Do Until xRtaRta = True Try xDoxRta.LoadXml(buscarRespuesta) xRtaRta = True Catch ex As Exception xRtaRta = False End Try Application.DoEvents() ...
by mterraz
Wed Jul 12, 2023 4:37 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Webservice de .NET a Fivewin
Replies: 2
Views: 585

Re: Insertar imágen de recurso en Excel

... Left, Top, Width, Height, Anchor). The Filename parameter is the path to the Bitmap file you want to insert. The LinkToFile parameter is a Boolean value that determines whether the Bitmap is linked to the file or not. The SaveWithDocument parameter is a Boolean value that determines whether ...
by Jimmy
Mon Mar 13, 2023 7:08 am
 
Forum: FiveWin para Harbour/xHarbour
Topic: Insertar imágen de recurso en Excel
Replies: 7
Views: 599

Re: different Warning using BCC7 32 Bit / MSVC 64 Bit

hi, now i have create own Structure, from Original (and add "X"), but change Member from BOOLEAN to BOOL typedef struct _PREVENT_MEDIA_REMOVALX {  BOOL PreventMediaRemoval;} PREVENT_MEDIA_REMOVALX, *PPREVENT_MEDIA_REMOVALX;BOOL PreventRemovalOfVolume(HANDLE ...
by Jimmy
Wed Feb 22, 2023 6:30 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: different Warning using BCC7 32 Bit / MSVC 64 Bit
Replies: 6
Views: 420

can i make a HB_FUNC() of it ?

...      NULL, 0, &dwBytesReturned, NULL );} HB_FUNC.PRG(148): warning C4244: "=": Konvertierung von "BOOL" in "BOOLEAN", möglicher Datenverlust HB_FUNC.PRG(156): warning C4431: Fehlender Typspezifizierer - int wird angenommen. Hinweis: "default-int" ...
by Jimmy
Sat Feb 18, 2023 10:23 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: can i make a HB_FUNC() of it ?
Replies: 2
Views: 231

Re: different Warning using BCC7 32 Bit / MSVC 64 Bit

... Programmer i have no Idea how to change CODE --- Waring around Line 13x are "clear" (so far ...) but what is "BOOL" vs. "BOOLEAN" which i got using MSVC 64 Bit :?: i guess it is Parameter BOOL fPreventRemoval What this is supposed to mean?   if( LockVolume(hVolume) ...
by Jimmy
Thu Dec 15, 2022 3:00 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: different Warning using BCC7 32 Bit / MSVC 64 Bit
Replies: 6
Views: 420

different Warning using BCC7 32 Bit / MSVC 64 Bit

... in function HB_FUN_EJECTREMOVABLE msvc 64 bit HB_FUNC.PRG(97): warning C4244: "=": Konvertierung von "BOOL" in "BOOLEAN", möglicher Datenverlust HB_FUNC.PRG(104): warning C4431: Fehlender Typspezifizierer - int wird angenommen. Hinweis: "default-int" ...
by Jimmy
Thu Dec 15, 2022 1:07 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: different Warning using BCC7 32 Bit / MSVC 64 Bit
Replies: 6
Views: 420

Re: cGetFile32 initial file

... cInitDir, lSave, nFlags, cIniFile ) local cSection, cFile local nRet DEFAULT lSave := .f. CursorWait() // On cGetFile() that parameter is a boolean for long filenames if nFlags != Nil .and. ValType( nFlags ) != "N" nFlags := Nil endif if ! lSave cSection := "GetOpenFileName" ...
by PAUL SIMM
Mon Nov 28, 2022 1:23 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: cGetFile32 initial file
Replies: 3
Views: 603

Re: Mr. Rao - Error using BIT type with TRecSet Class - Ado

... deals with BIT fields properly. BIT field needs to be defined like this: `MARRIED` bit(1) DEFAULT b'0', ADO always treats BIT fields as Boolean values ( Type 11 adBoolean ). ADO does not natively support treating TINYINT as LOGICAL. If we want, we need to handle this by ourselves in ...
by nageswaragunupudi
Mon Aug 29, 2022 4:49 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Mr. Rao - Error using BIT type with TRecSet Class - Ado
Replies: 3
Views: 377

tree y scan

... == oItem:cargo["nId"]})   oItem:= ::oTree:select(o)  pero... al hacer un    fwdbg oItem  me devuelve un valor boolean. En que le estoy errando? gracias.
by goosfancito
Tue Jul 05, 2022 10:03 am
 
Forum: FiveWin para Harbour/xHarbour
Topic: tree y scan
Replies: 2
Views: 282

Issue with FWH64/Harbour64/BCC7164 and Mysql.h file

... included from c:\bcc7164\include\windows\sdk\wtypes.h:40: c:\bcc7164\include\windows\sdk/wtypesbase.h:499:17: warning: redefinition of typedef 'BOOLEAN' is a C11 feature [-Wtypedef-redefinition] typedef boolean BOOLEAN; ^ c:\bcc7164\include\windows\sdk\winnt.h:1093:15: note: previous definition ...
by Compuin
Fri Jun 25, 2021 7:38 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Issue with FWH64/Harbour64/BCC7164 and Mysql.h file
Replies: 61
Views: 4109

TCBrowse, lOneColumnHighLight

I found some code that no longer works where it is saving a boolean to an instance variable: oBrw:lOneColumnHighLight := .t. Is this something that was available in previous versions of FiveWin. I went back to Feb of 2018 in my code and I am calling this ...
by byron.hopp
Wed Jun 09, 2021 12:04 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: TCBrowse, lOneColumnHighLight
Replies: 0
Views: 290
Next

Return to advanced search