nageswaragunupudi wrote:Can you please try this?
Code: Select all | Expand
oBrw:bDataRow := <|oBrw,cFieldList,lNew| local oRec := TDataRow():New( oBrw:uDataSource, cFieldList, lNew ) if oRec:RecNo == 0
It works for getting the data into the editdialog, but the data that are displayed in the edit dialog will not be saved ? Data that I change saves, but not the predifined data.
It also seems that the lenght of the data input is not as long as the fields are.
My Code
Code: Select all | Expand
function klantbrowse(oDlg,oDbfklant) local oDlg1, obrw , nWild:=2 , oSay, oGet, cUpper public a_Veldnaam:={} dbselectarea("klant") klant->(dbsetorder("klantnaam")) klant->(dbgotop()) DEFINE FONT oBold NAME 'CALIBRI' SIZE 0,-12 BOLD DEFINE FONT oFont NAME "CALIBRI" SIZE 0,-14 DEFINE FONT oFontBig NAME "CALIBRI" SIZE 0,-24 DEFINE DIALOG oDlg1 SIZE 1000,730 PIXEL TRUEPIXEL ; STYLE nOR( DS_MODALFRAME, WS_POPUP, WS_CAPTION, WS_SYSMENU,WS_MAXIMIZEBOX, WS_MINIMIZEBOX, WS_THICKFRAME ); TITLE "Klantenlijst : "; GRADIENT { { 1, nRGB( 125, 155, 175 ), nRGB( 125, 155, 175 ) } } aVelden := { ; { "klant_nr" , "Code" ,nil, 65 }, ; { "Naam_1" , "Naam" ,nil, 250 }, ; { "straat" , "Straat" ,nil, 250 }, ; { "gemeente" , "Gemeente",nil, 150 }, ; { "selectie" , "Sel" ,nil, 40 }} @ 0,0 XBROWSE oBrw size -1,-50 PIXEL OF oDlg1 font oFont ; DATASOURCE "klant" ; COLUMNS aVelden ; AUTOSORT CELL LINES NOBORDER FOOTERS oBrw:SetChecks() oBrw:lHScroll := .F. oBrw:nHeadStrAligns := AL_CENTER oBrw:naam:bLClickHeader := {|| oBrw:Seek( "" ), oBrw:cFilterFld := "Naam_1" } oBrw:straat:bLClickHeader := {|| oBrw:Seek( "" ), oBrw:cFilterFld := "Straat" } oBrw:bDataRow := <|oBrw,cFieldList,lNew| local oRec := TDataRow():New( oBrw:uDataSource, cFieldList, lNew ) if oRec:RecNo == 0
If you have any suggestions in altering the browse code, please do ... I like the learning process..