Salesforce LEN関数の使い方のサンプル
環境
Salesforce
使用方法
LEN(text)。text に、返される長さを持つ項目または式を指定します。
使用例
LEN(PartNumber__c)
この数式で、 ...
Salesforce LEFT関数の使い方のサンプル
環境
Salesforce
使用方法
LEFT(text, num_chars)
text に、返す項目または式を指定します。num_chars に、返す文字列の先頭からの文字数を指定します。 ...
Dart 配列(リスト)のforEachメソッドを使うサンプル
環境
Windows 11 pro 64bit
Dart 2.18.4
構文
list.forEach((item) {
//ループ処理コード
});
forEachメソッド ...
Flutter AppBarにサイドメニューを追加するサンプル
環境
Windows11 pro 64bit
Flutter 3.3.7
概要
AppBarにサイドメニューを追加するには、Drawerを使います。
AlmaLinux9 .NET 6.0 をインストールする方法
環境
AlmaLinux release 9.2 (Turquoise Kodkod)
操作方法
1. .NET 6.0 のインストールを行います
Flutter DrawerHeaderの背景画像を設定するサンプル
環境
Windows11 pro 64bit
Flutter 3.3.7
概要
DrawerHeader(
decoration: BoxDecoration(
image: Dec ...
Flutter Builderを使ってAppBarのアイコンからDrawerを開く方法
環境
Windows11 pro 64bit
Flutter 3.3.7
構文
builder: (context) => IconButton(
icon: Icon(Icons.s ...
Flutter ScaffoldKeyのopenDrawerメソッドを使ってDrawerを開く方法
環境
Windows11 pro 64bit
Flutter 3.3.7
構文
final GlobalKey<ScaffoldState> _scaffoldKey = GlobalK ...
Flutter Drawerをタップで閉じるサンプル
環境
Windows11 pro 64bit
Flutter 3.3.7
概要
Drawerをタップで閉じるには、Navigator.pop(context)を使います。
構文
Flutter AlertDialogのボタンを中央に寄せるサンプル
環境
Windows11 pro 64bit
Flutter 3.3.7
構文
AlertDialogのボタンを中央に寄せるには、「actions」を使わず、
「Rowウェジェット」を使いま ...
EXCEL2019 ショートカットキーで下線を引く方法
環境
EXCEL2019
Windows 11Pro 64bit
操作方法
1.「Ctrl」+「U」または「Ctrl」+「4」を押下します。
2.斜下線を開きます。
3.Ex ...
Dart Future.delayedを使って遅延実行をする方法
環境
Windows 11 pro 64bit
Dart 2.18.4
構文
await Future.delayed(Duration(xxx));
Future.delayed関数をaw ...
Dart sleep関数で遅延実行をする方法
環境
Windows 11 pro 64bit
Dart 2.18.4
構文
sleep(Duration(xxx))//Durationで時間を指定
引数に時間を指定したsleep関数を呼 ...
Salesforce CASE関数の使い方のサンプル
環境
Salesforce
使用方法
CASE(expression,value1, result1, value2, result2,…, else_result)。
expre ...
kotlin インクリメントを使用するサンプル
環境
Windows11 pro 64bit
java 19.0.1
kotlin 1.7.20-release-201
構文
変数++
「++(インクリメント)」を使用すると「1」 ...
Dart Map(マップ)をコピーするサンプル
環境
Windows 11 pro 64bit
Dart 2.18.4
構文
var copy = {…map}
コピー先の変数に「{…map}」(mapはコピー元)を代入します ...
PHP 連想配列(Array)の最大値からキーを取得するサンプル
環境
PHP 8.1.2
Ubuntu 22.04.1 LTS
構文
//array=連想配列
$max_key = array_search(max($array), $array); ...
PHP 文字列(string)の最後の文字を削除するサンプル
環境
PHP 8.1.2
Ubuntu 22.04.1 LTS
構文
//textの最後の文字を削除
$result = substr_replace($text, “̶ ...