Search found 53 matches: ignores

Return to advanced search

Re: Draw a bitmap

... 1 // STRETCH The image is resized to exactly fit the width and height of the window, to fill the entire window area with the image. This mode ignores the aspect ratio of the image. If the aspect ratio of window and image are different, obviously the image gets distorted in this case. Note: ...
by nageswaragunupudi
Thu Oct 06, 2022 5:35 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Draw a bitmap
Replies: 6
Views: 439

Re: Transaction security with DBF

... with BEGINTRANS(<database name expC>), you must issue ROLLBACK(<database name expC>). If instead you issue ROLLBACK( ), dBASE Plus ignores the ROLLBACK( ) statement. If you began the transaction with BEGINTRANS( ), <database name expC> is an optional ROLLBACK( ) argument. ...
by Otto
Fri Sep 09, 2022 6:30 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Transaction security with DBF
Replies: 9
Views: 726

Re: Lookup method of Tdatabase

James Bott wrote:Silvio,

The Lookup() function used by the isFree() function ignores the current record.


but it does not work well, can you confirm that you have also tried and seen that lookup makes errors?
by Silvio.Falconi
Sun Aug 15, 2021 8:37 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Lookup method of Tdatabase
Replies: 44
Views: 2865

Re: Lookup method of Tdatabase

Silvio,

The Lookup() function used by the isFree() function ignores the current record.
by James Bott
Sun Aug 15, 2021 6:12 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Lookup method of Tdatabase
Replies: 44
Views: 2865

New FTDN February/Febrero 2021 (FWH 21.02)

... CASE UPPER or CASE LOWER or CASE PROPER. Forces upper/lower/ proper case to get entry. Note: Presence of "!" in the picture clause ignores this setting. - New method SetCase( "UPPER/LOWER/PROPER" ) --> cPrevCase - Enhancement in SAY/GET command. New subclause WIDTH ...
by Antonio Linares
Wed Mar 24, 2021 8:56 am
 
Forum: WhatsNew / Novedades
Topic: New FTDN February/Febrero 2021 (FWH 21.02)
Replies: 2
Views: 1463

Re: Limitar input por caracteres y no por espacio

... been the behavior of Get class since ages. Limittext value of -1 is for multiline edit. For single line edit it is 0. In any case normal ANSI get ignores this setting. FWH provides EDIT class which behaves the way you want. Please try this: #include "fivewin.ch"function Main()  ...
by nageswaragunupudi
Wed Feb 03, 2021 8:52 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Limitar input por caracteres y no por espacio
Replies: 7
Views: 646

Re: Editsource() Problem

... all the other lib's (fwh lib's and bcc lib's) and there's nothing we can do, because when we try to add these harbour core lib's in order, hbmk2 ignores it. Hello, I'm working with Vilian in this project Using builh.bat is possible to create a script and set the order for our files to be compiled. ...
by ricbarraes
Mon Jun 15, 2020 1:44 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: HBMK2 Problem linking
Replies: 49
Views: 5331

Re: Mr. Nages please: HARU PDF Bugs/Extensions

... Syntax: METHOD PrintImage( nRow, nCol, uImage, nWidth, nHeight, lStretch, nAlpha, lTransp, lGray, cUnits, cAlign, cURL )  FWPdf ignores nAlpha, lTransp and lGray TPrinter ignores cURL 1,2,4,5) nRow, nCol, nWidth, nHeight specify the bounding rectangle. 3) uImage is any image ...
by nageswaragunupudi
Thu Mar 05, 2020 5:18 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Mr. Nages please: HARU PDF Bugs/Extensions
Replies: 21
Views: 5560

Re: Missing images in xBrowse

... image with a < blustone.bmp > - background the brush AND image is saved correct like the filemanager shows xBrowse shows only the image and ignores the background maybe the tests can help to detect if there is something wrong it seems the background is detected as transparent but it is a ...
by ukoenig
Fri Nov 15, 2019 4:00 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Missing images in xBrowse
Replies: 12
Views: 1924

Re: Btnbmp: Different look after link in FWH19.05

... in the front or the back of the prompt to place the text where you want .. With 1906 .. using the TBtnBmp():lLegacyLookLeftRight := .t. .. totally ignores any space padding and the text is snugged up close to the icon .. no spaces in between.. I actually like example 2 with the icon on the left ...
by Rick Lipkin
Sun Oct 06, 2019 3:30 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Btnbmp: Different look after link in FWH19.05
Replies: 5
Views: 1122

Re: In xbrowse valid is Executed twice

Paste operation ignores both bEditWhen and bEditValid. Paste operation works on multiple cells and multiple rows. bEditValid is programmed to work with a Get and there is no Get in paste operation. Also despite our advices that bEditValid ...
by nageswaragunupudi
Fri Jun 14, 2019 3:03 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: In xbrowse valid is Executed twice
Replies: 6
Views: 1182

Re: To James Bott - Error Using TData

Mr. Karinha { { "ID",         "ID", 04, 0 }, ;  There is no field type "ID". DBCREATE() ignores "D" from "ID" and creates a field with datatype "I" for Integer To create Autoincrement field, you need to use datatype ...
by karinha
Mon May 27, 2019 7:20 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: To James Bott - Error Using TData
Replies: 49
Views: 5121

Re: To James Bott - Error Using TData

... { { "ID",         "ID", 04, 0 }, ;  There is no field type "ID". DBCREATE() ignores "D" from "ID" and creates a field with datatype "I" for Integer To create Autoincrement field, you need to use ...
by nageswaragunupudi
Mon May 27, 2019 6:55 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: To James Bott - Error Using TData
Replies: 49
Views: 5121

Re: Insert Into MySQL tables in different connections .. you can

... local server and send the entire table to the remote server. The remote server then checks if the primary/unique key already exists. If exists, it ignores and if not it inserts the new record. Method-2: The following code is similar but behaves a little diffently oRemote:Insert( cTable, nil, ...
by nageswaragunupudi
Thu May 03, 2018 4:22 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Insert Into MySQL tables in different connections .. you can
Replies: 12
Views: 2203

New FTDN December/Diciembre 2017 (FWH 17.12)

... into another record object. The two objects can belong to the same table or different tables of same or different data sources. Paste() method ignores nil values and does not overwrite autoinc and timestamp fields (i.e, datatypes +,=,@) Example: ( cAlias )->( DBGOTO( 10 ) ) oSrcRec := TDataRow():New( ...
by Antonio Linares
Tue Dec 26, 2017 6:07 pm
 
Forum: WhatsNew / Novedades
Topic: New FTDN December/Diciembre 2017 (FWH 17.12)
Replies: 0
Views: 2044
Next

Return to advanced search