Location:
Search - setfont
Search list
Description: 一个用VC编的设置字体的小程序,可以设置界面上任何文字的字体.-an addendum to the VC set up procedures for small fonts can be installed in any language interface fonts.
Platform: |
Size: 29617 |
Author: 贾衡 |
Hits:
Description: CEdit& edit = GetEditCtrl() //定义指向视图的Cedit控件
if (m_Font.m_hObject == NULL)
{
m_Font.CreatePointFont(120,\"Fixedsys\")
}
if (m_Font.m_hObject != NULL)
edit.SetFont (&m_Font)
edit.SetTabStops (16)
Platform: |
Size: 4776 |
Author: MARS YUAN |
Hits:
Description: 生成cp1250~cp1258 8x8点阵字库
Platform: |
Size: 6402 |
Author: 周思源 |
Hits:
Description: CP1251字库文件,BMP格式,由SetFont Visual Basic程序产生。
Platform: |
Size: 922 |
Author: 周思源 |
Hits:
Description: CP1252字库文件,BMP格式,由SetFont Visual Basic程序产生。
Platform: |
Size: 850 |
Author: 周思源 |
Hits:
Description: CP1255字库文件,BMP格式,由SetFont Visual Basic程序产生。
Platform: |
Size: 827 |
Author: 周思源 |
Hits:
Description: 一个用VC编的设置字体的小程序,可以设置界面上任何文字的字体.-an addendum to the VC set up procedures for small fonts can be installed in any language interface fonts.
Platform: |
Size: 29696 |
Author: 贾衡 |
Hits:
Description: CEdit& edit = GetEditCtrl() //定义指向视图的Cedit控件
if (m_Font.m_hObject == NULL)
{
m_Font.CreatePointFont(120,"Fixedsys")
}
if (m_Font.m_hObject != NULL)
edit.SetFont (&m_Font)
edit.SetTabStops (16) -CEdit
Platform: |
Size: 4096 |
Author: |
Hits:
Description: 生成cp1250~cp1258 8x8点阵字库-Generated cp1250 ~ cp1258 8x8 dot matrix font
Platform: |
Size: 6144 |
Author: 周思源 |
Hits:
Description: CP1251字库文件,BMP格式,由SetFont Visual Basic程序产生。
Platform: |
Size: 1024 |
Author: 周思源 |
Hits:
Description: CP1255字库文件,BMP格式,由SetFont Visual Basic程序产生。-CP1255 ???馕?????BMP ?袷 ???由SetFont Visual Basic ?绦??
Platform: |
Size: 1024 |
Author: 周思源 |
Hits:
Description: 設置你程式裡面的字型,大小,讓你的應用程式呈現多樣化。-Set up your program inside the font, size, make your diversified applications.
Platform: |
Size: 315392 |
Author: EthanHu |
Hits:
Description: java中大部分对图形、文本、图像的操作方法都定义在Graphics类中,所以此次实验使用的方法如Color(int r, int g,int b), setColor(Color c),drawline(int x1,int y1,int x2,int y2)等都来自Graphics类中,此外对文本和字体的处理还用到了Font类中的 new Font(“字体名”,字体风格,字体大小),setFont(Font f)等方法;-Most of java on the graphics, text, images, methods of operation defined in the Graphics class, so the experimental methods such as the use of Color (int r, int g, int b), setColor (Color c), drawline (int x1 , int y1, int x2, int y2) are from the Graphics class, in addition to text and font handling is also used in the Font class of new Font ( Font name , font style, font size), setFont (Font f) and other methods
Platform: |
Size: 31744 |
Author: 若儿 |
Hits:
Description: VB学习资料——设置所选文字的字体,大小-VB learning materials- to set the selected text font, size, etc.
Platform: |
Size: 1024 |
Author: 李少东 |
Hits:
Description: gridbaglayout example-import java.awt.*
import java.util.*
import java.applet.Applet
public class GridBagEx1 extends Applet {
protected void makebutton(String name, GridBagLayout gridbag,
GridBagConstraints c) {
Button button = new Button(name)
gridbag.setConstraints(button, c)
add(button)
}
public void init() {
GridBagLayout gridbag = new GridBagLayout()
GridBagConstraints c = new GridBagConstraints()
setFont(new Font("SansSerif", Font.PLAIN, 14))
setLayout(gridbag)
c.fill = GridBagConstraints.BOTH
c.weightx = 1.0
// makebutton("Button1", gridbag, c)
// makebutton("Button2", gridbag, c)
// makebutton("Button3", gridbag, c)
c.gridwidth = GridBagConstraints.REMAINDER // end row
makebutton("Button4", gridbag, c)
c.weightx = 0.0 // reset to the default
makebutton("Button5", gridbag, c) // another row
c.gridwidth = GridBagConstraints.RELATIVE // next-to-last in row
makebutton("Button6", gridbag, c)
c
Platform: |
Size: 1024 |
Author: |
Hits:
Description: A "GOOD" print module.
Supports many functions like :
SetFont
SetupPrinter
QuickPrint
GetY
GetX
AlignCenter
AlignRight
AlignLeft
PrintHeader
PrintFooter
PrintPageNum
PrintLine
CheckPageLen
EndOfPage
Hope you like it. If you need more functions, email me and I ll add them to the module.
Platform: |
Size: 2048 |
Author: d3graph |
Hits:
Description: The CGraphicButton class is derived from CWnd and encapsulates a Windows button control. The CGraphicButton class allows use of a combination of a bitmap and text on the face of your button. The class allows the option of either a bitmap-left or a text-left placement., The graphic above shows the same button in four different states. As of this date, 17 Jun 1997, CGraphicButton class bitmaps are limited to 16 colors, although that could be easily changed. The CGraphicButton class is designed to respond to both color and font style changes that are made by the user at runtime. The class uses as it s default font the font that is used by it s parent, generally a dialog box. The font can be changed by using SetFont(..) after the class instance creation call. Simple instructions to include CGraphicButton into your project are included. http://www.concentric.net/~cgalbrai/Grabut.shtml
Platform: |
Size: 9216 |
Author: Rahim |
Hits:
Description: fpdf类,实现pdf导出。
<?
define( FPDF_FONTPATH , FPDF/font/ )
require( FPDF/fpdf.php )
$pdf = new FPDF( P , mm , A4 )
$pdf->Open()
$pdf->AddPage()
$pdf->SetFont( Courier , I ,20)
$pdf->Cell(0,0, sssssss! )
$pdf->Output( a.pdf ,true)
?> -fpdf class to achieve the pdf export. <?
define( FPDF_FONTPATH , FPDF/font/ )
require( FPDF/fpdf.php )
$pdf = new FPDF( P , mm , A4 )
$pdf-> Open () $ pdf-> AddPage () $ pdf-> SetFont (' Courier' , ' I' , 20) $ pdf-> Cell (0,0, ' sssssss!' ) $ Pdf-> Output (' a.pdf' , true) ?>
Platform: |
Size: 410624 |
Author: zouyang |
Hits:
Description: 登陆注册界面设计,注册失败自动返回,成功则跳转页面-public class Register extends JFrame implements ActionListener{
private static final long serialVersionUID = 1L
String Sex = ""
JLabel lb_title,lb_user,lb_psd,lb_repsd,lb_sex,lb_class,lb_age
JTextField tf_user,tf_age
JPasswordField pf_psd,pf_repsd
JRadioButton rbtn_male,rbtn_female
JComboBox cb_class
JButton btn_register,btn_reset,btn_cancel
JPanel p0,p1,p2,p3,p4,p5,p6
public String getTitle(){
return "用户注册"
}
public Register(){
p0=new JPanel()
lb_title=new JLabel("用户注册")
lb_title.setFont(new Font("宋体",Font.BOLD,23))
p0.add(lb_title)
p1 = new JPanel()
lb_user=new JLabel("用 户 名:")
tf_user=new JTextField(16)
p1.add(lb_user)
Platform: |
Size: 9216 |
Author: 李昭 |
Hits:
Description: // Create header action if useSpecialHeader == true
if (useSpecialHeader) {
headerAction = new QWidgetAction(this)
headerAction->setEnabled(false)
headerActionFrame = new QFrame
headerActionFrame->setFrameShape(QFrame::Box)
headerAction->setDefaultWidget(headerActionFrame)
QHBoxLayout *headerActionFrameLayout = new QHBoxLayout()
headerActionFrameLayout->setMargin(3)
headerActionFrameLayout->setSpacing(3)
headerActionFrame->setLayout(headerActionFrameLayout)
iconLabel = new QLabel
headerLabel = new QLabel
iconSize = style()->pixelMetric(QStyle::PM_SmallIconSize)
headerActionFrameLayout->insertWidget(-1,iconLabel,0)
headerActionFrameLayout->insertWidget(-1,headerLabel,20)
QFont font = headerLabel->font()
font.setBold(true)
headerLabel->setFont(font)
addAction(headerAction)
}
Platform: |
Size: 1024 |
Author: Dmitry |
Hits: