Search found 1275 matches: exit

Return to advanced search

Re: xbrowse No existe el metodo: LREADONLY

... my modified xbrowse class for the example, it no longer gives an error when loading data, but sometimes it generates gpf when clicking on the exit button, for now I am going to use it like this, the example that asks me does not I can do it, it uses a TCP/IP biometric device. If it is not ...
by albeiroval
Sun Mar 03, 2024 7:50 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: xbrowse No existe el metodo: LREADONLY
Replies: 16
Views: 358

Re: Data exchange between PC and Android device on the same loca

... Report task $Report = fopen( $filename . "txt", "w"); if ($Report == false) { echo ("Error in opening new Report"); exit(); } fwrite($Report, "Print Report: Verkauf "); fclose($Report); The FIVEWIN program prepares all the data for the report and stores ...
by Arturo Lopesoria
Fri Feb 23, 2024 11:30 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Data exchange between PC and Android device on the same loca
Replies: 17
Views: 543

Re: Search by line

... function AtLine(itm, xBk)  local st, nOk:=0 ** itm - string  ** xBk - code block  xBk:=&xBk for st=1 to len(itm) if eval(xBk, itm[st]) nOk:=st exit endif next return nOk It works fine, but I wanted to know if there is already a similar function
by Natter
Tue Feb 06, 2024 4:21 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Search by line
Replies: 8
Views: 272

Re: Conectarse con mariaDB

... password, database, 0, NULL, 0) == NULL) { fprintf(stderr, "Error connecting to MySQL: %s\n", mysql_error(conn)); mysql_close(conn); exit(EXIT_FAILURE); } // Execute a simple query if (mysql_query(conn, "SELECT * FROM your_table")) { fprintf(stderr, "Error querying ...
by Antonio Linares
Mon Jan 01, 2024 2:55 pm
 
Forum: FiveMac / FivePhone (iPhone, iPad)
Topic: Conectarse con mariaDB
Replies: 4
Views: 2067

Conectarse con mariaDB

... linking... ld: Undefined symbols: _HB_FUN_MARIA_CONNECT, referenced from: _symbols_table in testdlg.o clang: error: linker command failed with exit code 1 (use -v to see invocation) done! The application cannot be opened for an unexpected reason, error=Error Domain=NSOSStatusErrorDomain Code=-10827 ...
by goosfancito
Mon Jan 01, 2024 9:22 am
 
Forum: FiveMac / FivePhone (iPhone, iPad)
Topic: Conectarse con mariaDB
Replies: 4
Views: 2067

Re: phpBB to LLM

... (pyproject.toml) ... done Building wheels for collected packages: pytorch Building wheel for pytorch (pyproject.toml) ... error error: subprocess-exited-with-error × Building wheel for pytorch (pyproject.toml) did not run successfully. │ exit code: 1 ╰─> [20 lines of output] Traceback (most ...
by alerchster
Mon Dec 25, 2023 6:42 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: phpBB to LLM
Replies: 33
Views: 3918

Re: OT - abro hilo FWH - MAC

hbmk2[gtalleg]: Error: Missing dependency: allegro
hbmk2[gtalleg]: Exit status: 10: dependency missing or disabled
! Finished package build...
./bin/darwin/clang/hbmk2 ./config/postinst.hb first
! postinst script finished
by goosfancito
Sun Dec 24, 2023 5:20 pm
 
Forum: FiveMac / FivePhone (iPhone, iPad)
Topic: OT - abro hilo FWH - MAC
Replies: 8
Views: 746

Re: check on get

... Prompt "&OK" SIZE  45,  10 PIXEL  OF oDlg ACTION  ( oDlg:end( IDOK ) ) @  80,  107 BUTTON oBtn2  Prompt "&EXIT"  SIZE  45,  10 PIXEL  OF oDlg ACTION  (oDlg:end( IDCANCEL ) )ACTIVATE DIALOG oDlgreturn nil   What was hard? Than I ...
by Silvio.Falconi
Wed Nov 29, 2023 8:49 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: check on get
Replies: 27
Views: 3752

check on get

... like to check if any get is modified during editing, if it is modified the procedure must ask the user to save or not when the user presses "Exit" I wanted to check if the gets have been modified I made #include"fivewin.ch"Function test()local aGet:=array(2)local ...
by Silvio.Falconi
Fri Nov 24, 2023 2:55 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: check on get
Replies: 27
Views: 3752

Errror al compilar en Minigui o Gcc

... \v_xharb_v3\lib\Harb_miw/libtwbrwx32_h.a: error adding symbols: archive has no index; run ranlib to add one collect2.exe: error: ld returned 1 exit status Alguien sabe comose usa el ranlib Gracias
by ruben Dario
Thu Sep 21, 2023 4:57 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: Errror al compilar en Minigui o Gcc
Replies: 1
Views: 178

Re: xHarbour.org updated!

... = TIPClientHttp():New( oUrl ) IF EMPTY( oCli ) BREAK ENDIF IF !oCli:Open( oUrl ) BREAK ENDIF WHILE .T. cString := oCli:Read() IF Empty(cString) EXIT ENDIF cMemo:=cMemo+cString ENDDO cString:=cMemo oCli:Close() oUrl:Close() END SEQUENCE MEMOWRIT("BCV.TXT",cMemo) MsgInfo( cString ) MemoEdit( ...
by wartiaga
Mon Sep 18, 2023 7:22 pm
 
Forum: WhatsNew / Novedades
Topic: xHarbour.org updated!
Replies: 154
Views: 30988

tFolderex and tGroup control

... tabs with animation please compile the sample file testfx1.prg with the line added below, then switch between tabs "setting" and "exit" and see the result    oFld:aDialogs[ 2 ]:SetBrush( oBrush2 )   oCtrl := TGroup():New(2,2,5,30,"tGroup() ...
by chiaiese
Wed Sep 13, 2023 11:36 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: tFolderex and tGroup control
Replies: 8
Views: 763

Re: Saving OuterHTML using Await Implementation with TWebView

... `AWait_QuerySelector` checks the `readyState` of the document. - If the document isn't completely loaded in six attempts (or iterations), it will exit the loop and show an error "Timeout! Try again". - If the document loads successfully, it displays the entire HTML of the page using ...
by CharlesKwon
Thu Aug 17, 2023 9:51 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Saving OuterHTML using Await Implementation with TWebView
Replies: 24
Views: 1518

Re: Saving OuterHTML using Await Implementation with TWebView

... `AWait_QuerySelector` checks the `readyState` of the document. - If the document isn't completely loaded in six attempts (or iterations), it will exit the loop and show an error "Timeout! Try again". - If the document loads successfully, it displays the entire HTML of the page using ...
by Otto
Thu Aug 17, 2023 8:21 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Saving OuterHTML using Await Implementation with TWebView
Replies: 24
Views: 1518

Re: Set a specific starting function

... a public function called MAIN the code behavior is the usual one. Otherwise the function MAIN is run and, at the end, a QUIT allows the program to exit.
by Enrico Maria Giordano
Sun Aug 06, 2023 2:12 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Set a specific starting function
Replies: 20
Views: 831
Next

Return to advanced search