Search found 105 matches: nested

Return to advanced search

Re: Subordinate browsers

There are 2 xBrowse - oBrw1 and oBrw2. I need to nest oBrw2 into oBrw1.
Code: Select all  Expand view  RUN
SetParent(oBrw2:hWnd, oBrw1:hWnd)

I.e. I wanted to make a tree of nested xBrowse controls
However, nothing is working out :(
by Natter
Mon Oct 21, 2024 6:07 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Subordinate browsers
Replies: 5
Views: 249

Re: a math formula

... This should give you the correct nInitialBet for the values you specified. If you need to handle both nFixedProfit and nFixedUse, you can use a nested IF statement to check which variable is being used: =IF(nFixedProfit <= 28, 1.50 + FLOOR((nFixedProfit - 10) / 4, 1) * 0.50, IF(nFixedUse ...
by Jimmy
Wed Oct 16, 2024 3:50 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: a math formula - RESOLVED -
Replies: 8
Views: 407

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

... the stack state before and after every operation involving the stack (`hb_stackPush()`, `hb_stackPopState()`). Ensure the stack is not too deeply nested, as excessive nesting can cause a stack overflow in 64-bit: [/code] if (hb_stackBaseItem() == NULL || hb_stackSelfItem() == NULL) { // Handle ...
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: 1393

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

... is executed at runtime, the result is macro-substituted inside the html template 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 ...
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: 1679

DivMasterJS

... other <div> elements, although they are used in different contexts and have distinct functionalities. Containment: Both MDI windows and nested <div> elements involve a parent-child containment relationship. MDI windows have child windows within a parent window, while nested <div> ...
by Otto
Mon May 27, 2024 8:20 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: DivMasterJS
Replies: 3
Views: 399

New FTDN April/Abril 2023 (FWH 23.04)

... seek, wildseek and seeknext. Note: Incremental filters are not supported yet. - function HashTree( hHash ) --> oTree enhanced. Now can handle nested arrays of hashes also. - New METHOD ToArray( [aCols] ) --> aData - oCol:aDataFonts, aClrText, used for multiline text can now be codeblocks ...
by Antonio Linares
Tue May 02, 2023 7:08 am
 
Forum: WhatsNew / Novedades
Topic: New FTDN April/Abril 2023 (FWH 23.04)
Replies: 4
Views: 3027

New FTDN December/Diciembre 2022 (FW 22.12)

... [aColPos/bSort] ) --> aSorted By default, this works just as normal ASort(), but if the fourth parameter is an array of column numbers, a nested sort is performed on multiple columns. For descending order, specify the column number as negative number. Eg: ASort( aArray,,{ 2, -4, 5 } ) ...
by Antonio Linares
Tue Jan 03, 2023 7:31 am
 
Forum: WhatsNew / Novedades
Topic: New FTDN December/Diciembre 2022 (FW 22.12)
Replies: 5
Views: 2496

Re: Combinaciones de letras

... combinations    print_combinations(word);    return 0;} Y además te explica lo que ha hecho: This program uses a nested loop to generate all possible combinations of three or more letters in the given word. The outer two loops iterate over all pairs of letters ...
by Antonio Linares
Tue Dec 06, 2022 10:27 am
 
Forum: FiveWin para Harbour/xHarbour
Topic: Combinaciones de letras
Replies: 12
Views: 1558

Re: Does anyone have a json reader

Browsing a nested Json using HashTree   c  := '{"prices":{"basePrice":"44.8900","normalPrice":"44.8900","price":"40.5000","specialPrice":"40.5000","purchasePrice":"0.0000"}}'  ...
by nageswaragunupudi
Thu Nov 10, 2022 3:28 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Does anyone have a json reader
Replies: 7
Views: 917

Re: Xbrowse can read Jason... but I can not ...

For Hashes containing nested hashes/arrays, use HashTree.

XBROWSER HashTree( hHash )
by nageswaragunupudi
Tue Oct 04, 2022 6:17 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Xbrowse can read Jason... but I can not ...
Replies: 1
Views: 259

Resolve nested brackets

Hello friends,
Before I go deeper into this problem, I would like to ask whether there is an algorithm for resolving nested brackets

Thank you in advance
Otto
by Otto
Tue Nov 16, 2021 7:35 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Resolve nested brackets
Replies: 0
Views: 283

Re: read xml file

Fixed bug when saving nested childs:

Full source code and EXE:
https://github.com/FiveTechSoft/FWH_tools/blob/master/pim.zip
by Antonio Linares
Tue Dec 22, 2020 10:52 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: read xml file
Replies: 6
Views: 1350

New FTDN June 2020 (FWH 20.06)

... runtime error. fixed http://forums.fivetechsupport.com/viewtopic.php?f=3&t=38925 - new function HashTree( hHash, [nOpenLevel] ) --> oTree A nested hash (some values of a hash being hash again) can be represented as a tree for convenient display in xbrowse. http://forums.fivetechsupport.com/viewtopic.php?f=3&t=39022&p=232806&hilit=hash_tree#p232806 ...
by Antonio Linares
Thu Jul 09, 2020 9:37 am
 
Forum: WhatsNew / Novedades
Topic: New FTDN June 2020 (FWH 20.06)
Replies: 1
Views: 2149

New FTDN September/Septiembre 2019 (FWH 19.09)

... a new transaction only if no transaction is already in progress. Returns whether a new transaction is started or not. - Support for SAVEPOINT (nested transacions). This feature is available with MariaDB and MySql server verson 5.0.3 and above. New Methods: SavePoint( cSavePt ) RollBack( cSavePt ...
by Antonio Linares
Sun Oct 13, 2019 11:14 am
 
Forum: WhatsNew / Novedades
Topic: New FTDN September/Septiembre 2019 (FWH 19.09)
Replies: 1
Views: 3783

send data with post method

... folder Antonio Linares 08:58 Uhr { values: [ one: "one", two: "two", three: "three" ] } arrays use [ ... ] can be nested as in Harbour always think in JSON terms whatever data you need to move around... use JSON $.post() sends the data as POST ________________________________________ ...
by Otto
Tue Sep 17, 2019 7:13 am
 
Forum: mod_harbour
Topic: send data with post method
Replies: 3
Views: 911
Next

Return to advanced search