Subj : Re: Problem of printing To : borland.public.cpp.borlandcpp From : Jan Vernimmen Date : Thu Sep 23 2004 06:10 pm DriDri, Aren't you looking to the wrong place? fprintf is handling just ASCII char code to file (you opend the printer as a file here, I suppose). The 8-bit char-code is not coppled to (or with) any font data. Read back so written data in hex and you will see. If you read the file and put the char's to screen or printer using SelectObject(*font); and TextOut (x,y, string); and it works! Jan. dridri wrote: > Hi > > You're right but it is just a problem of typing when writing my message. > > The missing quote is in my code. > > So the problem remains the same > > Thanks > > > "Jan Vernimmen" a écrit dans le message de > news:4152a950@newsgroups.borland.com... > >>Did not you forget a quote? >>fprintf(stdprn,"%sIngot°",Blank); >> >>Jan. >> >> >>dridri wrote: >> >>>Hi >>>I'm using BC++ 4.52. >>> >>>I've got a problem of printing >>>I don't succeed in printing ° >>>Printer prints another thing >>>Others work abcde .... >>> >>> >>>I use the following syntax >>> >>>fprintf(stdprn,"%sIngot°,Blank); >>> >>> >>>Maybe it's a problem of font? >>> >>>Is it possible to specify a font with fprinf? >>> >>>Thanks for your advice >>> >>>Sylvain >>> >>> >> > > .