Popular Posts
Export list schema from sharepoint http:// YOUR_SERVER_URL / PATH_TO_SITE_CONTAINING_LIST /_vti_bin/owssvr.dll?Cmd=ExportList&List= {YOUR_LIST_GUID} JSRequest, Get parameters from querystring with javascript in SharePoint Provides method to parse query string, filename, and pathname from URL // Initialize first JSRequest.EnsureSetup(); // Get the current fil... ROBOCOPY: Robust File Copy for Windows -------------------------------------------------------------------------------    ROBOCOPY     ::     Robust File Copy for Windows --------...
Stats
write
語法:
write at [/][<pos>][(<len>)] output
用法:
write 'Bruce'.                    " 輸出常數
Bruce
data CNAME(10) value 'James'.
write: / CNAME, 'is busy.'.       " 輸出變數, 多個值
James      is busy.
data NUM(10) value '0123456789'.
write / NUM.                      " 輸出變數
write /5 NUM.                     " 在位置5的地方輸出變數
write /(5) NUM.                   " 輸出5字元變數
write /5(5) NUM.                  " 在位置5的地方輸出5字元變數
0123456789  
     0123456789  
01234
     01234
View mobile version