Search found 3554 matches: instead

Return to advanced search

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

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

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

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

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

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

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

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

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

Re: Create a Panel width a text

... RGB(255,165,0), nARGB(255,rgb(248,248,248)  ) , .f. ) } which do NOT Show hole Text when e.g. TEXT are 4 Lines instead of 2 Lines also it does WORDBREAK while Default Style of FW_SayText are DT_VCENTER / DT_CENTER look at FUNCTION FW_SayText() in c:\fwh\source\function\imgtxtio.prg ...
by Silvio.Falconi
Sat Feb 24, 2024 11:30 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Create a Panel width a text
Replies: 29
Views: 2904

Re: Create a Panel width a text

... RGB(255,165,0), nARGB(255,rgb(248,248,248)  ) , .f. ) } which do NOT Show hole Text when e.g. TEXT are 4 Lines instead of 2 Lines also it does WORDBREAK while Default Style of FW_SayText are DT_VCENTER / DT_CENTER look at FUNCTION FW_SayText() in c:\fwh\source\function\imgtxtio.prg ...
by Jimmy
Sat Feb 24, 2024 5:22 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Create a Panel width a text
Replies: 29
Views: 2904

Re: Create a Panel width a text

... RGB(255,165,0), nARGB(255,rgb(248,248,248)  ) , .f. ) }  Jimmy, I prefer to use fw_Saytext instead tget control because the messag emust be showed and not scrollabled Nages the function CalcTextHeight( hDC, cText, oFont, nWidth ) run ok (thanks) ...
by Silvio.Falconi
Fri Feb 23, 2024 12:07 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Create a Panel width a text
Replies: 29
Views: 2904

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

I appreciate your info Otto, it is almost certainly a solution if I use Apache.
The problem is that I don't know if Mod-Harbour /or/ Apache directly allow me to run HRB's /CGI's / instead of PRG's directly, which is MANDATORY in this specific case.
by Arturo Lopesoria
Wed Feb 21, 2024 12:45 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Data exchange between PC and Android device on the same loca
Replies: 17
Views: 541

Data exchange between PC and Android device on the same loca

... $Ajax, HttpRequest(), or Fetch-API communication. I don't dare use Mod-Harbour for this either. Because? - I have not seen how to use .HRBs instead of .PRGs from Mod-Harbour - I found it TOO ROBUST for such a simple need. Any ideas or suggestions for this small scenario of: Data exchange ...
by Arturo Lopesoria
Tue Feb 20, 2024 11:52 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Data exchange between PC and Android device on the same loca
Replies: 17
Views: 541

Re: Fwh 23.10 TGet another problem (UNSOLVED)

Otto wrote:Dear Mr. Rao,
I know it's a bit late now. But wouldn't it be better to use the Edit Controls from the Win32 API instead of the TGet?

Best regards,
Otto


Dear Otto,

Class TGet uses a standard Edit control but (Windows) subclassed to have support for Harbour GET's pictures, behaviors, etc
by Antonio Linares
Tue Feb 20, 2024 8:40 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Fwh 23.10 TGet another problem (UNSOLVED)
Replies: 132
Views: 52233
Next

Return to advanced search