Search found 82 matches: appending

Return to advanced search

Re: Switching my setup program to webview2

Hello friends, I can't figure out how to use localStorage or the ExecuteScriptAsync method of WebView2. Also, appending parameters to the local HTML file with query parameters gives me the error "Page not found" because, as I then found out, the file:// protocol does ...
by Otto
Sat Feb 10, 2024 7:14 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Switching my setup program to webview2
Replies: 9
Views: 300

Re: DBF to Mysql

If you are appending records from many DBF files into a single table. You can also try: USE CUSTOMERif oCn:TableExists( "test000" )   oCn:Insert( "test000", "FIRST,CITY,STATE,ZIP,SALARY", ...
by nageswaragunupudi
Fri May 13, 2022 5:40 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: DBF to Mysql
Replies: 3
Views: 499

New FTDN April/Abril 2021 (FWH 21.04)

... * MARIADB ROWSET: - If any constant default values are specified in the table definition. the same are shown in the edit record while appending. - Due to a bug introduced in version 20.02, while simple Requery() and Requery( {params} ) are working correctly, Requery( cNewSQL ) was ...
by Antonio Linares
Mon May 31, 2021 3:53 pm
 
Forum: WhatsNew / Novedades
Topic: New FTDN April/Abril 2021 (FWH 21.04)
Replies: 8
Views: 1799

Re: TDatabase Class

... "Washington" } )//oroDbf:Update( "CODE,NAME", { "WA", "Washington" } )  Appending New Data: 1) oDbf:Append()  // same as oRs:AddNew()oDbf:<fieldName1> := uNewValue1oDbf:<fieldName2> := uNewValue2oDbf:Save() ...
by nageswaragunupudi
Thu May 20, 2021 4:39 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: TDatabase Class
Replies: 18
Views: 2067

New FTDN August/Agosto 2020 (FWH 20.08)

... lForUpdate ) If the 2nd parameter is an unused alias name, a temporary dbf with that alias is created with the data. This can be used for editing, appending and then updating the table with ( cAlias )->( oCn:UploadFromAlias( cTable ) ) This is another way of batch mode editing. * Dialog.prg: ...
by Antonio Linares
Sun Sep 20, 2020 11:38 am
 
Forum: WhatsNew / Novedades
Topic: New FTDN August/Agosto 2020 (FWH 20.08)
Replies: 3
Views: 2254

Re: translation to..Tdatabase

Silvio, a sample-code maybe there is something included You can need. 1. creating the dbf 2. appending data from a array #include "FiveWin.ch"REQUEST DBFCDX//USE LOTTO2.DBF NEW ALIAS DST//DST->( FW_ArrayToDBF( aData ) )//DST->( DBGOTOP() )//olotto2:= TDatabase():Open( ...
by ukoenig
Wed Sep 04, 2019 9:43 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: translation to..Tdatabase
Replies: 1
Views: 695

oBD:SaveToDbf()

Is possible appending records in a table that already exist using this method ? How?
by vilian
Tue Jul 23, 2019 5:52 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: oBD:SaveToDbf()
Replies: 2
Views: 673

Re: Editar RowSet con dos tablas - At. Mr. Rao

... use the custom dialog, i.e., MyEditDlg. When you browse the RowSet with XBrwose, use oBrw:EditSource() and oBrw:EditSource( .t. ) for editing and appending. These methods of XBrowse, in turn, call oRs:Edit() and oRs:Edit(.t.). We have re-written your sample. We used FWH DemoServer for the purpose ...
by nageswaragunupudi
Thu Jul 11, 2019 4:22 am
 
Forum: FiveWin para Harbour/xHarbour
Topic: Editar RowSet con dos tablas - At. Mr. Rao
Replies: 15
Views: 2857

Re: xBrowse edit dialog and navigation

... oOtherRec ) 3) oRec:SetDefault( cField, uValue, [lCanModify] ) or oRec:SetDefault( { { field, value},....} ) SetDefaut values are used only when appending For example, you can try this:   @ 200,160 BTNBMP oBtn RESOURCE FWBitmap( "new16" )   SIZE 32,32 PIXEL OF oDlg FLAT TOOLTIP ...
by nageswaragunupudi
Mon Jun 03, 2019 11:52 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: xBrowse edit dialog and navigation
Replies: 26
Views: 3943

Re: TO JAmes Bott : command for tdata

I posted the correct syntax for four methods of appending in that post.
by nageswaragunupudi
Sun May 26, 2019 2:37 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: TO James Bott : command for tdata
Replies: 9
Views: 1025

Re: Problem to save with tdatabase - Resolved!

This example shows the 4 ways of appending data #include "fivewin.ch"REQUEST DBFCDXfunction Main()   local oDbf   DBCREATE( "TESTAPND", { { "CODE", "C", 3, ...
by nageswaragunupudi
Sun May 26, 2019 11:39 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Problem to save with tdatabase - Resolved!
Replies: 5
Views: 612

Re: to Nages: test for tdatabase

... logic is no more required if we use AutoIncrement fields. Here is the important difference: You are fetching the incremented value at the time of appending the record. Here we are required to fetch the incremented value in advance and display it in the Append Dialog without being sure whether ...
by nageswaragunupudi
Sat Apr 27, 2019 6:13 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: to Nages: test for tdatabase
Replies: 37
Views: 5620

Re: FWH 19.01: Recycling Deleted Records

... dialog by setting oBrw:bEdit := { |oRec| MyEditDlg( oRec ) } When you save the edit with oRec:Save(), the feature is automatically saved. For appending known values, without editing; caFields := "CODE,NAME"aValues  := { "TN", "Tennese" }lAppend ...
by nageswaragunupudi
Wed Feb 20, 2019 1:40 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: FWH 19.01: Recycling Deleted Records
Replies: 6
Views: 1420

New FTDN January/Enero 2019 (FWH 19.01)

... to the compound index and if opened in shared mode, this tag is created temporarily in memory. - TDatabase class adopts the same behavior while appending new records. - TDataRow also adopts the same behaviour. So when a new record is edited and saved, deleted records are recycled observing the ...
by Antonio Linares
Mon Feb 11, 2019 1:08 pm
 
Forum: WhatsNew / Novedades
Topic: New FTDN January/Enero 2019 (FWH 19.01)
Replies: 4
Views: 2631

Re: A problem with TDatabase using copy() / Past()

... )   :Copy()   :GoTo( nDstRec )   :Paste()END  2) Copying all values of a record and appending: (a) WITH OBJECT oDbf   :GoTo( nSrcRec )   :Copy()   :Blank()   :Paste()END  ...
by nageswaragunupudi
Thu Jan 31, 2019 2:52 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: A problem with TDatabase using copy() / Past() ?
Replies: 7
Views: 1156
Next

Return to advanced search