2020-02-01から1ヶ月間の記事一覧
代替の関数がある Function IIf(Expression, TruePart, FalsePart) ネタ元 https://vbabeginner.net/vba%E3%81%AE%E4%B8%89%E9%A0%85%E6%BC%94%E7%AE%97%E5%AD%90%EF%BC%88iif%E9%96%A2%E6%95%B0%EF%BC%89/
Excelの全角->半角変換関数であるASC()はVBAだと指定した文字の文字コード (Shift_JIS) を返す関数なので注意。 StrConv(文字列,vbNarrow); ネタ元 http://officetanaka.net/excel/vba/function/StrConv.htm
string jsonteststring = "[{{\"code\":\"8411\",\"num\":10}}]"; var settings = new JsonSerializerSettings { NullValueHandling = NullValueHandling.Ignore, MissingMemberHandling = MissingMemberHandling.Ignore }; var oTest = JsonConvert.Deseria…
管理画面付きの美しいウェブサイトはWebflowで。 ECサイトはShopifyで。 ショップ用のFacebookメッセンジャーBOTはOctane AIで。 ウェブアプリケーションはBubbleで。 モバイルアプリはThunkableで。 ボイスアプリはVoiceflowで。 複雑なwebシステムはZapier…
map.というサブドメイン追加例
MacならiMovieですがWindowsなら「DaVinci Resolve」のようです。とりあえず無料ソフトで動画編集始めたいって人向けのソフトは昔はAviUtlだったんだけど、今はDaVinci Resolve一択だと思いますhttps://t.co/nOHepw1OPV無料版でも機能はめちゃくちゃすごくて…
urlencode() / urldecode()確認するツールはこちら https://tech-unlimited.com/urlencode.html ネタ元 https://qiita.com/ma_me/items/c3c19933770ddc5880ec https://www.php.net/manual/ja/function.urldecode.php
'// カンマ区切り文字列に変換 s = Format(n, "#,###,###") ネタ元 https://vbabeginner.net/vba%E3%81%A7%E6%95%B0%E5%80%A4%E3%82%92%E6%96%87%E5%AD%97%E5%88%97%E3%81%AB%E5%A4%89%E6%8F%9B%E3%81%99%E3%82%8B/
Val()だとカンマがあると思ったような変換にならない。 CDbl()ならOK。 ネタ元 http://hensa40.cutegirl.jp/archives/3300
Dim ans As String str = InputBox(表示文字列, タイトル文字列, デフォルト値) ネタ元 https://www.officepro.jp/excelvba/dialog/index5.html
プロパティのStyleをfmStyleDropDownListにする ネタ元 https://www.officepro.jp/excelvbaform/form_combo/index4.html
'確認メッセージを表示させない Application.DisplayAlerts = False '保存 ActiveWorkbook.Save 'Excelを終了する Application.Quit ネタ元 https://excel-excel.com/tips/vba_185.html
フォームのエディタで メニュー>表示からタブオーダー選ぶだけ ネタ元 https://vba-beginner.com/vba1-8-3774/
With Application.FileDialog(msoFileDialogFolderPicker) .InitialFileName = "c:\" '初期フォルダ If .Show = True Then MsgBox = .SelectedItems(1) End If End With ネタ元 http://officetanaka.net/excel/vba/tips/tips39.htm http://www.excel.studio-…
ヘッダで以下を定義 #ifdef OutputDebugString #undef OutputDebugString #endif #ifdef UNICODE #define OutputDebugString OutputDebugStringFW #define OutputDebugStringV OutputDebugStringFVW #else #define OutputDebugString OutputDebugStringFA #d…
Environment.TickCount ネタ元 https://docs.microsoft.com/ja-jp/dotnet/api/system.environment.tickcount?view=netframework-4.8
/wp-content/themes/テーマのフォルダ に名前は自由にphpファイルをつくって その中身は先頭に を記述しておく。 あとは自由。 <head>だけ特別なページを作りたい場合は、 page.phpをコピーして↑のようにテンプレートとして作成。 続いてheader.phpをコピーしてhea</head>…
ローカルにしたけりゃmy使え。 ネタ元 http://chaichan.lolipop.jp/perlnote/perlnote2007-05-302.htm
これいれないでprintするとエラーになるよ print "Content-type: text/html\n\n\n"; ネタ元 http://www.tohoho-web.com/wwwcgi7.htm
stinrg text = "open"; text = System.Globalization.CultureInfo.CurrentCulture.TextInfo.ToTitleCase(text); ネタ元 http://baba-s.hatenablog.com/entry/2014/05/29/213246