sandy
sandy
About
- Username
- sandy
- Joined
- Visits
- 0
- Last Active
- Roles
- Members
Comments
-
jirayu wrote: » What could cause the report to print and shift down little by litte ? This happens from the second page printing on Dot Metrix Epson LQ1170. My friends got the same problem too. Any help appreciated. Hmm.. the thing i k…
-
noyasoftnix wrote on Mar 2 2007, 03:30 AM: Hi, I used pragnaan too, but i have problem when i want to migrate my code into D2006, i bought full source from pragnaan, but actually it isn't full source code that i'd get, they only send me dcu …
-
oke maybe it's been a years more, but actually i've found the answer, before you export your report into excel, make sure that is no violation of the rules of excel. In Example, if you have text "=Test This is Wrong" , then it can raise OLE Error, …
-
Hi Roger, Maybe, it still shown because you only validating for value is 0, how about if the field is Null?? It won't be validated right?? Why don't use WHERE [Validation] in the IBXQuery, it will be give you more guarantee that the record won…
-
Hi, So you already solved your problem Your welcome, sandy prasetya
-
Hello sustr123, Correct me if i'm wrong , But as long as i know, to cut paper on POS printer, you must use their code to cut it. in eq: EPSON has ESC Code, and you should push that code into your printer. After that automatically, your printe…
-
Hi Okt, You can change custom size with using: Page.ChangePaper( ASize, AWidth, AHeight, ABin, AOrientation); where : ASize is $100 or 256 for Custom Size.... I think Custom Size is accurate only when you previewing it... But when you want …
-
Thank you.. theNiceSpider, Sorry i'm forgot to check another topic before i post mine..
-
I already solved it. procedure TPBox.ReDraw_View(iView: TObject); var vRect : TRect; vMemoText : String; begin //refresh the background if (iView is TfrMemoView) then begin vRect := Rect( TfrMemoView(iView).DRect.Left, TfrMemoView(iView).…
-
Hi Teo, Thanks..
-
I has solved it. The previous codes are almost right, but i forget to rePaint it. So, i just need to reDraw TPBox object. TPBox(FHooverLine.Parent).Invalidate; (with FHooverLine.Parent := fr.Preview.Window.PaintBox )