Search found 24 matches: capturing

Return to advanced search

New FTDN June/Junio 2022 (FWH 22.06)

... to build your FWH apps using Visual Studio Community 32 and 64 bits Please review FWH\makes\hbmk2.zip * Fix: AUTOGET dropdown was not properly capturing the mouse. Now it is ok. Thanks to Ariel for his great feedback. * New: Class TWebView allows you to use the new Microsoft Edge webview2 control. ...
by Antonio Linares
Tue Jun 21, 2022 4:31 am
 
Forum: WhatsNew / Novedades
Topic: New FTDN June/Junio 2022 (FWH 22.06)
Replies: 1
Views: 843

Re: Rowset failure

Hello Rao You are right, so is there any possibility of capturing the message and treating it my way? For example how do I make the initial connection using:     oServer := MARIA_CONNECT( cServer, cDBName, cUser, cPassword, .F. )  ...
by ctoas
Thu Mar 18, 2021 2:32 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Rowset failure
Replies: 2
Views: 497

Re: Drawing on a TImage and save [Solved]

Cristobal, I don't use any capturing !!! I would like to change the image-border at runtime. From class TBitmap I use :nStyle , because there is no method in class TImage like oImage:lBorder := .F. @ 55, 430 COMBOBOX oCbx1 VAR cImgBorder ...
by csincuir
Fri Sep 20, 2019 11:21 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Drawing on a TImage and save [Solved]
Replies: 68
Views: 11526

XBrows Column's Cell does not capture Edit Value

... method used in the bKeyDown Code Block. But when oTBrow:SelectCol(5) Method is removed from the code block , the Edit Values are capturing but can not move the control to the 5th column. Is this correct behaviour of the XBROWSE ? if it is correct then how we should skip 4th column ...
by shri_fwh
Thu Dec 27, 2018 9:17 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: XBrows Column's Cell does not capture Edit Value
Replies: 5
Views: 1538

Re: Drawing on a TImage and save [Solved]

Cristobal, I don't use any capturing !!! I would like to change the image-border at runtime. From class TBitmap I use :nStyle , because there is no method in class TImage like oImage:lBorder := .F. but doesn't work. Any idea ? Best regards ...
by cnavarro
Wed Apr 02, 2014 9:09 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Drawing on a TImage and save [Solved]
Replies: 68
Views: 11526

Re: Drawing on a TImage and save [Solved]

Cristobal, I don't use any capturing !!! I would like to change the image-border at runtime. From class TBitmap I use :nStyle , because there is no method in class TImage like oImage:lBorder := .F. @ 55, 430 COMBOBOX oCbx1 VAR cImgBorder ...
by ukoenig
Wed Apr 02, 2014 7:30 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Drawing on a TImage and save [Solved]
Replies: 68
Views: 11526

Re: SQL Scripting Support: Less known features of FWH - 3

... SQL as "SELECT * FROM MYTABLE WHERE DELETED=0" Generally Audit Trials are generated through Triggers in the SQL programming environment, capturing all modifications including deletions with Username and datetime.
by nageswaragunupudi
Sun Aug 04, 2013 5:59 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: SQL Scripting Support: Less known features of FWH - 3
Replies: 6
Views: 3110

Re: Upgrading FWH/xHarbour & VS 2010

... sense to add the ability to direct warnings to a text file to future versions of Harbour, please do. In the meantime I'll find another way of capturing the warnings. Again, thanks for your help. Saludos, Don
by DonDrew
Wed Apr 24, 2013 3:27 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Upgrading FWH/xHarbour & VS 2010
Replies: 44
Views: 9929

Re: Capturing the width of a xBrowse Column

Much easier way (may not be in very old versions)

oBrw:nWidths --> Array of widths of all columns

oBrw:nWidthds := { <w1>, <w2>, ...<wN> } sets widths of each column
by nageswaragunupudi
Mon Feb 20, 2012 6:32 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Capturing the width of a xBrowse Column
Replies: 3
Views: 726

Re: Capturing the width of a xBrowse Column

Uwe

Thank you !

Rick
by Rick Lipkin
Mon Feb 13, 2012 5:18 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Capturing the width of a xBrowse Column
Replies: 3
Views: 726

Re: Capturing the width of a xBrowse Column

Rick a sample : Returns a Array of Column-width : // a array to save the Column-width of all Columns//---------------------------------------------------------private aColW[LEN( oBrw:aCols )]i := 1FOR i := 1 TO LEN( oBrw:aCols )   WITH OBJECT oBrw:aCols[i]      aColW&...
by ukoenig
Mon Feb 13, 2012 4:18 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Capturing the width of a xBrowse Column
Replies: 3
Views: 726

Capturing the width of a xBrowse Column

To All I have been asked if a user stretches an xBrowse column to be able to capture the width of that column and then restore the with of that column when the user returns. Is there a way to know what the widths of each xBrowse column is at close ? .. then be able to restore the custom changes a us...
by Rick Lipkin
Mon Feb 13, 2012 3:16 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Capturing the width of a xBrowse Column
Replies: 3
Views: 726

Re: PHP Browser

... it takes is code", PHP is just another programming language, and even if it has to be hardcoded, I am 99.99% certain it can be done, by just capturing the SQL Select Query, counting the records number and Pointer numbers, building an array and doing some magic) Of course, by just starting, ...
by stevebrown
Fri Oct 07, 2011 4:53 pm
 
Forum: Off Topic / Otros temas
Topic: PHP Browser
Replies: 17
Views: 6110

Re: PHP Browser

... the post I realized that there is a important think is being missed: the web is stateless, that is, the server knows nothing about the request, so capturing keys and mouse is not the right way. look at flexigrid, it's a nice product, and relatively easy to use if you know php. Best regards.
by Carlos Mora
Fri Mar 25, 2011 12:19 pm
 
Forum: Off Topic / Otros temas
Topic: PHP Browser
Replies: 17
Views: 6110

Re: PHP Browser

... it takes is code", PHP is just another programming language, and even if it has to be hardcoded, I am 99.99% certain it can be done, by just capturing the SQL Select Query, counting the records number and Pointer numbers, building an array and doing some magic) Of course, by just starting, ...
by Bayron
Sun Mar 06, 2011 3:02 pm
 
Forum: Off Topic / Otros temas
Topic: PHP Browser
Replies: 17
Views: 6110
Next

Return to advanced search