Search found 138 matches: datarow

Return to advanced search

Re: XBRWOSE EDIT USING DATAROW & MARIDB ROWSET.

Dear Sir ,

May I request to help on this..!

Thanks
Shridhar
by shrifw
Tue Oct 17, 2023 9:51 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: XBRWOSE EDIT USING DATAROW & MARIDB ROWSET.
Replies: 2
Views: 235

Re: XBRWOSE EDIT USING DATAROW & MARIDB ROWSET.

Dear Sir ,

May I request to help on this..!

Thanks
Shridhar
by shrifw
Mon Oct 16, 2023 2:19 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: XBRWOSE EDIT USING DATAROW & MARIDB ROWSET.
Replies: 2
Views: 235

XBRWOSE EDIT USING DATAROW & MARIDB ROWSET.

Dear Sir , I am using XBROWSE , DATAROW to edit data of MariaDB Rowset in batch mode. I am not expert on using XBROWSE to edit data. I am seeking help to use XBROWSE more effectively. I have written below code but I am not sure whether it ...
by shrifw
Sun Oct 15, 2023 8:17 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: XBRWOSE EDIT USING DATAROW & MARIDB ROWSET.
Replies: 2
Views: 235

Re: MARIADB ROWSET BATCH DML OPERATION EXAMPLE

Dear Rao Sir ,

As requested , could you please provide code to use extended the feature of XBROWSE , DATAROW & ROWSET.

Thanks
Shridhar
by shrifw
Wed Oct 11, 2023 4:43 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: MARIADB ROWSET BATCH DML OPERATION EXAMPLE
Replies: 7
Views: 707

Re: listbox con scroll

hi, have a look into c:\fwh64\source\classes\datarow.prg METHOD Edit(...) CLASS TDataRow   ...   DEFINE DIALOG oDlg SIZE 800,500 PIXEL FONT oFont TITLE cTitle   oPanel   := TScrollPanel():New( 20, 20, 200, 360, oDlg, .t. )  ...
by Jimmy
Sun Oct 01, 2023 5:34 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: listbox con scroll
Replies: 4
Views: 526

Re: METHOD SavePQQ() need "id" or how to use own PRIMARY KEY ?

... as READ-ONLY when "edit" :?: You do not have to do anything. Auto-increment fields are always treated as ReadOnly both by XBrowse and DataRow.
by nageswaragunupudi
Sat Aug 05, 2023 9:50 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: METHOD SavePQQ() need "id" or how to use own PRIMARY KEY ?
Replies: 21
Views: 717

Re: erase a datarow entirely with a single command ?

Thank you Master !
Maurizio Menabue
by mauri.menabue
Fri Jun 02, 2023 11:33 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: erase a datarow entirely with a single command ?
Replies: 2
Views: 221

Re: erase a datarow entirely with a single command ?

Either
Code: Select all  Expand view
::oRsDel:gotop()
  do while .not. ::oRsDel:eof()
      ::oRsDel:delete()
//      ::oRsDel:skip() // remove this line
 enddo
 


OR this is better
Code: Select all  Expand view
oCn:Execute( "DELETE FROM <table> WHERE <cond>" )
by nageswaragunupudi
Fri Jun 02, 2023 4:06 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: erase a datarow entirely with a single command ?
Replies: 2
Views: 221

erase a datarow entirely with a single command ?

hi all is it possible to completely delete a datarow with a single command if so which one?    LOCAL oRsDel AS OBJECT   LOCAL cSql    AS CHARCTER       cSql := ""   cSql += "SELECT ...
by mauri.menabue
Thu Jun 01, 2023 11:26 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: erase a datarow entirely with a single command ?
Replies: 2
Views: 221

Re: XBROWSE : METHOD DataRow() -> TDataRow()

hi,
nageswaragunupudi wrote:If you like, we will share the revised program with you too.

YES, please
by Jimmy
Mon May 08, 2023 12:20 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: XBROWSE : METHOD DataRow() -> TDataRow()
Replies: 5
Views: 302

Re: XBROWSE : METHOD DataRow() -> TDataRow()

hi Marc,
Marc Venken wrote:You can always make your own editdialog in all style you like.

you are right, but i like to use what already exist
by Jimmy
Mon May 08, 2023 12:19 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: XBROWSE : METHOD DataRow() -> TDataRow()
Replies: 5
Views: 302

Re: XBROWSE : METHOD DataRow() -> TDataRow()

can i change Color of Panel :idea:

it is all for "Dark-Mode"

At present, it is not possible without modifying the source code of TDataRow class.
But soon we will provide a way to do it from the Application code and let you know.
If you like, we will share the revised program with you too.
by nageswaragunupudi
Sat May 06, 2023 1:53 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: XBROWSE : METHOD DataRow() -> TDataRow()
Replies: 5
Views: 302

Re: XBROWSE : METHOD DataRow() -> TDataRow()

WITH OBJECT oBrw :nEditTypes := EDIT_GET :bLDClickDatas := { || oBrw:EditSource() } // or { || youreditfunction() } :CreateFromCode() END You can always make your own editdialog in all style you like. We recommend oBrw:bEdit := { |oRec| OurEditFunction( oRec ) oRec is TDataRow object f...
by nageswaragunupudi
Sat May 06, 2023 1:50 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: XBROWSE : METHOD DataRow() -> TDataRow()
Replies: 5
Views: 302

Re: XBROWSE : METHOD DataRow() -> TDataRow()

WITH OBJECT oBrw
:nEditTypes := EDIT_GET
:bLDClickDatas := { || oBrw:EditSource() } // or { || youreditfunction() }
:CreateFromCode()
END

You can always make your own editdialog in all style you like.
by Marc Venken
Fri May 05, 2023 11:56 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: XBROWSE : METHOD DataRow() -> TDataRow()
Replies: 5
Views: 302

XBROWSE : METHOD DataRow() -> TDataRow()

hi, when using METHOD EditSource() it will use METHOD Edit() which use CLASS TDataRow CLASS TDataRow have a METHOD Edit() which is use a DIALOG can i "color" this DIALOG :idea: "inside" DIALOG it use TScrollPanel() and use "fix" Color CLR_BLACK   oPanel:SetColor( CL...
by Jimmy
Fri May 05, 2023 8:20 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: XBROWSE : METHOD DataRow() -> TDataRow()
Replies: 5
Views: 302
Next

Return to advanced search