Search found 3566 matches: instead

Return to advanced search

Re: len an array

give me 1 instead of zero Because that is the correct answer. aLines  := HB_ATokens( "one", "|" )? aLines // -> { "one" } I not Know how I Have on String now I made aLines := hb_ATokens( ...
by Silvio.Falconi
Mon May 06, 2024 11:41 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: len an array
Replies: 5
Views: 169

Re: len an array

give me 1 instead of zero

Because that is the correct answer.

Code: Select all  Expand view
aLines  := HB_ATokens( "one", "|" )
? aLines // -> { "one" }
by nageswaragunupudi
Mon May 06, 2024 11:26 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: len an array
Replies: 5
Views: 169

len an array

local cString:=""
aLines := hb_ATokens( cString,"|" )

?len(aLines)


give me 1 instead of zero

why ?
by Silvio.Falconi
Mon May 06, 2024 10:43 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: len an array
Replies: 5
Views: 169

Re: Filter on Xbrowse

... I make all the new programs with mod harbour and I am familiar with it. But maybe, if there is interest, the program could be modified as well. Instead of loading the data from the server with the fetch method, they would be sent and received as shown here. oWebView := TWebView():New(1 ...
by Otto
Sat May 04, 2024 10:53 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Filter on Xbrowse
Replies: 42
Views: 703

Re: DBCOMMIT() EN DBF - SQL AUTOMATICO ?

There is no ADO Sql "commit" command ... instead when you complete updating all your sql table values .. you would just issue oRsTablename:Update() .. here is a small sample code on how I manage my sql values //---------------------------------Static ...
by Rick Lipkin
Mon Apr 29, 2024 2:34 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: DBCOMMIT() EN DBF - SQL AUTOMATICO ?
Replies: 4
Views: 199

ayuda con uso de hb_xfree

... * szText, HB_SIZE nLen ); ! hb_itemPutCPtr(), hb_itemPutCLPtr() fixed to put empty string to item if szText is NULL and length is non-zero, instead of trying to free NULL pointer causing internal error. * contrib/examples/rdddbt/dbfdbt1.c * I did a mistake in 1999 by giving the name hb_itemPutCPtr() ...
by carlos vargas
Sun Apr 28, 2024 2:55 am
 
Forum: FiveWin para Harbour/xHarbour
Topic: ayuda con uso de hb_xfree
Replies: 6
Views: 200

New FTDN April 2024 (FWH 24.04)

... disable colors and focus colors for both GETs and MultilineGets using the same code. * New: samples\listen.prg allows you to talk to your FWH app instead of having to use the keyboard! * New: samples\metribbon.rg from C├®sar Gomez. A great example for combining a RibbonBar and a metro panel style. ...
by Antonio Linares
Wed Apr 24, 2024 7:14 am
 
Forum: WhatsNew / Novedades
Topic: New FTDN April 2024 (FWH 24.04)
Replies: 1
Views: 408

Re: SetMultiSelectCol() on line

... xbrowse and give the possibility to select the row If there are no selected rows in the xbrowse the procedure must remove the :SetMultiSelectCol() instead the test samples\xbmulsel.prg example already has the SetMultiSelectCol and the checkbox disables it but physically it is still in the xbrowse ...
by Silvio.Falconi
Tue Apr 23, 2024 6:51 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: SetMultiSelectCol() on line
Replies: 5
Views: 226

Re: Servidor de mail propio y acuse de ENTREGA.

... email server, but I can guide you through the process. The "tag" you're looking for is not "Generate-Delivery-Report." Instead, you need to use the Return-Receipt-To or Disposition-Notification-To headers. Here's how you can test it: Find an email client or service that ...
by Antonio Linares
Mon Apr 22, 2024 4:58 am
 
Forum: Off Topic / Otros temas
Topic: Servidor de mail propio y acuse de ENTREGA.
Replies: 2
Views: 363

Re: ADS with 64bit FWH Apps

... the current .lib files for ADS. Originally I was including the four .dll files from the ADS 12 distributions. After seeing Reinaldo's comment, I instead used the ones from the ADS install, but still kept the current ( ADS 12 ) .lib files in my build. As he stated, the application runs. His point ...
by TimStone
Tue Apr 16, 2024 7:53 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: ADS with 64bit FWH Apps
Replies: 24
Views: 2349

Re: Tooltip of the selector column

Instead of
Code: Select all  Expand view
oBrw:bToolTips   := ;
         { | oBrw,r,c,f,oMouseCol,nMouseRow| MojColToolTip( oBrw,r,c,f,oMouseCol,nMouseRow ) }


can you please try
Code: Select all  Expand view
oBrw:bCellToolTips := { |o| o:Value }
by nageswaragunupudi
Tue Apr 09, 2024 5:29 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Tooltip of the selector column
Replies: 11
Views: 1375

Talking to your apps

This simple code lets you talk to your apps instead of having to write! :-) Please test it, I do appreciate your feedback. I think this may be very interesting for our apps! listen.prg #include "FiveWin.ch"function Main()  ...
by Antonio Linares
Fri Mar 29, 2024 9:40 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Talking to your apps
Replies: 20
Views: 4003

Re: Question about performance RowSet

... QueryResult This is an extension to Execute. if we use an sql like "select age from customer where id = 100" this function returns 58, instead of {{58}} That is ok, works fine.
by Eroni
Wed Mar 20, 2024 1:35 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Question about performance RowSet
Replies: 19
Views: 4138

Re: Hide/show search system on a dialog - Resolved

on xbrowser.prg there is not on buttonbar the get and the combobox


In that example, the sample hides the buttonbar.
Please use similar logic to hide the says,get and combobox instead of buttonbar in your case.

Logic is the same.
by nageswaragunupudi
Tue Mar 19, 2024 3:10 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Hide/show search system on a dialog - Resolved
Replies: 6
Views: 1223

Re: Question about performance RowSet

... QueryResult This is an extension to Execute. if we use an sql like "select age from customer where id = 100" this function returns 58, instead of {{58}} As you indicated above, if we want to edit just one record in a table, we can aRow := oCn:QueryResult( "select * from states ...
by nageswaragunupudi
Sat Mar 16, 2024 10:20 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Question about performance RowSet
Replies: 19
Views: 4138
Next

Return to advanced search