代码搜索:FastScript
找到约 496 项符合「FastScript」的源代码
代码结果 496
www.eeworm.com/read/108103/6186035
vb localvar.vb
' FastScript v1.0
' Local variables demo
dim i
sub OK(i)
ShowMessage(i)
i = 11
end sub
i = 10
if i = 10 then OK(1)
OK(i)
www.eeworm.com/read/108103/6186050
pas for1.pas
{**************************}
{ FastScript v1.0 }
{ 'For' operator demo 1 }
{**************************}
var
i, j: Integer;
begin
j := 1;
for i := 9 downto 0 do
Inc(j
www.eeworm.com/read/108103/6186056
pas array.pas
{**************************}
{ FastScript v1.0 }
{ Arrays demo }
{**************************}
var
i, j: Integer;
ar: array[0..9] of String;
s: String;
begin
www.eeworm.com/read/209373/15221816
txt install.txt
TABLE OF CONTENTS
I. Introduction
II. Manual installing of the FastReport packages
III. Recompiling FastReport Basic Edition and Standard Edition packages
IV. Recompiling FastReport
www.eeworm.com/read/108103/6185989
cpp case.cpp
/****************************/
/* FastScript v1.0 */
/* 'Case' operator demo */
/****************************/
int i, j;
{
i = 0;
switch (i)
{
case 1: j = 1;
www.eeworm.com/read/108103/6185991
cpp localvar.cpp
/****************************/
/* FastScript v1.0 */
/* Local variables demo */
/****************************/
int i;
void OK(int i)
{
ShowMessage(i);
i = 11;
}
{
i
www.eeworm.com/read/108103/6185992
cpp defparams.cpp
/****************************/
/* FastScript v1.0 */
/* Default params demo */
/****************************/
void OK(int i = 1, j = 1)
{
ShowMessage(IntToStr(i) + " " + IntToS
www.eeworm.com/read/108103/6185994
cpp forms1.cpp
/**************************}
{ FastScript v1.0 }
{ Forms demo 1 }
{**************************/
// Form1 is predefined object
// - the main form of this application
{
www.eeworm.com/read/108103/6185999
cpp bmp.cpp
/**************************}
{ FastScript v1.0 }
{ Bitmap demo }
{**************************/
void MakePattern(TBitmap b)
{
for (int i = 0; i < b.Width; i++)
for
www.eeworm.com/read/108103/6186003
cpp file.cpp
/**************************}
{ FastScript v1.0 }
{ Files demo }
{**************************/
{
TFileStream fs = new TFileStream("test.txt", fmCreate);
String s = "