2016-12-01から1ヶ月間の記事一覧
'列番号を文字に変換するユーザー定義関数 Function ColNum2Txt(lngColNum As Long) As String On Error GoTo ErrHandler Dim strAddr As String strAddr = Cells(1, lngColNum).address(False, False) ColNum2Txt = Left(strAddr, Len(strAddr) - 1) Exit F…
'htmlspe', 'show' => 'quickref', ); $options = array('http' => array( 'method' => 'POST', 'content' => http_build_query($data), )); $contents = file_get_contents($url, false, stream_context_create($options)); ?>ネタ元 http://www.…
ネタ元 http://qiita.com/shuntaro_tamura/items/c0ef05cb4d4e22e78297
ピクチャ・イン・ピクチャ・クリップとして使いたいクリップまたは 範囲 を選択して、タイムライン 内のクリップの上にドラッグします。タイムラインで別のクリップの上にクリップをドラッグして接続しているところ 緑色の追加アイコン(+)が表示されたら…
$last = preg_replace('/[^0-9.]/', '', $last); // 数字と小数点部分だけ抽出ネタ元 http://nkawamura.hatenablog.com/entry/2013/06/15/143729
=COUNTIF(A1:A10,">0")/COUNT(A1:A10)ネタ元 http://detail.chiebukuro.yahoo.co.jp/qa/question_detail/q1034679975
#include <ctime> ... std::time_t rawtime; std::tm timeinfo; std::time(&rawtime); localtime_s(&timeinfo,&rawtime); long tmpYYYYMMDD = (1900+timeinfo.tm_year) * 10000 + (timeinfo.tm_mon+1) * 100 + timeinfo.tm_mday; ネタ元 http://stackoverflow.com/q</ctime>…
http://tonari-it.com/vba-ie-login/ http://www.vba-ie.net/library/ http://www.vba-ie.net/function/sleep.html
https://www.plus-server.net/faq/topic.php?go=topic&num=112
一番上に#!/bin/sh入れるの忘れないでね #!/bin/sh echo "Hello World!"ネタ元 http://motw.mods.jp/shellscript/tutorial.html
count()を使う <html> <head><title>PHP TEST</title></head> <body> '); print('再帰的に数えた場合、項目数は'.$cou…</body></html>
$str = "元になっている文字列"; $str = mb_convert_encoding($str, "SJIS", "UTF-8");ネタ元 http://www.phpbook.jp/func/string/index5.html