Search found 3560 matches: instead

Return to advanced search

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: 0
Views: 55

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: 194

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: 60

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: 2308

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: 1365

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: 3905

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: 4042

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: 1198

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: 4042

Fulltext-Search

... the hits. Actually, the program only needs the search string and the path for now. I'm using a DIALOG here. It's an experiment with using a HASH instead of variables, but you can easily build your own input DIALOG. Using a HASHis a bit unusual at the beginning. I need this search for my DMS system. ...
by Otto
Fri Mar 15, 2024 9:02 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Fulltext-Search
Replies: 6
Views: 1255

Re: To Nageswrao Del Objs on TscrollPanel

I see the problem. Thanks. Let me fix it Please try this function instead static function DeleteControl( oPanel, nItem )   local nTop, nLeft, nLen, n   if ( nLen := Len( oPanel:aControls ) ) == 1 .or. nItem == nLen      return .f.  ...
by Silvio.Falconi
Tue Mar 05, 2024 4:44 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: To Nageswrao Del Objs on TscrollPanel
Replies: 17
Views: 670

Re: To Nageswrao Del Objs on TscrollPanel

I see the problem. Thanks. Let me fix it Please try this function instead static function DeleteControl( oPanel, nItem )   local nTop, nLeft, nLen, n   if ( nLen := Len( oPanel:aControls ) ) == 1 .or. nItem == ...
by nageswaragunupudi
Tue Mar 05, 2024 12:33 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: To Nageswrao Del Objs on TscrollPanel
Replies: 17
Views: 670

Re: Does anyone have an Envelope Printing module ?

... It is already difficult to buy appropriate versions for Remote Desktop, for example. Consider using APIs (Application Programming Interfaces) instead of ActiveX for integration with Office applications. Microsoft, for example, offers the Office 365 API. We are starting with that now. Best ...
by karinha
Sat Mar 02, 2024 12:31 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Does anyone have an Envelope Printing module ?
Replies: 10
Views: 580

Re: Does anyone have an Envelope Printing module ?

... It is already difficult to buy appropriate versions for Remote Desktop, for example. Consider using APIs (Application Programming Interfaces) instead of ActiveX for integration with Office applications. Microsoft, for example, offers the Office 365 API. We are starting with that now. Best ...
by Otto
Fri Mar 01, 2024 8:57 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Does anyone have an Envelope Printing module ?
Replies: 10
Views: 580

Re: MAPI Outlook HTML TEXT

Is not possible
Use OLE instead through outlook. A little problem: It requires configuration in outlook for sending 3rd parties software
by paquitohm
Mon Feb 26, 2024 6:48 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: MAPI Outlook HTML TEXT
Replies: 10
Views: 515
Next

Return to advanced search