2017-09-01から1ヶ月間の記事一覧
@charset "utf-8"; /* Name: 1490680842 Accessibility layout Copyright 2012 Opera Software */ /* text-align: left !important; text-transform: none !important; text-decoration: none !important; color: white !important; background: black !impo…
sqlcmd -S サーバー名 -U ユーザー名 -P パスワード -d データベース名 -Y20 -y 12 :help :out stdout :out hoge.txt set showplan_all on rollback go BEGIN TRANSACTION go select object_id, name from sys.synonyms order by name select object_id, nam…
開く(FileOpenUsingBackstage) 上書き保存(FileSave)(CustomControl) 印刷プレビュー(全画面表示)(PrintPreviewFullScreen) ページ設定(PageSetupPageDialog) ページ設定(GroupPageSetup)(CustomControl) 元に戻す(Undo) やり直し(Redo) 形式を選択して貼り…
[C#] 何故 enum に拘りたくなるのか? | Moonmile Solutions Blog http://www.moonmile.net/blog/archives/3666c# - Extension Methods for IEnumerable? - Stack Overflow http://stackoverflow.com/questions/5162389/extension-methods-for-ienumerableen…
タスクバーのエクスプローラのアイコンに任意のフォルダをドラッグ&ドロップする。タスクバーにピン留めされているエクスプローラーの新しいインスタンスを開始する際に指定したフォルダ、ファイル、またはアプリケーションを選択状態にするには ・タスク …
Office Professional Plus 2013の場合、アドインが Excel に組み込まれています。【前準備】(リボンにINQUIREタブがない場合はアドインを追加する) ・適当にExcelを開く ・[ファイル]-[オプション]-[アドイン]-[管理(A):]で「COM アドイン」を選択して[設定(…
WebMatrix (IIS Express)で公開サーバー - クリエイティブWeb https://creativeweb.jp/personal-site/webmatrixIIS Express で localhost 以外からアクセスする方法 - アーキテクチャをスマートに。 http://architect-wat.hatenablog.jp/entry/20130513/1368…
メニューの[編集]-[環境設定]で「環境設定」ダイアログを開きます。 [ページ表示]を選択して[解像度]を変更します。
モデル: Models\Hoge.cs public class Hoge { public virtual ICollection<Fuga> FugaCollection { get; set; } } モデル: Models\Fuga.cs public class Fuga { public string FugaFuga { get; set; } } コントローラー: Controllers\HogeController.cs [HttpPost]</fuga>…
ignoreの既定値が":hidden"なので適当なセレクタを設定する。 例) @section Scripts { @Scripts.Render("~/bundles/jqueryval") <script type="text/javascript"> $.validator.setDefaults({ ignore: "" }); </script> } .validate() | jQuery Validation Plugin https://jqueryvalidation.org/valid…
var form = $(formSelector) .removeData("validator") /* added by the raw jquery.validate plugin */ .removeData("unobtrusiveValidation"); /* added by the jquery unobtrusive plugin */ $.validator.unobtrusive.parse(form); こーゆーの見かけるが…
c# - How to convert from System.Enum to base integer? - Stack Overflow http://stackoverflow.com/questions/908543/how-to-convert-from-system-enum-to-base-integer Imports System.Runtime.CompilerServices ''' <summary> ''' Enum関連の処理を提供します。 </summary>…
Winforms Checkbox Focus Problem if no Text is Applied on Checkbox - Stack Overflow http://stackoverflow.com/questions/2019675/winforms-checkbox-focus-problem-if-no-text-is-applied-on-checkboxAutoSize : False CheckAlign : MiddleCenter Font:…
c# - TabControl.DrawItem not firing on user painted TabControl - Stack Overflow http://stackoverflow.com/questions/3115321/tabcontrol-drawitem-not-firing-on-user-painted-tabcontrol DrawItemイベントが起きないタイミングで描画しなおすにはInva…
TabControl クラス (System.Windows.Forms) https://msdn.microsoft.com/ja-jp/library/system.windows.forms.tabcontrol(v=vs.100).aspxTabPageに含まれるコントロールは、タブ ページが表示されるまで作成されません。また、これらのコントロール内のいず…
ToolStripProfessionalRendererを継承して好きなように描画する。 下記の例は ・ToolStripButtonに枠線を描画する ・ToolStripの角丸をやめる の二点を行う例。 ToolStrip1.Renderer = New ToolStripRectRenderer() ''' <summary> ''' ToolStrip オブジェクトの描画機</summary>…
Change folder view template for all folders in Windows 10 - Winaero http://winaero.com/blog/change-folder-view-template-for-all-folders-in-windows-10/私の環境(Win10 Pro 1607)ではちょくちょく元に戻るので効いているのかどうか 分かりませんが、…
DisplayNameAttributeでDataGridViewColumn.HeaderTextが指定できる。 BrowsableAttributeにfalseを指定で、自動生成から除外できる。 c# - Is there an Attribute I can use in my class to tell DataGridView not to create a column for it when bound to…
@echo off cd C:\hoge start "" "fuga.xlsx" start "" "piyo.xlsx" 普通はコマンド拡張機能が有効なので、ファイルの関連付けを使って開くことができる。startコマンドを使うのは、そうしないと閉じるまで次のファイルを開けないため。 startコマンドの最初…
DataGridView1.Controls[0].Enabled = true; // Index zero is the horizontal scrollbar DataGridView1.Controls[1].Enabled = true; // Index one is the vertical scrollbar DataGridView Vertical Scroll is disabled. https://social.msdn.microsoft.co…
Vista以降.NetのフォームのLabelをダブルクリックすると、そのTextの内容がクリップボードにコピーされる。winforms - Is there any way to disable the "double-click to copy" functionality of a .NET label? - Stack Overflow https://stackoverflow.com…