1樓:
wordwrap差不多這個屬性
你檢視下
vfp裡面 label 的caption 字太多怎麼換行呢?
2樓:
wordwrap屬性設定為.t.
另外label要足夠高,否則多行也顯示不出來。
你設定wordwrap屬性無用,估計是沒有將label的height屬性調大,請根據需要調大測試。
正常情況下按上述設定即可多行顯示內容。
也可以程式設計控制換行,只需在換行處加chr(13)即可。
3樓:匿名使用者
**中這麼寫: "字元" + chr(13) + 「字元」
textview控制項怎麼換行
4樓:冷楓娛樂
textview如果想要強制換行的話,必須先把textview顯示方式修改為多行(android:singleline="false"),然後才能換行。
方法一般用兩種:
1、在字串裡加入「\n」,如"abc\nrc";
2、把textview設定為固定寬度,然後讓系統自動換行。如android:layout_width="100dp"
5樓:匿名使用者
wordwrap 選true
vfp 把在資料庫的資料顯示在label中 20
6樓:匿名使用者
你用c#編碼的話,應該用的是vs,.net開發。在.
net中,label是有伺服器控制項上面部分是連線資料庫部分。 在.cs中 new乙個物件。
如: mydb mb = new
7樓:
select count(*) as num from table1 這樣num相當於乙個虛擬的列值 你就可以賦值宣告的變數了。
8樓:
thisform.label.caption = select count(*) from table1
vfp動態表單 標籤從左向右移動 求**
9樓:匿名使用者
在表單中新增乙個timer1控制項,假如標籤物件是label11\在表單init事件中輸入下列**:
publ n
n=1w=thisform.width &&寬度2\在timer1控制項的interval屬性值設定為200(0.2秒)
3\timer事件中**:
thisform.label1.left=nn=n+1
if n>w
n=0endif
這樣就行了
10樓:和平海
給你乙個從左向右的跑馬燈:
表單的init事件:
public labelleft
labelleft=-thisform.label1.widththisform.label1.left=labelleft &&表單啟動標籤處於最左邊
在表單中新增乙個timer控制項,對標籤label1從左向右移動:
在timer控制項的timer**中輸入以下**:
thisform.label1.left=labelleftlabelleft=labelleft+1if labelleft>thisform.
widthlabelleft=-thisform.label1.width &&移出表單重新返回最左邊
endif
timer控制項的interval屬控制移動速度,值越小移動越快。
11樓:卻彤雲
首先新增乙個時鐘控制項(timer)到表單中,然後將timer控制項的interval屬性改為200(單位毫秒,1000就表示1秒重新整理一次),最後雙擊timer控制項,在timer事件中輸入如下**:
if thisform.label1.left+thisform.label1.width>=0
thisform.label1.left=thisform.label1.left-5
else
thisform.label1.left=thisform.width
endif
求vfp表單設計裡 時間控制項裡的**,設計的內容是滾動的字幕,左右來回滾動的文字
12樓:匿名使用者
新建表單檔案。在表單上新增控制項。
1) 設定物件屬性
form1表單name屬性:formtestform1表單caption屬性:考試系統form1表單backcolor屬性:
192,192,192label1控制項fontname屬性:楷體label1控制項fontsize屬性:24label1控制項caption屬性:
歡迎使用考試系統label1控制項backcolor屬性:192,192,192label1控制項forecolor屬性:255,128,0label1控制項autosize屬性:.
t.timer1控制項interval屬性:200command1控制項caption屬性:關閉2) 編寫事件**
timer1控制項的timer事件:
if thisform.label1.left <-thisform.label1.width
thisform.label1.left =thisform.width
else
thisform.label1.left = thisform.label1.left-10
endif
command1控制項的click事件:
thisform.release
3) 儲存表單到formtest.scx檔案,執行表單測試。
vfp中,如何製作左右來回滾動的字幕 30
13樓:天涯書生
timer**如下:(向左走)
if thisform.label2.left<0-thisform.label2.width
thisform.label2.left=thisform.label2.width+2
thisform.label2.left=thisform.label2.left+600
else
thisform.label2.left=thisform.label2.left-1
endif
timer
向右的應用如下修改
if thisform.label2.left>500
thisform.label2.left=thisform.label2.left-600
else
thisform.label2.left=thisform.label2.left+1
endif
vfp中如何用時鐘控制項實現標籤的移動?
14樓:匿名使用者
在時鐘控制項的timer事件中輸入以下**
**向左走
thisform.label1.left=thisform.label1.left-10
if thisform.label1.left+thisform.label1.width<0
thisform.label1.left=thisform.width
endif
**向右走
thisform.label2.left=thisform.label2.left+10
if thisform.label2.left>thisform.width
thisform.label2.left=-thisform.label2.width
endif
**向上走
thisform.label3.top=thisform.label3.top-10
if thisform.label3.top+thisform.label3.height<0
thisform.label3.top=thisform.height
endif
**向下走
thisform.label4.top=thisform.label4.top+10
if thisform.label4.top>thisform.height
thisform.label4.top=thisform.label4.height
endif
vfp習題中怎麼把label控制元件的標籤內容設定為時間
public fm fm createobject theform fm.show define class theform as formtop 100 left 100 width 300 height 160 caption theform add object label1 as lbadd...
關於vfp裡的問題,關於vfp裡的一個問題
1在vfp中可用命令語句local,private和public指定變數的作用域,其指定的變數分別為區域性變數,私有變數和全域性變數 用local 變數名 命令可建立區域性變數,其建立的變數或陣列只能在定義它們的程式中存在,不能被更高層和更低層的程式訪問.當定義它們的程式停止執行時,這些變數和陣列將...
LOL的符文頁裡,符文左側欄裡有的符文,卻沒有,這是怎麼一回事
不是這樣的,因為你在第二頁的符文頁裡已經帶上了,但你在第一頁的符文頁沒帶,不信你可以把兩個符文頁都清空試試看 望採納啊 小小豬腳 這是正常的。跟天賦點乙個概念,新建一頁還是那麼多天賦點 兩張左側符文不同是因為你鑲嵌的符文不同,所以剩下的不同。符文頁是兩頁,但是符文是一起共享的,怎麼弄總數都是一樣的。...