dim rules as nlog.config.loggingrulecollection = nlog.logmanager.configuration.loggingrules
for each rule as nlog.config.loggingrule in rules
if rule.namematches("debuglogger") then
dim a as nlog.targets.filetarget
a = rule.targets(0)
a.filename = "a.txt"
'rule.disableloggingforlevel(nlog.loglevel.debug)
'rule.enableloggingforlevel(nlog.loglevel.off)
'rule.enableloggingforlevel(nlog.loglevel.debug)
end if
next
nlog.logmanager.reconfigexistingloggers()
在執行時改變控制項的大小
游標在控制項不同位置時的樣式 由於拐角這點手動精確實在困難 所以用範圍 範圍 3 這樣很容易就找到這一點了 procedure ctrlmousemove ctrl twincontrol shift tshiftstate x,y integer begin with ctrl do begin ...
函式在執行中變數的查詢
函式本身也是乙個值,也有自己的作用域。它的作用域與變數一樣,就是其宣告時所在的作用域,與其執行時所在的作用域無關。var num 1 var x function var y function f y x 1y執行時,首先看了下自己有沒有引數,有個引數f,接著把x的值賦值給了f,接著宣告了變數var...
ubuntu 中如何檢視正在執行的程序以及結束程序
常用的有關程序檢視的命令 1,ps aux 檢視某個使用者執行的程序 ps u username grep eclipse 檢視使用者名為 username 的使用者是否執行了eclipse 結束正在執行的eclipse kill 為eclipse的pid 號 2,檢視執行中系統的動態實時檢視 to...