Search found 50 matches: ocust

Return to advanced search

Re: To Nages Problem with Tdatabase and new DAtepick

...  :SetRange( dStagioneMin,dStagioneMax )END  as I did before when I used the exclusive way and then when I have to save I can't just use oCust:Save () but I must save all fields with oCust: first := cFirst oCust: Last:= cLast I don't see why you would need to do that if you are using ...
by James Bott
Thu May 06, 2021 4:36 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: To Nages Problem with Tdatabase and new DAtepick
Replies: 13
Views: 1777

Re: To Nages Problem with Tdatabase and new DAtepick

... with :lNoToday but James doesn't want to understand this passage doing in this way I must first transfer the single record in variables: cFirst: = oCust: first cLast: = oCust: Last cAddress: = oCust: address as I did before when I used the exclusive way and then when I have to save I can't just ...
by Silvio.Falconi
Thu May 06, 2021 7:03 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: To Nages Problem with Tdatabase and new DAtepick
Replies: 13
Views: 1777

Re: SMS To Customer - Upon Order Delivery

... "&sender=" + SMS_Brnd +CHR(13)+ ; "&mobile=" + SMS_Cell +CHR(13)+ ; "&message=" + SMS_Text ShellExecute( oCust:hWnd, "open", cURL ) Return( Nil ) I have not used curl
by RiazKhan
Tue Apr 06, 2021 5:13 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Re: SMS To Customer - Upon Order Delivery
Replies: 14
Views: 1570

Re: SMS To Customer - Upon Order Delivery

... the sending mechanism is transparent. Is there a method to send the SMS without the web page opening..?? I am using the following : ShellExecute( oCust:hWnd, "open", cURL ) Any suggestions, Thnx...
by RiazKhan
Tue Apr 06, 2021 2:55 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Re: SMS To Customer - Upon Order Delivery
Replies: 14
Views: 1570

Re: xbrowse with double row

... in my notes, apparently from an old forum message. I don't remember if I ever tried it. To get multiple lines per record: oCol:bStrData := { || oCust:name + CRLF + oCust:street } oBrw:nDataLines := 2 oBrw:nRowHeight := 35 // optional. Automatic, but you may enlarge this if you like xBrowse will ...
by James Bott
Wed Sep 18, 2019 3:13 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: xbrowse with double row
Replies: 3
Views: 674

Re: Help for a XBrowse

... "Checkon.bmp" ) // from Disk :aCols[ 4 ]:addbmpfile( c_path1 + "Checkoff.bmp" ) // from Disk :aCols[ 4 ]:bBmpData := {|| IIF( oCust:Age < 30, 1, 2 ) } http://www.pflegeplus.com/IMAGES/Xbrwcell1.jpg // numeric    :aCols[ 4 ]:nEditType     := EDIT_BUTTON  ...
by ukoenig
Sun Sep 15, 2019 8:59 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Help for a XBrowse (SOLVED THANKS UKOENIG)
Replies: 6
Views: 869

Re: trasparent bitmap on xbrowse

... or with a mouse click, the gap is visible. The test is using a bClrStd-combination @ 80,20 XBROWSE oBrw SIZE 520, 485 PIXEL OF oDlg2; DATASOURCE oCust ; AUTOSORT FOOTERS FASTEDIT ; COLUMNS "Last", "First", "Age", "Married", "Values1", "Values2" ...
by ukoenig
Tue Jun 11, 2019 11:03 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: trasparent bitmap on xbrowse
Replies: 7
Views: 898

Re: To James Bott - Error Using TData

... of the same table +1 without using sysdbf.file and autoincremental class sample: at init IF nMode == 1 .or. nMode == 3 // add new or duplicate oCust: gobottom () CCLI: = StrZero (Val (oCust: NumCli) +1.4) else cCli: = oRec: numcli // modify endif dialog @ 12, 5 SAY "Code:" OF oDlg ...
by James Bott
Wed May 29, 2019 3:42 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: To James Bott - Error Using TData
Replies: 49
Views: 5230

Re: To James Bott - Error Using TData

... of the same table +1 without using sysdbf.file and autoincremental class sample: at init IF nMode == 1 .or. nMode == 3 // add new or duplicate oCust: gobottom () CCLI: = StrZero (Val (oCust: NumCli) +1.4) else cCli: = oRec: numcli // modify endif dialog @ 12, 5 SAY "Code:" OF oDlg ...
by Silvio.Falconi
Wed May 29, 2019 11:56 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: To James Bott - Error Using TData
Replies: 49
Views: 5230

Re: To James Bott - Error Using TData

... tDatabase Must work better than Tdatabase leaving out if you can or can't make a Tcustomer class (that's not the point) If I can open a dbf with oCust := TDatabase():New( , "C:\FWH\SAMPLES\CUSTOMER", "DBFCDX", .t. ) it must open also with oCust := TData():New( , "C:\FWH\SAMPLES\CUSTOMER", ...
by Silvio.Falconi
Tue May 28, 2019 7:29 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: To James Bott - Error Using TData
Replies: 49
Views: 5230

Re: TO Mr Rao : XBrDtPicker

Silvio,

FOUND :D moving to the old date works like:

ACTION oCal:SetDate( oCust:HireDate, .T. ), ; // old date from xBrowse
oCal:Change() ;

or moving back to today from a old selected date
ACTION ( cRet := oCal:SetDate( Date(), .T. ), oCal:Change() ) ;

regards
Uwe
by ukoenig
Mon May 20, 2019 12:13 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: TO Mr Rao : XBrDtPicker
Replies: 10
Views: 934

Re: TO Mr Rao : XBrDtPicker

... needed / included actions and other extras so it looks different like You can see trying to move to the selected date with : ACTION oCal:SetDate( oCust:HireDate, .T. ), ; oCal:Refresh() ; http://www.pflegeplus.com/IMAGES/Datesel1.jpg regards Uwe :?:
by ukoenig
Mon May 20, 2019 11:50 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: TO Mr Rao : XBrDtPicker
Replies: 10
Views: 934

Re: xbrowse listbox

... := EDIT_BUTTON :bEditBlock := { | nRow, nCol, oCol, nKey | Retvalue := MyCellDlg( oBrw, nRow, nCol, oCol, nKey ), ; IIF( Retvalue <> NIL, ( oCust:City := Retvalue, oBrw:RefreshCurrent(), oBrw:GoRight() ), NIL ) } END next column :aCols[ 4 ]:nEditType = EDIT_GET regards Uwe :?:
by ukoenig
Mon Apr 22, 2019 4:21 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: xbrowse listbox
Replies: 5
Views: 771

Re: XBrowse - adding cellimages from DBF or array

... aspect ratio http://www.pflegeplus.com/IMAGES/XbrwImage2.jpg WITH OBJECT oBrw:aCols[ 5 ] // :bStrImage := { || c_path1 + ALLTRIM(oCust:Image) } // :nDataStrAlign := AL_CENTER + AL_BOTTOM // :nDataBmpAlign := AL_CENTER // My solution :bPaintText := { | oCol, hDC, cData, aRect | ...
by ukoenig
Wed Mar 13, 2019 4:16 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: XBrowse - adding cellimages from DBF or array
Replies: 2
Views: 737

Re: :Setfilter from a defined substring ?

Have you tried with

my_filter = "dtos(oCust:Hiredate) >= dtos(" + ctod(dDate1) + ")"
oCust:SetFilter(my_filter)
by Massimo Linossi
Wed Feb 13, 2019 8:14 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: :Setfilter from a defined substring ?
Replies: 6
Views: 1040
Next

Return to advanced search