摘要:
@echo off rem *************** start of 'main' set DEBUG=0 if "%DEBUG%"=="1" (set TRACE=echo) else (set TRACE=rem) rem Note that right now there is a bug in tracerpt.exe cause of which you might... 阅读全文
摘要:
Sub fileCreate2() Dim folderPath, fileName, s As String Dim fs, fo, fc, f As Object folderPath = "C:\Users\ofu1\Desktop\ログ" Open folderPath & "\" & "t 阅读全文
摘要:
' 'フォルダーのオールエクセルファイルを取得して、'ファイル名を変更し、シート名を変更する' Sub getExcelFile() Application.ScreenUpdating = False Dim sFolderPath As StringDim f As StringDim file 阅读全文
摘要:
Sub ShowFileList() Dim fs, f, f1, fc, s Dim folderspec As String folderspec = "C:\Users\ofu1\Desktop\A帳票設計書修正\設計書_SRA16_BK" Set fs = CreateObject("Scr 阅读全文
摘要:
Sub test() Dim sheet_count As Integer Dim sheet_name, new_sheet_name, old_str, new_str As String sheet_count = ThisWorkbook.Sheets.Count old_str = "A1 阅读全文
摘要:
Java反射在平常开发中虽然基本上用不着,但是在框架中,基本上都是通过反射来实现,比如说:Sping中来实现IOC。 通过反射,我们可以在运行时获得一个类的所有属性和方法,通过任意一个对象,可以调用它的任意属性和方法。 在Java反射中,一切都起源于Class类。此类的定义如下: public fi 阅读全文