Search found 3321 matches: fields

Return to advanced search

Re: Problemas con resolucion y xBrowse

Enrico Maria Giordano wrote:Are you sure there are any datas on that fields? If yes, I can't imagine why they are not shown in the xBrowse, sorry.


Don't worry, is ok.

Thanks my friend.
by JoseAlvarez
Sun May 05, 2024 6:54 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: Problemas con resolucion y xBrowse
Replies: 9
Views: 177

Re: Problemas con resolucion y xBrowse

Are you sure there are any datas on that fields? If yes, I can't imagine why they are not shown in the xBrowse, sorry.
by Enrico Maria Giordano
Sun May 05, 2024 6:48 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: Problemas con resolucion y xBrowse
Replies: 9
Views: 177

Re: Problemas con resolucion y xBrowse

Are the last three fields of numeric type? If yes, why are you using a NIL picture for them? Only a stab in the dark.
by Enrico Maria Giordano
Sun May 05, 2024 5:39 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: Problemas con resolucion y xBrowse
Replies: 9
Views: 177

New FTDN April 2024 (FWH 24.04)

... record oStatesRec:Edit() // modify and save the existing record - Methods CreateTable() and ImportFromDBF() used to create DateTime and TimeStamp fields without support for fraction of seconds. Now support fraction of seconds milliseconds. - Improved support for Restoring large tables * FWMariaRowSet ...
by Antonio Linares
Wed Apr 24, 2024 7:14 am
 
Forum: WhatsNew / Novedades
Topic: New FTDN April 2024 (FWH 24.04)
Replies: 1
Views: 544

Re: New txbrowse

... 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. the programmer makes all the fields available to the end user but for space reasons sets some columns (defined columns) ...
by Silvio.Falconi
Mon Apr 22, 2024 7:44 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: New txbrowse
Replies: 6
Views: 458

Acuse d e entrega y acuse de lectura en un mail.

... Yo estoy usando CDOSYS y consigo reproducir el acuse de lectura, pero no hay manera de reproducir el acuse de entrega. En mi código utilizo: oMsg:Fields:Item( "urn:schemas:mailheader:disposition-notification-to" ):Value = cFrom oMsg:Fields:Item( "urn:schemas:mailheader:return-receipt-to" ...
by FiveWiDi
Sat Apr 06, 2024 7:34 pm
 
Forum: Off Topic / Otros temas
Topic: Acuse d e entrega y acuse de lectura en un mail.
Replies: 2
Views: 1549

Re: incremental search on Xbrowse

... ::cSeek )            ::SelectRow( 2 )  Nages I'm also interested in this change, I would also like to search for a word within the fields, how can I do it? I normally use get (cseek) and combo to change the field to search and I use multiselectcol I would like to add to the normal ...
by Silvio.Falconi
Wed Mar 27, 2024 9:18 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: incremental search on Xbrowse
Replies: 10
Views: 2103

Re: Alto de linea en LISTBOX

... SIZE 0,-15 DEFINE DIALOG oDlg RESOURCE "CodLiqVar" . . . select _CoLiAux _CoLiAux->(DbGotop()) REDEFINE LISTBOX oLbx FIELDS str(_CoLiAux->Locatario,4,0) , ; _CoLiAux->Nombre , ; str(_CoLiAux->Propiedad,4,0) , ; _CoLiAux->Domicilio , ; str(_CoLiAux->importe,12,0) ...
by karinha
Mon Mar 25, 2024 4:54 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: Alto de linea en LISTBOX
Replies: 5
Views: 1002

Re: Alto de linea en LISTBOX

... SIZE 0,-15 DEFINE DIALOG oDlg RESOURCE "CodLiqVar" . . . select _CoLiAux _CoLiAux->(DbGotop()) REDEFINE LISTBOX oLbx FIELDS str(_CoLiAux->Locatario,4,0) , ; _CoLiAux->Nombre , ; str(_CoLiAux->Propiedad,4,0) , ; _CoLiAux->Domicilio , ; str(_CoLiAux->importe,12,0) ...
by José Camilo
Mon Mar 25, 2024 1:50 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: Alto de linea en LISTBOX
Replies: 5
Views: 1002

Error en Listbox.

... definido por WorkShop y funciona correctamente. en otra funcion en la cual copie el listbox en el prg . asi lo defini REDEFINE LISTBOX oLbx FIELDS str(_CoLiAux->Locatario,4,0) , ; str(_CoLiAux->Propiedad,4,0) ; ID _CLV_Lbx ; FIELDSIZES {50,50} ; HEADERS "Loc.","Prop" ...
by José Camilo
Sun Mar 24, 2024 10:27 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: Error en Listbox.
Replies: 1
Views: 320

Re: WebView resize

... CSS styling, these <div> elements can visually and functionally represent panels, organizing content and controls on the page. Text Fields (TGet, TMemo, etc.): Text input fields in FiveWin can be mapped to <input type="text"> or <textarea> elements in HTML, ...
by Otto
Thu Mar 21, 2024 10:55 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: WebView resize
Replies: 9
Views: 2148

Re: Question about performance RowSet

... }    oCn:Upsert( "states", nil, { aRow } )endif  But insert not work. Table `states` has 3 fields: id, code, name where id is autoincrement field This should work: oCn:Upsert( "states", nil, { { 0, "KK", "KState" ...
by Eroni
Wed Mar 20, 2024 7:01 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Question about performance RowSet
Replies: 19
Views: 4170

Re: Question about performance RowSet

... inserts aRow := { "aa","bb" } oCn:Upsert( "states", nil, { aRow } ) endif But insert not work. Table `states` has 3 fields: id, code, name where id is autoincrement field This should work: oCn:Upsert( "states", nil, { { 0, "KK", "KState" ...
by nageswaragunupudi
Wed Mar 20, 2024 3:19 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Question about performance RowSet
Replies: 19
Views: 4170

Re: How to include hbCurl?

... when replacing `cSecure_Email`. If there are still issues, double-check the JSON payload for correct formatting and ensure that all required fields are provided accurately.
by Otto
Wed Mar 20, 2024 4:59 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: How to include hbCurl?
Replies: 13
Views: 3027

Re: SWAGGER-UI para documentar nuestras API.

... created")   hb_JsonDecode( cMemo, @hHash )   XBrowser HashTree ( hHash ) FASTEDIT  Now the hard part of getting all those fields from the HASH
by Marc Venken
Sat Mar 09, 2024 9:07 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: SWAGGER-UI para documentar nuestras API.
Replies: 9
Views: 2029
Next

Return to advanced search

cron