DataGrip 2020.1.3ダウンロード
バグ修復
DBE-10408: No more UI freezes when editing large SQL strings.
DBE-9272: Save LOB works for the results ...
Catalyst show storm-controlコマンドの使い方
環境
Cisco Catalyst
操作方法
1.ストーム制御の設定方法
Windows 10 から iPhone に CD の曲・音楽を取り込む方法
環境
Windows 10
iOS 16.2
操作方法
1.Windows10 PCにCDを挿入します。
2.iTunesを起動し、「読み込み」をクリックし、CDを読み込みます ...
SOFARPC 5.7.0ダウンロード
新機能
PR 886 – feat:compilerPR 881 – Feat/triple generator
PR 879 – Feat/reform code struct ...
Kdenlive 20.04 ダウンロード
更新内容
Effect groups are back!Rotoscoping: Allow editing rotoscoping points before closing the shape, Shift + do ...
LibrePCB 0.1.4ダウンロード
更新内容
Add “filter” toolbar to filter element lists (#673)Support moving elements to other library (#638)
Sho ...
Ionic 5.1.0ダウンロード
バグ修復
action-sheet: show correct cancel button background on dark mode (#21084) (e442324), closes #21082all: co ...
VLC 3.0.10 ダウンロード
更新内容
VLC 3.0.10 is the ninth update of “Vetinari”:
Multiple DVD fixes & improvements
Bett ...
MKVToolNix v46.0.0ダウンロード
更新内容
mkvmerge: when splitting, the placeholder %c can be used in thedestination file name. It’ll be replaced ...
CentOS8.3にオープンソースのERPソフトflectraをインストールする方法
操作方法
OSの確認
# cat/etc/redhat-release
CentOS Linux release 8.3.2011
# docker –version
Docker ...
CentOS 7.9に日本語環境にする方法
環境
# cat/etc/redhat-release
CentOS Linux release 7.9.2009 (Core)
操作方法
1.日本語関連のパッケージをインストールします
# ...
「JavaScript」asyncを使用するサンプル
書式
async function 関数名
使用例
「JSP」fn:substringで文字列の一部を取得する方法
書式
fn:substring(対象文字列,開始位置,終了位置);
使用例1
${ fn:substring(‘aasapbkarac’ , 2 , 5 ) }
結果
s ...
「VB.NET」構造体(Structure)のサンプル
書式
Structure 構造体 Public 変数名 As データ型End Structure使用例
Module Module1 '構造体Customerの定義 Structure Customer 'Stri ...NumPy 1.18.4 ダウンロード
更新内容
#16055 BLD: add i686 for 1.18 builds#16090 BUG: random: Generator.integers(2**32) always returned 0.
# ...
「VB.net入門」ContinueでFor Each文のサンプル
サンプルコード
Sub Main()Dim city() As String = {"tokyo", "oosaka", "yokohama","kawasaki"} For Each cft As String In city ...「Swift入門」pathExtensionでURLの文字列から拡張子を取得する
サンプルコード
let url= NSString(string: “
print(url.lastPathComponent)
print(url.pathExtension)
「VB.NET入門」正規表現式で数値をチェックするサンプル
VB.NETコード
If Regex.IsMatch(tA.Text, "^{0,9}$") Then cft.Text = tA.TextElse errMsg = "数字で入力してください"End If