Delphi の Discord Server を作成しました。
雑談・質問や情報交換の場としてご利用ください。
以下の URL から参加できます。
注意ですが、Discord は 「必要な時だけ参加して、不要になったらサーバから脱退する」という使い方をする場所ではありません。
不要な時は、サーバから脱退せず、Discord にアクセスしないだけで大丈夫です。
program QuickSortSample; | |
procedure QuickSort(var ioInt: array of Integer); | |
procedure QuickSortBody(iLo, iHi: Integer); | |
var | |
Min, Max, Mid: Integer; | |
tmpInt: Integer; | |
begin | |
repeat |
(* | |
* Fix: | |
* Deal with a problem that ComboBox can not be operated when Scale is | |
* greater than 100% | |
* | |
* USAGE: | |
* Just add PK.Fix.Scale.ComboBox to the uses section. | |
* | |
* LICENSE: | |
* Copyright (c) 2018 HOSOKAWA Jun |
Delphi の Discord Server を作成しました。
雑談・質問や情報交換の場としてご利用ください。
以下の URL から参加できます。
注意ですが、Discord は 「必要な時だけ参加して、不要になったらサーバから脱退する」という使い方をする場所ではありません。
不要な時は、サーバから脱退せず、Discord にアクセスしないだけで大丈夫です。
program BinUtils; | |
{$APPTYPE CONSOLE} | |
{$R *.res} | |
uses | |
System.SysUtils, System.Classes; | |
function FromBinary(const AValue: String): Integer; |
// Toggle Color Label | |
// | |
// ABOUT | |
// Change color label. | |
// None → Red → Orange → Yellow → Green | |
// → Blue → Violet → Gray → None | |
// | |
// LICENSE | |
// Copyright (c) 2021 twitter:@pik | |
// Released under the MIT license |