⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 unitb.pas

📁 一个背单词程序。是我闲着没事做的。 给大家看看
💻 PAS
字号:
unit UnitB;

interface

uses
  Windows, Messages, SysUtils, Variants, Classes, Graphics, Controls, Forms,
  Dialogs, StdCtrls, ComCtrls;

type
  TFrmBDC = class(TForm)
    Edit2: TEdit;
    Button1: TButton;
    Button2: TButton;
    Button3: TButton;
    Label1: TLabel;
    StatusBar1: TStatusBar;
  private
    { Private declarations }
  public
    { Public declarations }
  end;

var
  FrmBDC: TFrmBDC;

implementation

uses UnitMain;

{$R *.dfm}

function db():Boolean ;
var
StrYB,StrWord,StrComm:String;
rsindex,RSCount:integer;
begin
 { if RSIndex>=RSCount then RSIndex:=0;
  if (RSIndex<0) and (RSCount>0) then RSIndex := RSCount-1;
  RSCount := WordRs.Count ;
  StrWord := WordRS.Strings[RSIndex];
  StrYB := YbRS.Strings[RSIndex];
  StrComm := commrs.Strings[rsindex];}
end;

end.

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -