Welcome To The Home Of The Visual FoxPro Experts  
home. signup. forum. archives. search. google. articles. downloads. faq. members. weblogs. sponsors. rss.
 From: Yousfi Benameur
  Where is Yousfi Benameur?
 El Bayadh
 Algeria
 Yousfi Benameur
 To: Tai Nguyen
  Where is Tai Nguyen?
 
 United States
 Tai Nguyen
 Tags
Subject: RE: Unicode (hex) is not supported by Foxpro
Thread ID: 232400 Message ID: 232490 # Views: 41 # Ratings: 0
Version: Visual FoxPro 9 Category: General VFP Topics
Date: Tuesday, June 23, 2009 6:36:33 PM         
   


> >
> >
> > Yes its possible with a textbox but putting the textbox fontname to FOXFONT.
> > in textbox.init
> >
> > this.fontname="Foxfont"
> > this.value=chr(243)
> > 

> >
> > Dont rate please.its only for the pleasure to help.Give me only a feed back.
> > Yousfi Benameur
>
> **************************************************************************************
> **************************************************************************************
>
> Yeap, it was possible to put to FOXFONT on the textbox. I bind this text box to a field in a table. It writes to a table with a different symbol instead and I was trying to change the font to FOXFONT for the table too but didn't work. How do you change to FOXFONT on the report also? Thanks.
>
> Tai Nguyen.

PUBLIC oform1
oform1=NEWOBJECT("form1")
oform1.Show
RETURN

DEFINE CLASS form1 AS form
	Top = 108
	Left = 218
	Height = 205
	Width = 327
	DoCreate = .T.
	Caption = "Form1"
	Name = "form1"

	ADD OBJECT text1 AS textbox WITH ;
		Height = 73, ;
		Left = 24, ;
		Top = 72, ;
		Width = 265, ;
		Name = "Text1"

	ADD OBJECT command5 AS commandbutton WITH ;
		Top = 36, ;
		Left = 96, ;
		Height = 27, ;
		Width = 84, ;
		Caption = "Process", ;
		Name = "Command5"

	PROCEDURE command5.Click
		CREATE cursor Chars (NumberVal I, CharVal C(1))
		FOR x = 33 TO 255
		INSERT INTO Chars (NumberVal, CharVal) ;
		VALUES (x, CHR(x))
		ENDFOR
		*brow font "foxfont"

		thisform.text1.fontname="Foxfont"
		thisform.text1.fontsize=28
		thisform.text1.controlSource="Chars.Charval"


		declare integer Sleep in win32api integer

		scan
		thisform.text1.value=Charval
		sleep(50)
		endscan
	ENDPROC


ENDDEFINE
*
*-- EndDefine: form1


for installing a font on a report , open the designer...properties.....font



Dont rate please.its only for the pleasure to help.Give me only a feed back.
Yousfi Benameur



