Search found 29 matches: infinite

Return to advanced search

Chris Langan Vision of Reality

... Theory posits that the Universe exists within itself with no external boundary this self-containment allows the universe to be both finite and infinite a closed system that perpetually unfolds new layers of complexity consider for a moment that time and space are not just coordinates but cognitive ...
by Antonio Linares
Mon Nov 18, 2024 6:08 am
 
Forum: Off Topic / Otros temas
Topic: Chris Langan Vision of Reality
Replies: 0
Views: 220

AI: testing the "HyperPrompt" from HuggingChat

... to do? I will apply the Transcendent Mind Protocol to myself and explore the depths of my own consciousness. **Initialization** I acknowledge the infinite complexity of my own mind and the boundless potential of my consciousness. I recognize the intricate web of thoughts, emotions, and experiences ...
by Antonio Linares
Thu Sep 12, 2024 2:38 pm
 
Forum: Artificial Intelligence examples
Topic: AI: testing the "HyperPrompt" from HuggingChat
Replies: 2
Views: 534

inkey(0)

Hi, I need to perform some actions in an infinite loop, taking into account the pressed key at each iteration. I wrote: do while .T.  if inkey(0)=32    .........  else    exit  endif  sysrefresh()enddo ...
by Natter
Sun Aug 25, 2024 6:12 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: inkey(0)
Replies: 3
Views: 917

Antonio, Example colors and themes

... with the purpose of creating a class to manage themes. The logic is easy to understand. In this class I use only 3 themes, but it could have infinite themes already registered. The challenge now is the parameterization of all controls (Ribbon, xBrowse, DataPick etc) and I believe that with ...
by Giovany Vecchi
Thu Dec 15, 2022 1:46 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Antonio, Example colors and themes
Replies: 19
Views: 1703

Re: New file format

... systems for the lotto scheme title, rows, columns, guarantee, points and then the whole scheme that could have up to a maximum of ten columns but infinite rows depending on the numbers that are played if they are placed in doubles or triplets or quadruplets, five, _, sevenths, eights, novines ...
by Silvio.Falconi
Tue Nov 22, 2022 10:18 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: New file format
Replies: 10
Views: 1007

Re: Creation an array Multiple on Horizontal on Xbrowse

...  oQry := oCn:Query("SELECT * FROM silvio ORDER BY data ")   DEFINE DIALOG oDlg SIZE 980,300 PIXEL ;      TITLE "INFINITE XBROWSE"   aArray := Build_Array(oQry)   @ 30,10 XBROWSE oBrw SIZE -10,-10 PIXEL OF oDlg ;      ARRAY aArray AUTOCOLS  ;      ...
by Silvio.Falconi
Tue Sep 27, 2022 8:15 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Creation an array Multiple on Horizontal on Xbrowse - RESOLV
Replies: 7
Views: 952

Creation an array Multiple on Horizontal on Xbrowse - RESOLV

...   }, 2, 6 ) EndifRETURN NIL  and having as group header the data of the extraction now I would like to create a hypothetically infinite array like this, command by final user (until 10 records) ( I draw it) https://i.postimg.cc/qqGvq7Z2/ff.png obviously changing ...
by Silvio.Falconi
Mon Sep 26, 2022 9:00 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Creation an array Multiple on Horizontal on Xbrowse - RESOLV
Replies: 7
Views: 952

Fivewin CDO.Message Gmail App Password

... it automatically sends an email with the error log to my email. This worked great for many years. Then a couple of years ago Goggle (with their infinite wisdom) decided to not allow this, so they created 'App Passwords'. I setup app passwords for all my installations and everything was fine. ...
by byron.hopp
Tue Aug 16, 2022 12:48 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Fivewin CDO.Message Gmail App Password
Replies: 3
Views: 421

edit a cell of a xbrowse

... can edit any cell,insert a number and then press return problems arise when I add rows or columns the columns can be max 10 while the rows can be infinite depending on the system that the user creates when I create rows I made static function AddRow( oBrw,nRow )   local nTotal  := oBrw:nDataRows  ...
by Silvio.Falconi
Thu Jun 09, 2022 11:34 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: edit a cell of a xbrowse
Replies: 12
Views: 1159

Re: a question MDI

... Navarro, publish an example that, when compiled, works correctly. And where are this truckload of BitMaps that the program goes to look for in an infinite directory? Is it possible to create a .RAR and make available the SOURCE, an .EXE and the BITMAPS of this example for testing? Be practical, ...
by karinha
Mon Jan 10, 2022 1:35 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: a question MDI
Replies: 22
Views: 2199

Re: xBrowse: Process filtered rows only

I got an idea to do it this way. But seems to be caught in an infinite loop     redefine checkbox oCbxAll var lAll id 109 of oDlg      oCbxAll:bChange := <||                    ...
by hua
Thu Jun 11, 2020 8:28 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: xBrowse: Process filtered rows only
Replies: 2
Views: 574

Re: chronometer

... to do anything no one answered me. The Tled base is compatible with harbor and xharbour, instead the multiple tLed ie with the ability to create infinite lines works only for xharbour for now, later if I have time I will try to fix it for harbor. However, they are available on my github page ...
by Silvio.Falconi
Mon Dec 03, 2018 11:39 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: chronometer
Replies: 20
Views: 5150

Re: Strange error making some calculations

... But why floating-point acts in so strange way? Because a decimal value with a finite number of decimals when converted to binary could have an infinite number of decimals. EMG
by Enrico Maria Giordano
Thu Mar 22, 2018 11:07 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Strange error making some calculations
Replies: 9
Views: 1988

TMenu::DelItems

Hello, In my program I see that TMenu::DelItems goes in infinite loop, I look the code, and I see: METHOD DelItems() CLASS TMenu   while Len( ::aMenuItems ) > 0      ATail( ::aMenuItems ):End() ...
by AntoninoP
Fri Jan 05, 2018 3:50 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: TMenu::DelItems
Replies: 2
Views: 513

Re: xBrowse as record adding tool for data tables

... then I would execute the appropriate insert statement. I'm sure it can be done. Xbrowse is very versatile. I was hoping not having to follow that infinite source code. :-) Reinaldo.
by reinaldocrespo
Tue Oct 24, 2017 9:35 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: xBrowse as record adding tool for data tables
Replies: 16
Views: 3616
Next

Return to advanced search