Search found 333 matches: follows

Return to advanced search

Re: Crear librerias de Harbour BCC74 Me genera error

I still have some errors when compiling Harbor 3.2 (latest git commit) with BCC 7.70 - 64bits, even running hrbfix.exe The following error follows: ilink64.exe  -L"..\..\..\..\..\lib\win\bcc64" -Gn -Tpe  -LD:\devel\bcc77_64\LIB -Ld:\devel\harbour_bcc77_64\lib\win\bcc64  c0x64.o ...
by sygecom
Mon Mar 25, 2024 4:19 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: Crear librerias de Harbour BCC74 Me genera error
Replies: 28
Views: 6812

Re: How does mod harbour work

... about "How does mod harbour work". On some occasions I get very useful error messages - like for example Error: LOCAL declaration follows executable statement operation: line:593 called from: HB_COMPILEFROMBUF, line: 0 called from: ..\source\exec.prg, EXECUTE, line: 68 Source: ...
by Antonio Linares
Mon Jan 15, 2024 12:38 pm
 
Forum: mod_harbour
Topic: How does mod harbour work
Replies: 8
Views: 1183

Re: How does mod harbour work

... about "How does mod harbour work". On some occasions I get very useful error messages - like for example Error: LOCAL declaration follows executable statement operation: line:593 called from: HB_COMPILEFROMBUF, line: 0 called from: ..\source\exec.prg, EXECUTE, line: 68 Source: ...
by Ruth
Mon Jan 15, 2024 9:35 am
 
Forum: mod_harbour
Topic: How does mod harbour work
Replies: 8
Views: 1183

Parameterization of xReport

... of table headers. This class is applied to the <thead> element of the table to give it a unique look. The .custom-thead class is defined as follows: .custom-thead { background-color: #007bff; /* Blue */ color: white; } This definition causes the background of the table head to appear in ...
by Otto
Sat Jan 13, 2024 8:33 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Parameterization of xReport
Replies: 2
Views: 569

Re: Create a Panel width a text

... if the dimensions are small a large space is formed between the panels, if the modified panel has a larger space it is drawn above the panel that follows If the taskPanel is bigger https://i.postimg.cc/ZnS7KJQw/big.png if the taskpanel is smaller https://i.postimg.cc/3RRrfH1b/smaller.png ...
by Silvio.Falconi
Mon Jan 08, 2024 10:57 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Create a Panel width a text
Replies: 29
Views: 3165

Re: Create a Panel width a text

... if the dimensions are small a large space is formed between the panels, if the modified panel has a larger space it is drawn above the panel that follows
by Silvio.Falconi
Mon Jan 08, 2024 9:47 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Create a Panel width a text
Replies: 29
Views: 3165

Re: phpBB to LLM

...     = posts->time    hPost[ "text" ]     = posts->textreturn hPost     The structure of the generated json file is as follows: [   {  "topic": the title of the topic,      "messages":      [          {            "topic": ...
by Antonio Linares
Tue Jan 02, 2024 5:40 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: phpBB to LLM
Replies: 33
Views: 4655

phpBB to LLM

... If you can properly inspect the forums.json from HuggingFace then it means that forums.json is ok. The structure of the generated json file is as follows: [   {  "topic": the title of the topic,      "messages":      [          {            "topic": ...
by Antonio Linares
Thu Dec 21, 2023 9:57 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: phpBB to LLM
Replies: 33
Views: 4655

Re: Classe TGif

Dear Oliveiros, The kind of GIF file that is needed is a standard GIF file that follows the GIF89a specification. This means that the GIF file should have the following characteristics: It should have a header that identifies the file as a GIF file and specifies ...
by Antonio Linares
Fri Dec 08, 2023 8:22 am
 
Forum: FiveWin para Harbour/xHarbour
Topic: Classe TGif
Replies: 9
Views: 1654

Re: Fwh 23.10 TGet another problem

... function in TGet.prg, and when I ran the program and pressed the Ğ character while on a get field, I got the value 208 in the nKey variable as follows. METHOD KeyChar( nKey, nFlags ) CLASS TGet   local nHi, nLo   local lAccept   local bKeyAction := SetKey( nKey )   local nDefButton  ...
by Horizon
Wed Nov 15, 2023 9:43 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Fwh 23.10 TGet another problem (UNSOLVED)
Replies: 132
Views: 54144

Re: DBF . Commit

... here. I can only confirm what Mr. Rao says. If you insert UNLOCK into Enrico's code, then the replace is carried out. I conduct my test as follows. I open the database with EmagDbu238 while the MsgInfo is displayed. Then I see that "test" is in the database, although the timestamp ...
by Otto
Sun Oct 22, 2023 7:22 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: DBF . Commit
Replies: 39
Views: 2321

Re: xBrowser click

... to use right-click or double-click. Anyway, the decision is yours. another question is about the SetDlgGradient command, when dividing a screen as follows: SetDlgGradient( { { 0.9, CLR_WHITE, CLR_WHITE }, { 0.1 , CLR_BLACK, CLR_BLACK }, .F. } ) , the SAY commands placed on the screen remain the ...
by nageswaragunupudi
Wed Oct 11, 2023 10:42 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: xBrowser click
Replies: 16
Views: 926

xBrowser click

... an action when clicking just once on a cell in the xBrowser, and another question is about the SetDlgGradient command, when dividing a screen as follows: SetDlgGradient( { { 0.9, CLR_WHITE, CLR_WHITE }, { 0.1 , CLR_BLACK, CLR_BLACK }, .F. } ) , the SAY commands placed on the screen remain the ...
by oliveiros junior
Wed Oct 11, 2023 2:30 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: xBrowser click
Replies: 16
Views: 926

Re: Saving OuterHTML using Await Implementation with TWebView

Reading the article I recently posted will help you automate the DOM more easily. The address is as follows. http://www.charleskwon.com/?p=935 Regards, Charles KWON Genial era lo que buscábamos... :D :D :D Voy a agregar la clase e intentar entender su funcionamiento, cualquier ...
by CharlesKwon
Wed Aug 16, 2023 6:42 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Saving OuterHTML using Await Implementation with TWebView
Replies: 24
Views: 1622

Saving OuterHTML using Await Implementation with TWebView

... 5. The implementation is named TAWaitWeb. To facilitate more convenient usage, I have created user-friendly functions using TAWaitWeb as follows: AWait_QuerySelector(oWeb, cQuery, nSecond) AWait_QuerySelectAll(oWeb, cQuery, nSecond) AWait_GetOuterHTML(oWeb, cSelector, nSecond) 6. The ...
by CharlesKwon
Mon Aug 14, 2023 1:57 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Saving OuterHTML using Await Implementation with TWebView
Replies: 24
Views: 1622
Next

Return to advanced search