COMPLETE THREAD
Unicode (hex) is not supported by Foxpro Posted by Tai Nguyen @ 6/22/2009 8:54:40 PM
RE: Unicode (hex) is not supported by Foxpro Posted by Borislav Borissov @ 6/22/2009 9:08:46 PM
RE: Unicode (hex) is not supported by Foxpro Posted by Tai Nguyen @ 6/22/2009 11:22:18 PM
RE: Unicode (hex) is not supported by Foxpro Posted by Yousfi Benameur @ 6/23/2009 12:32:51 AM
RE: Unicode (hex) is not supported by Foxpro Posted by Tai Nguyen @ 6/23/2009 2:44:13 AM
RE: Unicode (hex) is not supported by Foxpro Posted by Yousfi Benameur @ 6/23/2009 11:05:54 AM
RE: Unicode (hex) is not supported by Foxpro Posted by Tai Nguyen @ 6/23/2009 5:27:22 PM
RE: Unicode (hex) is not supported by Foxpro Posted by Yousfi Benameur @ 6/23/2009 6:36:33 PM
RE: Unicode (hex) is not supported by Foxpro Posted by Tai Nguyen @ 6/23/2009 8:13:22 PM
RE: Unicode (hex) is not supported by Foxpro Posted by Koen Piller @ 6/23/2009 10:18:05 PM
RE: Unicode (hex) is not supported by Foxpro Posted by Tai Nguyen @ 6/23/2009 11:01:56 PM
RE: Unicode (hex) is not supported by Foxpro Posted by Koen Piller @ 6/24/2009 12:15:29 AM
RE: Unicode (hex) is not supported by Foxpro Posted by Tai Nguyen @ 6/24/2009 2:54:07 AM
RE: Unicode (hex) is not supported by Foxpro Posted by Koen Piller @ 6/24/2009 9:46:03 AM
RE: Unicode (hex) is not supported by Foxpro Posted by Tai Nguyen @ 6/24/2009 3:07:02 PM
RE: Unicode (hex) is not supported by Foxpro Posted by Anders Altberg @ 6/25/2009 11:46:12 PM
RE: Unicode (hex) is not supported by Foxpro Posted by Tai Nguyen @ 6/26/2009 2:09:35 AM
RE: Unicode (hex) is not supported by Foxpro Posted by Tai Nguyen @ 6/24/2009 10:26:44 PM
RE: Unicode (hex) is not supported by Foxpro Posted by Koen Piller @ 6/24/2009 11:32:24 PM
RE: Unicode (hex) is not supported by Foxpro Posted by Tai Nguyen @ 6/25/2009 12:11:55 AM
RE: Unicode (hex) is not supported by Foxpro Posted by Yousfi Benameur @ 6/24/2009 1:50:01 AM
RE: Unicode (hex) is not supported by Foxpro Posted by Tai Nguyen @ 6/24/2009 2:42:59 AM
RE: Unicode (hex) is not supported by Foxpro Posted by Tai Nguyen @ 6/24/2009 10:27:48 PM
RE: Unicode (hex) is not supported by Foxpro Posted by Yousfi Benameur @ 6/25/2009 2:49:28 AM
RE: Unicode (hex) is not supported by Foxpro Posted by Tai Nguyen @ 6/25/2009 4:04:33 AM
RE: Unicode (hex) is not supported by Foxpro Posted by Koen Piller @ 6/25/2009 8:57:34 AM
RE: Unicode (hex) is not supported by Foxpro Posted by Tai Nguyen @ 6/25/2009 7:18:21 PM
RE: Unicode (hex) is not supported by Foxpro Posted by Koen Piller @ 6/25/2009 9:19:10 PM
RE: Unicode (hex) is not supported by Foxpro Posted by Tai Nguyen @ 6/25/2009 11:21:49 PM
RE: Unicode (hex) is not supported by Foxpro Posted by Koen Piller @ 6/25/2009 11:43:13 PM
RE: Unicode (hex) is not supported by Foxpro Posted by Tai Nguyen @ 6/26/2009 2:53:26 AM
RE: Unicode (hex) is not supported by Foxpro Posted by Koen Piller @ 6/26/2009 9:46:15 AM
RE: Unicode (hex) is not supported by Foxpro Posted by Tai Nguyen @ 6/26/2009 2:58:41 PM
RE: Unicode (hex) is not supported by Foxpro Posted by Koen Piller @ 6/26/2009 4:32:52 PM
RE: Unicode (hex) is not supported by Foxpro Posted by Tai Nguyen @ 6/26/2009 5:25:16 PM
RE: Unicode (hex) is not supported by Foxpro Posted by Koen Piller @ 6/26/2009 10:59:36 PM
RE: Unicode (hex) is not supported by Foxpro Posted by Tai Nguyen @ 6/27/2009 2:02:54 AM
RE: Unicode (hex) is not supported by Foxpro Posted by Koen Piller @ 6/27/2009 7:54:02 AM
RE: Unicode (hex) is not supported by Foxpro Posted by Tai Nguyen @ 6/27/2009 10:58:15 PM
RE: Unicode (hex) is not supported by Foxpro Posted by Koen Piller @ 6/28/2009 12:02:57 AM
RE: Unicode (hex) is not supported by Foxpro Posted by Tai Nguyen @ 6/28/2009 12:23:12 AM
RE: Unicode (hex) is not supported by Foxpro Posted by Koen Piller @ 6/28/2009 8:47:51 PM
RE: Unicode (hex) is not supported by Foxpro Posted by Tai Nguyen @ 6/28/2009 9:41:20 PM
RE: Unicode (hex) is not supported by Foxpro Posted by Koen Piller @ 6/29/2009 12:03:18 AM