Hello Experts
when I Use sql Select I lose my Grid Design
what I mean by grid design is my header fonts are bolded, my columns are wider in size. but when I run my form everything is plain and ugly.
is there a way around this?
here's what i have in my load event
And in the Init
when I Use sql Select I lose my Grid Design
what I mean by grid design is my header fonts are bolded, my columns are wider in size. but when I run my form everything is plain and ugly.
is there a way around this?
here's what i have in my load event
Code:
SELECT a.startdate, a.enddate, ;
ALLTRIM(c.firstname)+" "+ALLTRIM(c.LastName) AS NAME,;
b.subtotal, b.hst, b.grandtotal FROM appointment a ;
JOIN billing b ON a.appointid = b.appointid ;
JOIN customers c ON c.customerid = a.customerid ;
ORDER BY a.startdate ;
INTO CURSOR curappointment READWRITE
SELECT * ;
FROM curAppointment ;
WHERE .F. ;
INTO CURSOR curHoldAppt
GO TOP IN curappointment
And in the Init
Code:
this.grdpricinglist.RecordSource = "curappointment"
this.grdpricinglist.refresh()