Search found 18 matches: sections

Searched query: sections

by Silvio.Falconi
Fri Nov 15, 2024 9:41 am
Forum: FiveWin for Harbour/xHarbour
Topic: xbrowse cell on two sections
Replies: 7
Views: 1423

Re: xbrowse cell on two sections

corrected

oCol:bClrStd := {|oCol,i| { RGB( 255, 0,0 ),IF (val(i:Value) >=100, CLR_BLUE,CLR_WHITE) } }


Image


How can I outline each square, that is, put a space on the side and below each square?
by Silvio.Falconi
Thu Nov 14, 2024 9:37 am
Forum: FiveWin for Harbour/xHarbour
Topic: xbrowse cell on two sections
Replies: 7
Views: 1423

Re: xbrowse cell on two sections

#include "fivewin.ch"

function Main()

local aData := { ;
{ "Bari", 43, 103, 11, 69 }, ;
{ "Roma", 53, 117, 21, 57 }, ;
{ "Toino", 70, 60, 55, 34 }, ;
{ "", 0, 0, 0, 0 } }

XBROWSER aData SETUP TITLE "SetColsAsRows" xSetUp( oBrw )

return nil

function xSetUp( oBrw )

local n

oBrw ...
by Silvio.Falconi
Thu Oct 31, 2024 8:39 pm
Forum: FiveWin for Harbour/xHarbour
Topic: xbrowse cell on two sections
Replies: 7
Views: 1423

Re: xbrowse cell on two sections

Perhaps...

https://i.postimg.cc/DZVVt8GK/ll.png

why the line (red) is more big than line of numbers ?

I made

