Waitrud Weber’s blog

things and reminders for memories

2018-04-01から1ヶ月間の記事一覧

Xaml 000

You can not use location tag in xaml.Use Margin for location. https://stackoverflow.com/questions/5947559/c-sharp-wpf-how-to-set-location-width-and-height-of-the-controls-programatically Margin parameters means "left, top, right, bottom" b…

企画書 000

例えば、あなたの会社をイメージしましょう。社内の管理毎をソフトウェアで管理するというよくある社内管理ソフトです。 例えば、税計算などの法改正に対応するには、法に対する計算式の登録が必要です。これによって、税法が変わっても、社員の給与明細は上…

WindowsAPI

以下のサイトを使って、とりあえず、WindowsAPIでウィンドウ一枚作成しました。ウィンドウ一枚あれば、アプリケーションの拡張がかなり期待できるので、以下のサイトはとても重宝しました。 https://blog.goo.ne.jp/masaki_goo_2006/e/d9a32b7fe29cf390597e4…

Code Analyzer 006

Analyzer can stop to take out class name before space but find character '{'.And I prepared parser for analization of inside class. Created: parse_inside_class --- > mingw32-make allgcc -Wall -O3 -o analyzer.o -c analyzer.cppgcc array_coun…

Code Analyzer 005

20180423Analyzer does not recognize except alphabet looking for libraries, so I put a limitation the below surely in the parse_libraries. the parse_libraries: // 20180423 if ( alphabet ( dummy[0] ) == 1 ) { printf( "parse_libraries %s %d A…

Code Analyzer 004

20180422I'm going to analyze Java, so, I prepared Java struct which is declared in java_struct.h;I suppose that I use the function put_package if analyzer found package. > mingw32-make allgcc -Wall -O3 -o analyzer.o -c analyzer.cppgcc arra…

Code Analyzer 003

20180421 2ndIn 20180421 1st I could point the problem and am trying to solve it now. I added the codes(20180421) before analyzer call the put_token. int parse_libraries ( FILE *fp, int file_end ) { char dummy[1]; for( int i=0; i

Code Analyzer 002

> .\analyzer.exe .\HomePDFPrinter.javam_mode: 0 token[0] is line end. filename .\HomePDFPrinter.java: line 20 raw 1 Analyzer stopped the process in that situation but we do not know where the place of source code comes from,Just I know tha…

Code analyzer

I'd like to analyze Open source which is usually complex. So, I tried to create code analyzer. Token analyzer below means "Token analyzer in Code analyzer." devlopment:20180420Token analyzer has a problem now.The problem which is that the …