Search found 162 matches: states

Return to advanced search

New FTDN April 2024 (FWH 24.04)

... // edit and save (append) a new record oCustRec:Blank() // load another blank record oCustRec:Edit() // oStatesRec := oCn:Record( "states", "code='WA'" ) // one existing record oStatesRec:Edit() // modify and save the existing record - Methods CreateTable() and ImportFromDBF() ...
by Antonio Linares
Wed Apr 24, 2024 7:14 am
 
Forum: WhatsNew / Novedades
Topic: New FTDN April 2024 (FWH 24.04)
Replies: 0
Views: 45

Re: New txbrowse

... of xbrowse Is it not a option to set the colums, save the state of xbrowse (selected from users) and the let the users select one of the saved states ? I still like the idea to subclass xbrowse for our own purposes, and will look into it. Yes. Imagine you have many fields for customer archive. ...
by Silvio.Falconi
Mon Apr 22, 2024 7:44 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: New txbrowse
Replies: 6
Views: 389

Re: New txbrowse

... of xbrowse Is it not a option to set the colums, save the state of xbrowse (selected from users) and the let the users select one of the saved states ? I still like the idea to subclass xbrowse for our own purposes, and will look into it.
by Marc Venken
Mon Apr 22, 2024 12:20 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: New txbrowse
Replies: 6
Views: 389

Re: Question about performance RowSet

Hello Mr. Rao. I am try this: aRow := oCn:QueryResult( "select field1,field2 from states where code='WA'" )if aRow == NIL // not found, then inserts    aRow := { "aa","bb" }    oCn:Upsert( "states", nil, { ...
by Eroni
Wed Mar 20, 2024 7:01 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Question about performance RowSet
Replies: 19
Views: 4041

Re: Question about performance RowSet

I am try this: Code: aRow := oCn:QueryResult( "select field1,field2 from states where code='WA'" ) if aRow == NIL // not found, then inserts aRow := { "aa","bb" } oCn:Upsert( "states", nil, { aRow } ) endif But insert not ...
by nageswaragunupudi
Wed Mar 20, 2024 3:19 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Question about performance RowSet
Replies: 19
Views: 4041

Re: Disabled buttons at oBar not greyed out after using FWH1912

... unless I'm willing to use GDIPLUS clause which results in non-sharp images of buttons. Question; cResName2, cResName3 and cResName4 are for what states? Is it Normal, Pressed, Inactive and Mouse Over ? #xcommand DEFINE BUTTON [ <oBtn> ] ;             [ <bar: OF, BUTTONBAR ...
by hua
Wed Sep 13, 2023 8:46 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Disabled buttons at oBar not greyed out after using FWH1912
Replies: 17
Views: 1666

Re: Acceder a dbf mediante ado

... (not dbfcdx tables having fpt memo files) are available as tables in this connection. Open any table with oRs := FW_OpenRecordSet( oCn, "states" ) to use states.dbf OR oRs := FW_OpenRecordSet( oCn, "select first,salary from customer" ) Now deal with the oRs ...
by nageswaragunupudi
Thu Jul 27, 2023 3:44 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Acceder a dbf mediante ado
Replies: 6
Views: 380

Re: HOW REPORT PREVIEW CAN BE CUSTOMIZED ?

... need to be reevaluated over and over again. The powerful editors with comparison functions (e.g., VS) make it very easy to compare different states of software. There is also no general statement. But I think inheritance can also make things more complex. A custom preview might often be easier. ...
by Otto
Mon May 15, 2023 6:47 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: HOW REPORT PREVIEW CAN BE CUSTOMIZED ?
Replies: 8
Views: 412

Re: REDEFINE SAY on Buttonbar

... a sample ... (for the xbrowse version) The picture shows ribbonbar and this sample. Transparent does not do it. In the pic of browse, you see 'STATES'. That is correct view, but this is from insite the class xbrowse #include "fivewin.ch"REQUEST DBFCDXfunction Main()   local ...
by Marc Venken
Mon Dec 05, 2022 1:29 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: REDEFINE SAY on Buttonbar
Replies: 33
Views: 1983

Re: len( oqry) me devuelve mal un valor (creo)

... suggestion. If you connect to our FiveWin cloud server oCn := FW_DemoDB( 6 )  we have many tables on the server. We have `customer`, `states` and many more tables. If you prepare an independent small program with the tables on this server, we can run the program at our end and provide ...
by nageswaragunupudi
Wed Apr 06, 2022 8:08 am
 
Forum: FiveWin para Harbour/xHarbour
Topic: len( oqry) me devuelve mal un valor (creo)
Replies: 1
Views: 178

Re: 3 state btnbmp

... Free()  // Grátis/Livre   ? "Free?"RETURN NIL// END / FIN  No sorry.....I have many numbers Please see this test I made two states Orange and Blue I have two array one for numbers (alista) and one for numbers fix (afissi) I select and the procedure change the color in DARKORANGE2 ...
by Silvio.Falconi
Thu Mar 24, 2022 12:39 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: 3 state btnbmp
Replies: 9
Views: 630

Re: Comportamiento bEnd de un Report

... problem is and how to fix it. This is the fastest way we can help you. You may try modifying the sample that I posted earlier ( using fwh\samples\states.dbf ) to reproduce your error.
by nageswaragunupudi
Mon Sep 20, 2021 2:16 am
 
Forum: FiveWin para Harbour/xHarbour
Topic: Error no existe Alias al exportar a Excel (SOLUCIONADO)
Replies: 23
Views: 2197

Re: cGetFile( )

... be allowable. Even then, if any application already opened the file in exclusive mode, we can not open it again. Consider this simple example USE STATES NEW EXCLUSIVEUSE CUSTOMER NEW SHAREDcFile := cGetFile( "*.dbf|*.dbf|" )  In this case, cGetFile() function allows us to select ...
by nageswaragunupudi
Fri Feb 12, 2021 3:07 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: cGetFile( )
Replies: 2
Views: 382

Re: Sending and receiving SMS via Amazon webservices

Hello Marc and thank you for the tip. I will take a look today.

I also got a tip pointing me to Twilio. I will let you know how it goes.

Yes, I'm in United States.


Reinaldo.
by reinaldocrespo
Wed Nov 18, 2020 12:36 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Sending and receiving SMS via Amazon webservices
Replies: 2
Views: 428

Re: Program techniques : change indexorder or use aliases

... 101, "ITEMCODE", { || FIELD->QTY -= nOldQty } ) ITEMS->( FW_DBLOOKUP( 103, "ITEMCODE", { || FIELD->QRY += nNewQty } ) STATES->( FW_DBLOOKUP( 10, 0, "FIELD->NAME" ) ) // at recno 10 Original recno() and order are restored and any previous locks are left ...
by Marc Venken
Wed Nov 04, 2020 11:30 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Program techniques : change indexorder or use aliases
Replies: 4
Views: 679
Next

Return to advanced search