FOR i := 1 TO LEN(:aCols)
oCol := :aCols[ i ]
if i >1 .and. hb_bitand(i,1)>0
oCol:bClrStd := {|| { CLR_WHITE, RGB(255,0,0) } }
oCol:bClrSelFocus := {|| { CLR_BLACK, { { 1, RGB ...
by Silvio.Falconi
Thu Oct 31, 2024 8:22 pm
Forum: FiveWin for Harbour/xHarbour
Topic: xbrowse cell on two sections
Replies: 7
Views: 1423

Re: xbrowse cell on two sections

there is an error

https://i.postimg.cc/fTdzyQwC/kk.png

the last 5 headers are bad

I made
AEval( oBrw:aCols, { |oCol,i| If( i % 2 = 0, ;
oCol:bClrStd := oCol:bClrSelFocus := { || {CLR_WHITE,CLR_HRED } }, nil ) } )


:cHeaders := { "Name", "Num/Rit", "Num/Rit", "Num/Rit",;
"Num/Rit","Num ...
by Silvio.Falconi
Thu Oct 31, 2024 7:56 pm
Forum: FiveWin for Harbour/xHarbour
Topic: xbrowse cell on two sections
Replies: 7
Views: 1423

Re: xbrowse cell on two sections

#include "fivewin.ch"

function Main()

local aData := { ;
{ "Bari", 43, 103, 11, 69 }, ;
{ "Roma", 53, 117, 21, 57 }, ;
{ "Toino", 70, 60, 55, 34 }, ;
{ "", 0, 0, 0, 0 } }

XBROWSER aData SETUP TITLE "SetColsAsRows" xSetUp( oBrw )

return nil

function xSetUp( oBrw )

local n

oBrw ...
by Silvio.Falconi
Thu Oct 31, 2024 5:25 pm
Forum: FiveWin for Harbour/xHarbour
Topic: xbrowse cell on two sections
Replies: 7
Views: 1423

Re: xbrowse cell on two sections

#include "fivewin.ch"

function Main()

local aData := { ;
{ "Bari", 43, 103, 11, 69 }, ;
{ "Roma", 53, 117, 21, 57 }, ;
{ "Toino", 70, 60, 55, 34 }, ;
{ "", 0, 0, 0, 0 } }

XBROWSER aData SETUP TITLE "SetColsAsRows" xSetUp( oBrw )

return nil

function xSetUp( oBrw )

local n

oBrw ...
by nageswaragunupudi
Thu Oct 31, 2024 1:37 pm
Forum: FiveWin for Harbour/xHarbour
Topic: xbrowse cell on two sections
Replies: 7
Views: 1423

Re: xbrowse cell on two sections

#include "fivewin.ch"

function Main()

local aData := { ;
{ "Bari", 43, 103, 11, 69 }, ;
{ "Roma", 53, 117, 21, 57 }, ;
{ "Toino", 70, 60, 55, 34 }, ;
{ "", 0, 0, 0, 0 } }

XBROWSER aData SETUP TITLE "SetColsAsRows" xSetUp( oBrw )

return nil

function xSetUp( oBrw )

local n

oBrw ...
by Silvio.Falconi
Thu Oct 31, 2024 10:51 am
Forum: FiveWin for Harbour/xHarbour
Topic: xbrowse cell on two sections
Replies: 7
Views: 1423

xbrowse cell on two sections

I have this xbrowse

https://i.postimg.cc/Kvy0g1mK/ritardo.png

these two columns are related to the number and late extractions (red color)

I would like to change the layout in this way: above the number and below in the same cell the late extractions

https://i.postimg.cc/K834S8gN/kk.png ...
by nnicanor
Wed Sep 25, 2024 2:37 pm
Forum: FiveWin for Harbour/xHarbour
Topic: Bug Maria_Connect() FWH-24.07 64 bits ???
Replies: 37
Views: 4056

Re: Bug Maria_Connect() FWH-24.07 64 bits ???

... hb_vmPush(pObject);
hb_vmSend(0);
}
hb_gcSetCollecting(bCollecting); // Ensure GC is reset even after errors


### 6. **Isolate Problematic Sections**
If you know where the crash is likely happening (for example, around `hb_vmSend(0)`), isolate that code into a separate function and handle ...
by chiaiese
Tue Sep 03, 2024 12:57 am
Forum: FiveWin for Harbour/xHarbour
Topic: How to Work with FIVEWIN and Web Side by Side - An Easy Way
Replies: 9
Views: 2264

Re: How to Work with FIVEWIN and Web Side by Side - An Easy Way

... via $KEYWORDS to create real-time contents.
We can also define nested templates (virtual pages) so can create very complex pages built by 'sections' .or. share sections across multiple pages (as an example page header and footer are 'sections')
Don't update pages, update sections!

There is ...
by Otto
Mon May 27, 2024 8:20 am
Forum: FiveWin for Harbour/xHarbour
Topic: DivMasterJS
Replies: 3
Views: 497

DivMasterJS

... Both MDI windows and nested <div> elements help organize content in a structured manner, making it easier to manage and interact with multiple sections or documents.

Best regards,
Otto


If you "harbourinoize" the source code, it becomes much easier to maintain and is much clearer.
HARBOURINO ...
by Otto
Thu Mar 21, 2024 10:55 pm
Forum: FiveWin for Harbour/xHarbour
Topic: WebView resize
Replies: 9
Views: 3012

Re: WebView resize

... for a splitter, you can create a resizable split view using JavaScript and CSS. This would allow users to adjust the space allocated to different sections of the UI, similar to the SPLITTER in FiveWin.

TEXplorerBar or Accordions: In a web context within WebView2, you can use Bootstrap's Accordion ...
by Silvio.Falconi
Thu Sep 21, 2023 12:06 pm
Forum: FiveWin for Harbour/xHarbour
Topic: FIVEWIN power - a room planer video
Replies: 50
Views: 13681

Re: FIVEWIN power - a room planer video

... hourly hotel (motel), the overnight stay takes place in the morning or in the afternoon or for the whole day (from the day to the next day) as happens in your hotel.

the booking classes available for fiewin are not compatible for my case, I need the division of each day into two sections, AM and PM
by Antonio Linares
Tue Jul 11, 2023 4:53 pm
Forum: FiveWin for Harbour/xHarbour
Topic: Create help system with F1
Replies: 15
Views: 1817

Re: Create help system with F1

... and formatting requirements of your help content.

Category: An optional field that categorizes the help topics into different groups or sections. This field can help users navigate through the help content based on their specific needs or interests.

Keywords: A field to store keywords or ...
by Silvio.Falconi
Wed Jul 05, 2023 7:50 am
Forum: FiveWin for Harbour/xHarbour
Topic: SECTIONS READING
Replies: 3
Views: 442

Re: SECTIONS READING

Detlef wrote:To find all entries of each section you may look at this function from Enrico.
https://forums.fivetechsupport.com/view ... 46#p255239
I used that function's Emg