Vegas原創 TextBox換行

2021-09-08 21:01:57 字數 1850 閱讀 3142

看見網上好多人說textbox換行後,資料庫或是label顯示不出來,我今天給大家介紹乙個小小的秘訣吧~

strsubject 

=txttitle.text.trim().replace(system.environment.newline,""

); 試一下~~~

附:system.environment成員和方法:

1.獲取作業系統版本(pc,pda均支援)

environment.osversion

2.獲取應用程式當前目錄(pc支援)

environment.currentdirectory

3.列舉本地硬碟驅動器(pc支援)

string strdrives=environment.getlogicaldrives();

foreach(string strdrive in strdrives)

4.獲取.net framework版本號(pc,pda均支援)

environment.version

5.獲取機器名(pc支援)

environment.machinename

6.獲取當前環境換行符(pc支援)

environment.newline

7.獲取處理器個數(pc支援)

environment.systemdirectory

8.獲取當前登入使用者(pc支援)

environment.username

9.獲取系統保留資料夾路徑(pc,pda均支援)

environment.getfolderpath(environment.specialfolder物件)

environment.specialfolder物件提供系統保留資料夾標識,例如:environment.specialfolder.desktop表示桌面資料夾的路徑

10.獲取命令列引數(pc支援)

string strparams=environment.getcommandlineargs();

foreach(string strparam in strparams)

11.獲取系統環境變數(pc支援)

system.collections.idictionary dict=environment.getenvironmentvariables();

string str=dict["path"].tostring();

12.設定環境變數(pc支援)

environment.setenvironmentvariable("path", "test");

13.獲取網域名稱(pc支援)

string struser = environment.userdomainname;

14.獲取截至到當前時間,作業系統啟動的毫秒數(pda,pc均支援)

str = environment.tickcount.tostring();

15.對映到當前程序的物理記憶體數

str = environment.workingset.tostring();

16.退出應用程式

environment.exit(0)

這個跟vb.net中的my命名空間很相似。

Vegas原創 sendkeys例項

需求 將excel檔更新提醒關閉,並另存為a xls.dimwshset wsh wscript.createobject wscript.shell wsh.run 每日生產狀況表.xls wscript.sleep 1000 wsh.sendkeys wscript.sleep 100wsh.s...

Vegas原創 sendkeys例項

需求 將excel檔更新提醒關閉,並另存為a xls.dimwsh setwsh wscript.createobject wscript.shell wsh.run 每日生產狀況表.xls wscript.sleep 1000 wsh.sendkeys wscript.sleep 100wsh.s...

Vegas原創 LogMiner使用實踐

安裝logminer 1,建立dbms logmnr包 sql oracle home rdbms admin dbmslm.sql sql oracle home rdbms admin dbmslmd.sql 3,初始化引數utl file dir,指定分析資料的存放處,本例 e logmine...