Search found 27 matches: ascertain

Return to advanced search

Re: How do I know the field name in xbrowse:column

... between navigation and which cell to act upon. Still if you want to assign action to single click, assign the action to oBrw:bRClicked and you can ascertain the active column with oBrw:SelectedCol()
by dutch
Wed Dec 22, 2021 5:15 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: How do I know the field name in xbrowse:column
Replies: 22
Views: 2276

Re: How do I know the field name in xbrowse:column

... between navigation and which cell to act upon. Still if you want to assign action to single click, assign the action to oBrw:bRClicked and you can ascertain the active column with oBrw:SelectedCol()
by nageswaragunupudi
Mon Dec 20, 2021 3:05 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: How do I know the field name in xbrowse:column
Replies: 22
Views: 2276

Re: Finding XBrowse current record

... where the user clicked) inside the codeblock and a numeric value can not have any methods/datas. While writing such codeblocks, we need to know/ascertain what are the parameters supplied by the evaluating method/procedure while evaluating the codeblock. Please see line no.2038 of window.prg ...
by nageswaragunupudi
Sun Jul 04, 2021 11:36 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Finding XBrowse current record
Replies: 11
Views: 1390

Re: xBrowse and SQLRDD bug

... xbrowse will move the record position to the 3rd record from the top using OrdKeyGoTo(). Using this example, please advise us how should xbrowse ascertain 1) The total number of records visible in the DBF 2) What is the serial number of the current record counting from the top. 3) How to go to ...
by nageswaragunupudi
Wed Apr 29, 2020 11:48 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: xBrowse and SQLRDD bug
Replies: 18
Views: 2415

Re: Nuevo FWH 16.05

... with FW_OpenRecordSet(), we can also use oRs := mysql_RowSet( oCn, cSql/TableName ) Note: After opening, oRs should be checked against NIL to ascertain success or failure of the call. b) oRs:Close() Optional but recommended Latest: c) oRs:Clone() implemented and is under testing 2) oRcs:Update() ...
by nageswaragunupudi
Sun Jul 17, 2016 12:02 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: Nuevo FWH 16.05
Replies: 12
Views: 3773

Re: xBrowse error with 16.01 and resource

... you can send me the resource "CM1" I mean that small part of the resource file along with that bitmap or image file. I am trying to ascertain if this is what is creating problem
by nageswaragunupudi
Wed Jan 27, 2016 6:30 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: xBrowse error with 16.01 and resource
Replies: 10
Views: 1745

Re: Changing with and height of a window and a dialog

We know we can easily ascertain Protrait / Landscape mode by comparing ScreenWidth() and ScreenHeight(). If the application window is maximized on Tablet, rotation restults in Resize event and our normal ON RESIZE can react to the change. ...
by nageswaragunupudi
Sat Nov 07, 2015 5:58 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Changing with and height of a window and a dialog
Replies: 35
Views: 8878

Re: Preview of a file

... like image files, text files, etc? Excel process. I think we can leave it. If you insist on closing it ... First open excel with ole and also ascertain if we started it and it was started earlier by the user. After this program is over, if we started excel, then quit the app with ole otherwise ...
by nageswaragunupudi
Wed Jul 08, 2015 5:09 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Preview of a file
Replies: 43
Views: 20152

Re: behavior nStretchCol

... setting of large nWidth of the column either by code or by save/restore feature 2) Very large cEditPicture Through oBrw:bRClicked or otherwise ascertain the following internal values. a) oBrw:aCols[ 6 ]:nWidth b) oBrw:aCols[ 6 ]:cEditPicture c) oBrw:aStretchInfo[ 1 ] d) oBrw:aStretchInfo[ 2 ...
by nageswaragunupudi
Tue Nov 11, 2014 4:21 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: behavior nStretchCol
Replies: 4
Views: 740

FW_DbfSqlQuery(...): Less known features of FWH-2

... itself is a lot of code and is more than what we save by using SQL. But FWH provides functions that make all this very simple. For example, to ascertain the count of unique values in STATE field in CUSTOMER.DBF, we can use this SQL Query, "SELECT COUNT(*) FROM ( SELECT DISTINCT STATE FROM ...
by nageswaragunupudi
Tue Jul 30, 2013 11:23 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: FW_DbfSqlQuery(...): Less known features of FWH-2
Replies: 0
Views: 649

New FTDN May/Mayo 2013 (FWH 13.05)

... In case of RDD and ADO, XBrowse recognises if the DBF / RecordSet is opened in readonly mode and sets the readonly mode. XBrowse also tries to ascertain if individual fields can be modified and accordingly sets oCol:lReadOnly. Programmer can at any time toggle the DATA but it may not be desirable ...
by Antonio Linares
Wed Jun 05, 2013 3:09 pm
 
Forum: WhatsNew / Novedades
Topic: New FTDN May/Mayo 2013 (FWH 13.05)
Replies: 0
Views: 2830

Re: bugs xBrowse and Seek

... is NOT NULL, then again the incremental filter works. The filter expression differs for character, numeric and date fields. So xbrowse first ascertains the datatype by calling ValType( ::oRs:Fields( <colname> ):Value ) and then proceed to build a filter expression suitable to the datatype. ...
by nageswaragunupudi
Sat May 25, 2013 11:23 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: bugs xBrowse and Seek
Replies: 7
Views: 2521

Re: xBrowse & SQLRDD

... When I tried to read the dbf in a do while loop, the first few rows are repeated over and over and it never reached eof(). I thought it better to ascertain the correct functionality of the Ord**() functions from users of latest regular RDD.
by nageswaragunupudi
Tue Aug 21, 2012 2:03 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: xBrowse & SQLRDD
Replies: 55
Views: 12753

Re: ADO MYSQL se cae con 2 usuarios modificando mismo registro

... another user updated the record after the user read the recordset and before updating. This is concurrency error. It is desirable that we should ascertain that the row is not updated by other users before calling oRs:Update() method. Normally oRs:Resync( adAffectCurrent, adResyncUnderlyingValues ...
by nageswaragunupudi
Fri Oct 14, 2011 3:32 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: ADO MYSQL se cae con 2 usuarios modificando mismo registro
Replies: 3
Views: 1151

Re: Harbour Compiler Build Questions ! UPDATED *

...  $(VCDIR)\bin\cl -c -TP -W3 -GA -I$(HBDIR)\include -I$(VCDIR)\include $< That's all. Now to test my exe to ascertain it's working as it should. Thank you.
by hua
Thu Jun 16, 2011 9:19 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Harbour Compiler Build Questions ! UPDATED *
Replies: 42
Views: 13956
Next

Return to advanced search