Guidance
指路人
g.yi.org
Guidance Forums
/
Rapid-Q Basic
/ QLabel Quirk
最新
搜索
论坛
Reginald Rexx
STC(宏晶)单片机与电路设计
wxWidgets (wxWindows) in C++
奇瑞QQ车友论坛
生活信息交流与学习角
质量与可靠性
Rapid-Q Basic
FreeBasic
Reginald
Forum
Examples
RapidQ
Forum
Bugs
Examples
Resource
RQ Doc
RQ Intro
System
LeonAutoBackup
Home
Software
App
Lib
RapidQ
Reginald
Upload
Chrononet
回顶部
⇑
Forum List
•
Thread List
•
Reply
•
Refresh
•
New Topic
•
Search
•
Previous
•
Next
1
1.
QLabel Quirk
#6282
Posted by:
2005-06-26 19:14:16
If your QLabel is displaying oddly...
it "might" be because of this...
the "AutoSize" property
HAS TO BE BEFORE
the "Caption" property
in your coding.
Example:
' --Wrongly coded code START
Dim DlgLbl1 as QLabel
DlgLbl1.Parent = DlgForm
DlgLbl1.Top = 8
DlgLbl1.Left = 20
DlgLbl1.Width = 200
DlgLbl1.Height = 16
DlgLbl1.Color = &HC0C0C0
DlgLbl1.Caption = "File has been Modified !"
DlgLbl1.AutoSize = False
DlgLbl1.Font.Name = "Verdana"
DlgLbl1.Font.Color = -2147483640
DlgLbl1.Font.Size = 10
DlgLbl1.Font.AddStyles(fsBold)
DlgLbl1.Alignment = taCenter
' --Wrongly coded code END
' --Correctly coded code START
Dim DlgLbl1 as QLabel
DlgLbl1.Parent = DlgForm
DlgLbl1.Top = 8
DlgLbl1.Left = 20
DlgLbl1.Width = 200
DlgLbl1.Height = 16
DlgLbl1.Color = &HC0C0C0
DlgLbl1.AutoSize = False
DlgLbl1.Caption = "File has been Modified !"
DlgLbl1.Font.Name = "Verdana"
DlgLbl1.Font.Color = -2147483640
DlgLbl1.Font.Size = 10
DlgLbl1.Font.AddStyles(fsBold)
DlgLbl1.Alignment = taCenter
' --Correctly coded code END
signed, Dave
Forum List
•
Thread List
•
Reply
•
Refresh
•
New Topic
•
Search
•
Previous
•
Next
1
掌柜推荐
¥288.00
双福N1H-3C-70齿轮转速传感器M16*1.5长70发电机测速免磁铁全螺纹
¥271.00
N1H-5A-35转速传感器速度探头霍尔齿轮测速M18*1.5超短双福
¥288.00
双福N1H-6C-70齿轮转速传感器发电机测速免磁铁全螺纹M14*1长70
¥738.00
双福D2H-1D-29双向齿轮转速传感器正反转6线差分推挽输出厂家直销
¥1,170.00
SRE-AD2H-AC智能速度继电器20mA转速电流变送器显示转速监控模块
¥289.00
双福N1H-7A-55 100齿轮转速传感器速度探头M18*1可测零速高速
©
Sun 2026-6-21
Guidance Laboratory Inc.
Email:
webmaster1
g.yi
.
org
Hits:
0