Search found 24 matches: nodes

Return to advanced search

Re: Introducing Galaxy

... programming language inspired by the galactic structure, designed to model complex, adaptive, and hierarchical systems through interconnected nodes and natural mathematical patterns like Fibonacci and the golden ratio Esta página de GitHub describe el repositorio del lenguaje de programación ...
by Antonio Linares
Thu Nov 21, 2024 6:20 am
 
Forum: latest AI news
Topic: Introducing Galaxy
Replies: 1
Views: 193

Introducing Galaxy

... language inspired by the structure of galaxies. Its goal is to model complex, adaptive, and hierarchical systems through interconnected nodes and natural mathematical patterns like the Golden Ratio (PHI) and Fibonacci sequences. The language provides an intuitive framework for creating ...
by Antonio Linares
Thu Nov 21, 2024 5:38 am
 
Forum: latest AI news
Topic: Introducing Galaxy
Replies: 1
Views: 193

Re: Looking for links in tables

... Efficiency: It uses BFS, which is optimal for finding all connections in an undirected graph. No redundant checks: It keeps track of visited nodes to avoid revisiting the same connections. Single pass: It builds all connections in one traversal of the graph. Flexibility: It can easily be ...
by Antonio Linares
Mon Sep 02, 2024 3:17 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Looking for links in tables
Replies: 2
Views: 629

Re: FACTURACION ELECTRONICA EN LINEA

... (línea de comandos): 1. Convierte el certificado.p12 a formato PEM (PKCS#8): openssl pkcs12 -in tu_certificado.p12 -out tu_certificado.pem -nodes 2. Crea un archivo de configuración para la firma (por ejemplo, configuracion.cfg): [ firma ] cert = tu_certificado.pem clave_privada = tu_certificado.pem ...
by Antonio Linares
Wed Aug 14, 2024 4:25 am
 
Forum: FiveWin para Harbour/xHarbour
Topic: FACTURACION ELECTRONICA EN LINEA
Replies: 18
Views: 4000

Fivewin controls similar to javascript elements

... are then handled by the application's message loop. This is somewhat analogous to events in the JavaScript DOM, where events are dispatched to nodes in the DOM tree. Event Listeners/Handlers: In both Windows applications (including those developed with FiveWin) and JavaScript, you typically ...
by Otto
Tue Nov 21, 2023 7:33 am
 
Forum: mod_harbour
Topic: Fivewin controls similar to javascript elements
Replies: 2
Views: 1681

Re: Tree con xBrowse

... record numbers. aSelected and Tree do not go together. The record positions in a Tree are volatile (not fixed) and keep changing when tree nodes are opened and closed. aSelected works for datasource where the RecNo is fixed for each record. This requires a different approach and that is ...
by nageswaragunupudi
Thu Feb 04, 2021 3:39 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: Tree con xBrowse
Replies: 4
Views: 517

Re: Are there any Treeview samples with associated edit boxes?

... page? So, I removed the popup that asks if you want to replace the file, when you click the Save button. Recompiled, and looks fine. I added some nodes to the test.xml, and also changed the pages associated with some of the nodes, and then added an image to one of the pages. Saved and exited. ...
by FWExplorer
Thu Dec 10, 2020 3:39 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Are there any Treeview samples with associated edit boxes?
Replies: 44
Views: 6101

TTreeview all opened

Hi,

i have:
oTree := TTreeView():New( 0, 0, oWnd )
oTree:nWidth = 180
oTree:Expand()
..
.
.
HOW CAN I SHOW ALL THE TREE OPENED with all the nodes opened ?

tks
by Romeo
Mon May 13, 2019 3:00 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: TTreeview all opened
Replies: 2
Views: 564

Re: print Treeview

hardcopy prints just actual view.
I have a lot of tree of BOM (bill of materials) with dozens of nodes, I can not to print whit hardcopy, scroll dialog and print next nodes with another hardcopy in another page.
by damianodec
Mon May 13, 2019 6:47 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: print Treeview
Replies: 8
Views: 947

Re: TensorFlow DLL for Windows (64 bits)

... of a TensorFlow tensor as an n-dimensional array or list. A tensor has a static type and dynamic dimensions. Only tensors may be passed between nodes in the computation graph. https://www.tensorflow.org/programmers_guide/dims_types tf.prg #include "FiveWin.ch"#define TF_STRING ...
by Antonio Linares
Sat Jun 03, 2017 7:27 am
 
Forum: TensorFlow.dll for Harbour and FWH
Topic: TensorFlow DLL for Windows (64 bits)
Replies: 28
Views: 20017

Re: Introducing FiveTech's fivedit

... on a method or function and the source for that is displayed in the edit panel. There are buttons for sorting and expanding and collapsing all the nodes. It also has a few other buttons I have never used and I am not sure what they do. James
by James Bott
Tue Feb 23, 2016 8:12 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Introducing FiveTech's fivedit
Replies: 560
Views: 129890

Problema al actualizar a Windows 10

... Processor 0 -* Physical Processor 1 Logical Processor to Socket Map: ** Socket 0 Logical Processor to NUMA Node Map: ** NUMA Node 0 No NUMA nodes. Logical Processor to Cache Map: *- Data Cache 0, Level 1, 32 KB, Assoc 8, LineSize 64 *- Instruction Cache 0, Level 1, 32 KB, Assoc 8, LineSize ...
by cnavarro
Thu Aug 20, 2015 8:49 pm
 
Forum: Off Topic / Otros temas
Topic: Problema al actualizar a Windows 10
Replies: 2
Views: 1320

Re: DIREFENCIA ENTRE HARBOUR/XHARBOUR

... := FOpen( cFileName ) xmlDoc := TXmlDocument():New( hFile ) xmlNode := xmlDoc:oRoot:oChild cXml := xmlNode:Path() // there are methods to find nodes (but also attributes, values and data): xmlNode := xmlDoc:FindFirstRegex( cNode ) // to modify them: xmlNode:SetAttribute( "Name", "MyNode" ...
by Antonio Linares
Sun Jul 12, 2015 9:26 am
 
Forum: FiveWin para Harbour/xHarbour
Topic: DIREFENCIA ENTRE HARBOUR/XHARBOUR
Replies: 4
Views: 2415

TXMLDocument()/TXMLIterator()

I have a XML with this structure: The TXML classes dont have a sample with multiple nodes with the same name with Iterators in each. <Tributacoes> -> Multiple <Segmento> Each <Segmento> have Multiple nodes, each with Multiple tags. How I can read ...
by sambomb
Mon May 11, 2015 12:43 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: TXMLDocument()/TXMLIterator()
Replies: 3
Views: 1011

Re: Processing XML Data

Darrell, This example shows how to iterate those nodes: (I have renamed your XML to test.xml) darrell.prg #include "FiveWin.ch"function Main()      local oXmlDoc  := TXmlDocument():New( "test.xml" ...
by Antonio Linares
Wed Mar 13, 2013 12:35 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Processing XML Data
Replies: 10
Views: 6455
Next

Return to advanced search