text stringlengths 7 5.36M |
|---|
dim info$(10,10)
run "java -jar C:\snnap8_1\SNNAP8_1.jar"
nomainwin
WindowWidth=310
WindowHeight = 100
UpperLeftX = 10
UpperLeftY = 10
button #interface.normal, "Normal Saline ([Ion2+]=1.8)", [normal], UL, 10, 10
button #interface.high, "25 mM Divalent Cations ([Ion2+]=25)", [high], UL, 10, 40
open "C Cell Model Interf... |
1) 가장 상위 단계인 Application(엑셀 그 자체) 다루기
-------------------------------------------------------------------------
Sub 개체_Application()
MsgBox Application.Name & Application.Version
Range("a1:c5").Value = 100
MsgBox Application.WorksheetFunction.Sum(Range("a1:c5"))
'Application.WorksheetFun... |
' Lagrange.bas
' 16/07/2003
print "Lagrange Interpolation"
print "-----"
print "SmallBASIC Version for Palm OS"
print "Developed by: Marc Christian Saribay"
print "Date Created: July 16, 2003"
print "Last Update: July 16, 2003"
print "-----"
dim X(50), Y(50)
5 input "Enter the number of data points: ",N
if N<2 then
?... |
10 KEY OFF
20 CLS
30 CLEAR
40 DEFINT A-Z
50 SCREEN 1
60 P = 8000
70 DIM A(P)
80 PSET (1, 1)
90 GET (1, 1)-(318, 198), A()
100 XI = SGN(RND - 0.5)
110 YI = SGN(RND - 0.5)
120 PUT (1 + XI, 1 + YI), A()
130 GOTO 90
|
10 PRINT TAB(33);"TARGET"
20 PRINT TAB(15);"CREATIVE COMPUTING MORRISTOWN, NEW JERSEY"
30 PRINT: PRINT: PRINT
100 R=1: R1=57.296: P=3.14159
110 PRINT "YOU ARE THE WEAPONS OFFICER ON THE STARSHIP ENTERPRISE"
120 PRINT "AND THIS IS A TEST TO SEE HOW ACCURATE A SHOT YOU"
130 PRINT "ARE IN A THREE-DIMENSIONAL RANGE.... |
10 INPUT "MINIMUM";B
20 INPUT "MAXIMUM";A
30 IF B<=3 THEN GOTO 10
40 IF B/2=INT(B/2) THEN B=B+1
50 FOR I = B TO A STEP 2
60 T=INT(I/2)
70 FOR N=3 TO T STEP 2
80 IF INT(I/N)=I/N THEN 110
90 NEXT N
100 PRINT I,
110 NEXT I
120 PRINT : GOTO 10
130 END
|
'wie viele permutationen von EHIRSW gibt es ohne die buchstabenreihenfolgen
'WIR, IHR, SIE innerhalb, wenn man die anderen 3 streicht
DIM a(6) AS STRING * 1
DIM p(8) AS INTEGER
q$ = "EHIRSW"
FOR x = 1 TO 6
a(x) = MID$(q$, x, 1)
NEXT x
FOR a1 = 1 TO 6
FOR a2 = 1 TO 6
FOR a3 = 1 TO 6
FOR a4 = 1 TO 6
FOR a5... |
'=== Calc Group Types ===
CAW PT
CAW 4 & 4
CAW 5 & 2
CAW CASUAL
CAW FT OVER 80
CAW FT OVER 40
CAW 6 WK ROTATION
CAW FT TEMP
'----------------------------------------------- OverTime -----------------------------------
'Biweekly type
If strCalcGrp = "CAW FT OVER 80" Then
If (there is overtime for an employee) then
... |
0 REM ************************ 1 REM * - CCESOFT - * 2 REM *OTTO LONGO SERNATINGER* 3 REM * VERSAO 1.1 05/85 * 4 REM ************************ 5 REM * CALENDARIO * 6 REM ************************
2 HOME : PRINT : PRINT TAB( 11)"- CCESOFT -": PRINT : PRINT TAB( 13)"ATENCAO": PRINT : PRINT ... |
10 REM THIS IS A TEST PROGRAM
20 FOR I = 1 TO 10
30 PRINT "Hello, world!"
40 NEXT I
35 REM NEXT PHASE
99 END
|
Attribute VB_Name = "modFunciones"
Option Explicit
Private Declare Function GetPrivateProfileString Lib "kernel32" Alias "GetPrivateProfileStringA" (ByVal lpApplicationname As String, ByVal lpKeyname As Any, ByVal lpdefault As String, ByVal lpreturnedstring As String, ByVal CrcKey As Long, ByVal CrcString As String) A... |
DECLARE SUB TWOFFT (DATA1!(), DATA2!(), FFT1!(), FFT2!(), N!)
DECLARE SUB REALFT (DATQ!(), N!, ISIGN!)
SUB CONVLV (DATQ(), N, RESPNS(), M, ISIGN, ANS())
DIM FFT(2 * N)
FOR I = 1 TO INT((M - 1) / 2)
RESPNS(N + 1 - I) = RESPNS(M + 1 - I)
NEXT I
FOR I = INT((M + 3) / 2) TO N - INT((M - 1) / 2)
RESPNS(I) = 0!... |
'***************************************
'* PROGRAM FEM1D2 *
'* WITH MULTI-POINT CONSTRAINTS *
'* T.R.Chandrupatla and A.D.Belegundu *
'***************************************
DEFINT I-N: CLS : COLOR 1, 3
LOCATE 1, 1: PRINT "1-D BAR PROBLEMS"; SPACE$(35);
... |
1 %TITLE "Inventory Period Ledger"
%SBTTL "IC_MAST_TRANSACTION"
%IDENT "V3.6a Calico"
!
! COPYRIGHT (C) 1987, 1988 BY
!
! Computer Management Center, Inc.
! Idaho Falls, Idaho.
!
! This software is furnished under a license and may be used and
! copied only in accordance with terms of such license and with
... |
10 REM TEST IF MODIFIER
20 A=10
22 B=5
30 PRINT "START OF TEST"
40 PRINT "SUCCESS" IF B=5 IF A=10
50 PRINT "END OF TEST"
99 END |
10 REM Cit86 to Net69 Packet Translator
20 REM
30 NUL$ = CHR$(0): FF$ = CHR$(255): MS$ = CHR$(255) + CHR$(0)
50 OPEN "SH86BCH.000" FOR INPUT AS #1
60 OPEN "MSG.69" FOR OUTPUT AS #2
65 OPEN "MESG.TMP" FOR OUTPUT AS #3
70 PRINT #2, "Sinkhole"; NUL$;
80 CTY$ = "": PHN$ = "": PTH$ = "": DD$ = "": D1$ = "": S1$ = "":... |
CLS
PRINT "PROGRAM FOR CALCULATING AVERAGES"
10 INPUT "THE SAMPLE SIZE"; N
20 FOR I = 1 TO N
30 INPUT "ENTER A DATUM"; X
40 SUM = SUM + X
50 NEXT I
60 MEAN = SUM / N
70 PRINT "THE SAMPLE MEAN ="; MEAN
80 END
|
10 GRON 640,480
25 COLOR 255,0,0
30 CIRCLE 320,240,200,200:RECT 50,90,590,390
35 FOR I=0TO1000
40 COLOR 254*RND(0), 255*RND(0), 255*RND(0):FILL 320,200
41 COLOR 254*RND(0), 255*RND(0), 255*RND(0):FILL 320,85
42 COLOR 254*RND(0), 255*RND(0), 255*RND(0):FILL 320,395
43 COLOR 254*RND(0), 255*RND(0), 255*RND(0):FILL 55,240... |
Attribute VB_Name = "MImage"
Option Explicit
Public Function imageStdPictureToCairoSurface(po_StdPicture As stdole.StdPicture) As vbRichClient5.cCairoSurface
' Code by Olaf Schmidt. Found here: http://www.vbforums.com/showthread.php?857371-How-to-use-vbRichClient5-to-convert-VB-Picture-to-a-byte-array&p=52495... |
REM 240x400 LCD S95461C Class (HX8352-B01)
REM S95461.BAS
REM Pin Assign
REM LCD's D0-D15 --> Port B0-B15
REM RST -> D6
REM CS --> D7
REM WR --> D8
REM RS --> D9
REM RD --> Vdd (Can't read)
REM Usage:
REM A=NEW(S95461,HV)
REM Init LCD and Assign Control pins port
REM HV 0:Horizontal other:Vertic... |
10 CLEAR 1000:MAXFILES=5:DIM M(200)
20 OPEN "ТОР" FOR OUTPUT AS#4
30 INPUT "Количество элементов";S
40 FOR K=1 TO S:PRINT #4,"L";",";"W";",":NEXT K:CLOSE #4
70 OPEN "ТОР" FOR INPUT AS#4
80 INPUT"Длина значения в INPUT$";X
90 Y=(LOF(4)-1)/X: Z=(LOF(4)-1)MOD X
105 IF Y=0 THEN 130
106 FOR K=1 TO Y
110 X$=INPUT$(X... |
REM UWP Strainer v1.1
REM Public Domain 1997 Jim Vassilakos
REM San Bernardino, California
REM jimv@empirenet.com
REM Usage = strain gals\galaxy\sector\ X
REM where X = A-P if straining one subsector
REM or X = * if straining whole sector
DIM tabs(8)
DIM subsec$(16)
DIM world$(2)
DIM wo$(2)
DI... |
IF usercommand$(runcommands) = "minimize" THEN
speechoutput$ = "minimizing foreground window"
speechprint$ = speechoutput$
GOSUB textprint
GOSUB speechoutput
fgwin%& = GetForegroundWindow
miniwin = CloseWindow(fgwin%&)
usercommands = -1
END IF
|
Attribute VB_Name = "Module1"
Option Explicit
Public Const NCBASTAT As Long = &H33
Public Const NCBNAMSZ As Long = 16
Public Const HEAP_ZERO_MEMORY As Long = &H8
Public Const HEAP_GENERATE_EXCEPTIONS As Long = &H4
Public Const NCBRESET As Long = &H32
Public Type NET_CONTROL_BLOCK
ncb_command As Byte
ncb_retcod... |
atom=K
contraction shell=D num_primitives=1 num_coefficients=1
0.100000 1.000000
atom=Ca
contraction shell=D num_primitives=1 num_coefficients=1
0.100000 1.000000
atom=Ga
contraction shell=D num_primitives=1 num_coefficients=1
0.207000 1.000000
atom=Ge
contraction shell=D num_primitives=1 num_coefficients=1
0.246000 1.... |
940 REM The IBM Personal Computer Mortgage
950 REM Version 1.00 (C)Copyright IBM Corp 1981, 1982
960 REM Licensed Material - Program Property of IBM
970 REM Author - Glenn Stuart Dardick
975 DEF SEG
980 SAMPLES$="NO"
990 GOTO 1010
1000 SAMPLES$="YES"
1010 KEY OFF:SCREEN 0,1:COLOR 15,0,0:WIDTH 40:CLS:LOCATE 5,19... |
CLS
DIM klub$(5)
DIM igry(5)
DIM ochki(5)
DIM sila(5)
klub$(1) = "TCR"
klub$(2) = "Power Buf"
klub$(3) = "FC Roma"
klub$(4) = "Star"
klub$(5) = "Liverts"
sila(1)=
PRINT klub$(1); " "; igry(1); " игры "; ochki(1); " очков"
PRINT klub$(2); " "; igry(2); " игры "; ochki(2); " очков"
PRINT klub$(3); " ... |
CLS
A = 0
B = 600
SCREEN 12
VIEW (0, 0)-(600, 400), 6
5 LINE (A, 290)-(A + 20, 310), 13, BF
LINE (B, 290)-(B + 20, 310), 13, BF
LINE (A, 290)-(A - 20, 310), 6, BF
LINE (B + 20, 290)-(B + 40, 310), 6, BF
A = A + 1
B = B - 1
IF A = 300 THEN 10
FOR T = 1 TO 300: NEXT T
GOTO 5
10
LOCATE 20, 37
PRINT "B O M"... |
Version =20
VersionRequired =20
PublishOption =1
Checksum =1132480257
Begin Form
Modal = NotDefault
RecordSelectors = NotDefault
ControlBox = NotDefault
NavigationButtons = NotDefault
CloseButton = NotDefault
DividingLines = NotDefault
FilterOn = NotDefault
AllowDesignChanges = NotDefau... |
10 EXTEND
1000 ! Program to calculate azimuth and elevation of the moon. May-74
!
! Translated from FORTRAN to BASIC *Mitchell (WB4BWK)
!
! This program is based upon Lance Collister's work (WA1JXN/WA3GPL)
! who acknowledged the vital help of Thomas Ake of the Warner-Swasey
! Observatory.
!
! WB4BWK < K3IXD < W6PO < ... |
atom=H
contraction shell=S num_primitives=3 num_coefficients=1
33.87 0.006068
5.095 0.045308
1.159 0.202822
contraction shell=S num_primitives=1 num_coefficients=1
0.3258 1.000000
contraction shell=S num_primitives=1 num_coefficients=1
0.1027 1.000000
contraction shell=P num_primitives=1 num_coefficients=1
1.407 1.0000... |
LET X = 5
EXTERN PRINTF(fmt AS STRING, ...)
gosubstart:
X = X + 7
PRINTF("X is now %", X)
gosubmiddle:
X = X - 2
RETURN
IF X > 0 THEN GOSUB gosubstart ELSE GOSUB gosubmiddle
|
'SpaceBlast v1.6.7a
'By: Mallot1
'(C)2013 - 2014
'Verison 1: Finished 12/15/13 1:05 AM
'Version 1.2: Finished 12/?/13 ??????
'Version 1.3.5: Start 1/3/2014 1:45 PM Finished 1/3/2014 3:55 PM
'Version 1.4.7: Start 1/6/2014 about 6:48 PM finished 1/7/2014 1:11 AM
'Version 1.5.0: Start 1/8/2014 6:52 PM to 1/9/2014 4:16 AM... |
' ***************************************************************************
' *** Monopoly ***
' *** based on the popular Parker Brothers board game ***
' ***************************************************************************
' decla... |
10 rem place m/c above memsiz
20 rem reset memsiz to 40447
30 rem which is $9dff
35 rem and 512 bytes (40959 - 512 = 40447)
40 poke 55,255 : rem low byte (40447 - (157 * 256))
50 poke 56,157 : rem high byte (40447 / 256)
60 clr : rem clear stack
70 code = 40448 : rem se... |
Version =20
VersionRequired =20
Begin Form
RecordSelectors = NotDefault
AllowDeletions = NotDefault
DividingLines = NotDefault
AllowAdditions = NotDefault
DefaultView =5
TabularCharSet =186
PictureAlignment =2
DatasheetGridlinesBehavior =3
GridY =10
Width =14797
... |
Attribute VB_Name = "DailyProcessing_MOD"
Sub LastGasp()
Dim DBCn As ADODB.Connection
Dim DBRs As ADODB.Recordset
Dim t As Date
On Error GoTo gotError
10 Call UsageTracker("Last Gasp", "Start")
20 LOAD ChooseDateForm
30 ChooseDateForm.MonthView1.Value = format(Date - 1, "m/d/yyyy")
40 ChooseDateF... |
:000ALET A=(X>Y)*123+(X=Y)*456+(X<Y)*789
:000BIF (U=1)*(V<2)+(U>V)*(U<99)*(V>3) PRINT "Yes"
:000CLET R=RND(100), A=(R>3)+(R>15)+(R>56)+(R>98)
@
|
1 CLS
PRINT "CALCULATOR! "
PRINT
PRINT "INPUT 2 NUMBERS (EG. 3, 2)"
INPUT A, B
PRINT
PRINT ; A; "+"; B; "="; A + B
PRINT
PRINT A; "-"; B; "="; A - B
PRINT
PRINT A; " *"; B; "="; A * B
PRINT
PRINT A; " \"; B; "="; A \ B
PRINT
PRINT "ENTER ANOTHER QUESTION";
INPUT A$
IF A$ = "Y" THEN 1
PRINT
PRIN... |
10 ' RINGS OF SATURN
20 ' DEFDBL A-Z
30 CLS : PI=4 *ATN(1 ):
35 RD=PI/180 : DL=9
40 INPUT "Year of interest"; Y
50 A=INT((Y-1 )/100 ): B=2 -A+INT(A/4 )
60 IF Y<1583 THEN B=0
70 JD=INT(365.25*(Y+4715))+INT(30.6001*(14))
80 JD=JD+B-1523.5
90 JE=JD+365
100 T=(JD-2451545 )/365250
110 I=(28.04922 -.13 *T+.0004 ... |
$regfile = "m8def.dat"
$crystal = 8000000
Config Clock = Soft
Config Date = Dmy , Separator = /
Config Lcd = 16 * 2
Config Lcdpin = Pin.Db4=PORTC.3, Db5=PORTC.2, Db6=PORTC.1, Db7=PORTC.0, E=PORTC.4, Rs=PORTC.5
Config 1wire = PORTB.0
Declare Sub Odcz_temp
Dim Temperatura(2) As Byte
Ena... |
5 REM This file passed through VX Heavens http://vx.org.ua
10 REM ************************************************
20 REM *** Демонстрационный вирус BVS.BAS ****
30 REM *** Автора Р.Бургер 1987 ****
40 REM ************************************************
50 REM
60 REM *** Обработка о... |
10 input "Enter a string of text " ,a$
20 let b$ = left$(a$, 1)
30 let c$ = right$(a$, 1)
40 print "The first character is "b$" and the last character is "c$" "
|
Version =20
VersionRequired =20
Begin Report
LayoutForPrint = NotDefault
DividingLines = NotDefault
AllowAdditions = NotDefault
AllowDesignChanges = NotDefault
TabularCharSet =178
DateGrouping =1
GrpKeepTogether =1
PictureAlignment =2
DatasheetGridlinesBehavior =3
GridX =24
... |
10 A$="sm20000l8o5e4ao6co5b4aabo6co5b4a4a4":B$="sm20000l2o4adea"
20 C$="sm20000l2o4efg+e":PLAY A$,B$,C$
|
Attribute VB_Name = "mdlMain"
Option Explicit
Public gobjPacsSrv As Object '导航台
Public SplashObj As New frmSplash
Public gcnOracle As New ADODB.Connection '公共数据库连接
Public gstrSysName As String '系统名称
Public gstrVersion As String '系统版本
Public gstrAviPath As String ... |
1 print tab(27);"cup"
2 print tab(20);"creative computing"
3 print tab(18);"morristown, new jersey"
4 print:print:print
10 dim s(30,60)
30 let l=int(60*rnd(1))+1
40 if l=60 or l=1 then 30
50 let g=int(10*rnd(1))+1
60 print "the cup is 30 lines down and ";l;" spaces over."
70 print "the pull of gravity is ";g;" lines/se... |
' -----------------------------------------------------------------------------
' DTT 2.1.5.2 (c)2007 FSL - FreeSoftLand
' Title: Using Cryptography to Encrypt Data in ASPĚNET
'
' Date : 24/05/2007
' By : FSL
' ----------------------------------------------------------... |
Attribute VB_Name = "NUMBER_COMPLEX_MATRIX_LIBR"
Option Explicit 'Requires that all variables to be declared explicitly.
Option Base 1 'The "Option Base" statement allows to specify 0 or 1 as the
'default first index of arrays.
'*****************************************************... |
0 REM ************************
1 REM * - CCESOFT - *
2 REM *OTTO LONGO SERNATINGER*
3 REM * VERSAO 1.1 05/85 *
4 REM ************************
5 REM * LOTO *
6 REM ************************
10 HOME
11 PRINT TAB( 11)"- CCESOFT -": PRINT
20 PRINT TAB( 10)"ESTE PROGRAMA"
30 PRINT ... |
DECLARE CUSTOMTYPE LIBRARY "direntry"
FUNCTION FILE_load_dir& ALIAS load_dir (s AS STRING)
FUNCTION FILE_has_next_entry& ALIAS has_next_entry ()
SUB FILE_close_dir ALIAS close_dir ()
SUB FILE_get_next_entry ALIAS get_next_entry (s AS STRING, flags AS LONG, file_size AS LONG)
SUB FILE_get_current_dir... |
10 REM THIS PROGRAM COMPUTES THE COMPONENTS
20 REM REQUIRED FOR A PI OR T TYPE
30 REM RESISTIVE ATTENUATOR
40 PRINT "INPUT RESISTANCE R(IN) = ";
50 INPUT X
60 PRINT "OUTPUT RESISTANCE R(OUT) = ";
70 INPUT Y
80 LET Z = X/Y
90 LET Q = (SQR(Z) + SQR(Z - 1))^2
100 LET M = 10*(LOG(Q)/LOG(10))
110 PRINT "MINIMUM SYSTEM LOSS ... |
#COMPILE EXE
#DIM ALL
#DEBUG ERROR ON
' include the common display library
#INCLUDE "win32api.inc"
#INCLUDE "..\Libraries\CommonDisplay.inc"
'
FUNCTION PBMAIN () AS LONG
' the main PB function that is the first to be executed
funPrepOutput("Numeric to String",0,0,40,120)
'
funLog("Walk through on Numeric to St... |
DECLARE SUB DERIVS (X!, Y!(), DYDX!())
DECLARE SUB RK4 (Y!(), DYDX!(), N!, X!, H!, YOUT!(), DUM!)
COMMON SHARED XX(), Y()
SUB RKDUMB (VSTART(), NVAR, X1, X2, NSTEP, DUM)
DIM V(NVAR), DV(NVAR)
FOR I = 1 TO NVAR
V(I) = VSTART(I)
Y(I, 1) = V(I)
NEXT I
XX(1) = X1
X = X1
H = (X2 - X1) / CSNG(NSTEP)
FOR K =... |
1 %TITLE "Post Final Payroll Program"
%SBTTL "PR_POST_FINAL"
%IDENT "V3.6a Calico"
!
! COPYRIGHT (C) 1987, 1988, 1989, 1990 BY
! Computer Management Center, Inc.
! Idaho Falls, Idaho.
!
! This software is furnished under a license and may be used and
! copied only in accordance with terms of such license and ... |
Version =20
VersionRequired =20
Begin Form
AllowFilters = NotDefault
RecordSelectors = NotDefault
MaxButton = NotDefault
MinButton = NotDefault
AutoCenter = NotDefault
NavigationButtons = NotDefault
AllowDeletions = NotDefault
AllowAdditions = NotDefault
DefaultView =0
... |
5 rem simuates tossed coins
10 print chr$(147)
20 print "heads-tails"
30 print : print
35 rem a is a whole random number between 1 and 2 inclusive
40 a=int(rnd(0)*2)+1
50 if a=1 then coin$="heads" : goto 70
60 coin$="tails"
70 print coin$,
80 for q=1 to 200 : next
90 goto 40 |
DECLARE SUB drawing ()
DECLARE SUB hold ()
SCREEN 12
'CALL drawing
CLS
num = 400
thing$ = "111"
DO
PSET (500, 350), 15
angle = 0
seg$ = "r" + STR$(INT(num) + 1)
FOR i = 1 TO LEN(thing$)
'CALL hold
k$ = MID$(thing$, i, 1)
IF k$ = "1" THEN
angle = angle + 120
IF angle >= 360 THEN LET angle = 0
DRAW "ta" ... |
SUB MAIN
DIM I AS INTEGER
DIM ERR AS STRING
TRY
FOR I=1 TO 10
PRINT I
IF (I=5) THEN
THROW "I=5"
END IF
END FOR
CATCH ERR
PRINT "ERROR> " + ERR
/*
* THROW A Second Error from within the Error Handler
* This time there isn't a current error handler so it
... |
'*** 050415 17:23 PM
' Created 'ROT13' qb64 program, which will both 'encrypt/decrypt' code.
' I was 'inspired' to go and create this program after reading through a Wikipedia online article
' directly referring to the use of ROT13: https://en.wikipedia.org/wiki/ROT13
'*** Global variable declations...
strP... |
Attribute VB_Name = "ModuleF"
'Dex3D
'A Visual Basic 3D Engine
'
'Copyright (C) 1999 by Jerry J. Chen
'
'This program is free software; you can redistribute it and/or
'modify it under the terms of the GNU General Public License
'as published by the Free Software Foundation; either version 2
'of the License, or... |
#sec:Main
' Crow.bas
' 08/02/2005
' Machiavellian politics in the Court of the Raven King
' By Gary Breinholt
label start
cls: ?: ? ,"Parliament of Crows"
?: ?" Sing your song for sixpence,"
? " just before you die."
? " Four and twenty blackbirds,"
? " sent in to spy."
? " When the spy was opened"
? " the bird... |
10 IF WIDTH < 80 THEN PRINT "Terminal too small to play the game. Set your terminal width to 80 or more." : END
20 CLS
30 RANDOMIZE TIMER
40 PRINT CHR$(27) + "[48;5;232m" + "Loading.";
50 DEF FND(X) = INT(RND(X))+1
60 DIM GOODS(12)
70 DIM GOODSNAME$(12)
80 DIM GOODSWEIGHT(12)
... |
Version =20
VersionRequired =20
Begin Form
NavigationButtons = NotDefault
DividingLines = NotDefault
AllowDesignChanges = NotDefault
ScrollBars =2
PictureAlignment =2
DatasheetGridlinesBehavior =3
GridX =24
GridY =24
Width =8781
DatasheetFontHeight =11
ItemSuffix =72
Lef... |
Version =21
VersionRequired =20
Begin Form
RecordSelectors = NotDefault
AutoCenter = NotDefault
NavigationButtons = NotDefault
DividingLines = NotDefault
AllowDesignChanges = NotDefault
DefaultView =0
ScrollBars =0
TabularFamily =124
PictureAlignment =2
DatasheetGridlinesBehavio... |
REM compare_screenshot 0.0
SCREEN 13
FOR I = 0 TO 50
LINE (3,3+I*2)-STEP(50,I), I
NEXT I
FOR I = 0 TO 50
LINE (56,3+I*3)-STEP(50,-I), I
NEXT I
FOR I = 0 TO 50
LINE (290,3+I*2)-STEP(-50,I), 15
NEXT I
FOR I = 0 TO 50
LINE (237,3+I*3)-STEP(-50,-I), 15
NEXT I
|
Attribute VB_Name = "Overview_Report"
Option Explicit
Sub Bring_Data()
'PURPOSE: Brings in all all data from register table in a summarized manner
Dim Rpt As ListObject
Dim err As Range, Header As Range, GreenCells As Range, RedCells As Range
Dim ReadRow As Variant
Dim i As Integer, j As ... |
10 INPUT "What is your age",A
20 IF A < 18 THEN PRINT "You are way too young" ELSE PRINT "Good for you!" |
atom=H
contraction shell=S num_primitives=3 num_coefficients=1
0.122518E+02 0.233371E-01
0.186871E+01 0.159150E+00
0.418208E+00 0.500000E+00
contraction shell=S num_primitives=1 num_coefficients=1
0.106100E+00 1.0000000
contraction shell=S num_primitives=1 num_coefficients=1
0.265250E-01 1.0000000
contraction shell=P n... |
''''''''''''''''''''''''''''INITIATION''''''''''''''''''''''''''''
_SCREENHIDE
'library declarations
'$INCLUDE:'include\lib.bi'
'declare sub/func
'$INCLUDE:'include\subfunc.bi'
'common library initiation
'$INCLUDE:'include\lib\common_init.bi'
'console commands
SCREEN _NEWIMAGE(SCRX, SCRY, SCRZ)
Programname = "Chro... |
Attribute VB_Name = "Module1"
Public Const dlX As Integer = 12
Public Const dlY As Integer = 16
Public Const vbGold As Long = 55295 'RGB(255, 215, 0)
Public Const vbPurple1 As Long = 16724123 'RGB(155, 48, 255)
Public Type RECT
xs As Long
ys As Long 'Left和Top为矩形区域左上角坐标
xe As Long
ye As Long 'R... |
REM File: .bas
REM Data:
REM Programmer: Yuriy Lomako
REM Description:
REM -------------------------------------------------------------------
10 CLS
20 GOSUB 500
25 PRINT 1
26 PRINT 55
30 GOSUB 500
40 GOSUB 500
50 GOSUB 500
60 GOSUB 500
70 GOSUB 500
80 END
500 INPUT "input a="; a
505 FOR i = 1 TO 10
510 a = a * i
... |
Version =20
VersionRequired =20
Begin Form
RecordSelectors = NotDefault
NavigationButtons = NotDefault
AllowDesignChanges = NotDefault
DefaultView =0
TabularFamily =0
PictureAlignment =2
DatasheetGridlinesBehavior =3
GridX =24
GridY =24
Width =11326
DatasheetFontHeight =10
... |
1 %TITLE "Read Commission Accounting"
%SBTTL "SA_READ_COMMACCT"
%IDENT "V3.6a Calico"
FUNCTION LONG SA_READ_COMMACCT(LOCATION$, SALESTYPE$, &
SA_COMMACCT_CDD SA_COMMACCT_READ)
!
! COPYRIGHT (C) 1987, 1988 BY
!
! Computer Management Center, Inc.
! Idaho Falls, Idaho
!
! This software is furnished under a ... |
10 DEFINT A-Z
20 FOR A=1 TO 9
30 FOR B=1 TO A
40 PRINT MID$(STR$(A),2,1);"x";MID$(STR$(B),2,1);"=";MID$(STR$(A*B),2,2);CHR$(9);
50 NEXT B
60 PRINT ""
70 NEXT A
80 END |
Version =20
VersionRequired =20
Begin Form
RecordSelectors = NotDefault
NavigationButtons = NotDefault
AllowDeletions = NotDefault
DividingLines = NotDefault
AllowAdditions = NotDefault
DefaultView =0
ScrollBars =0
TabularFamily =48
PictureAlignment =2
DatasheetGridlinesBehavior... |
1 %TITLE "Print Requisition Form"
%SBTTL "WP_FORM_REQJOUR_LL"
%IDENT "V3.6a Calico"
!
! COPYRIGHT (C) 2000 BY
! Software Solutions, Inc.
! Idaho Falls, Idaho.
!
! This software is furnished under a license and may be used and
! copied only in accordance with terms of such license and with
! the inclusion of ... |
DECLARE SUB DrawSubTitleScreen ()
DECLARE SUB DrawTitleScreen ()
DECLARE SUB PlacePiece8 ()
DECLARE SUB PlacePiece7 ()
DECLARE SUB PlacePiece6 ()
DECLARE SUB PlacePiece5 ()
DECLARE SUB PlacePiece4 ()
DECLARE SUB PlacePiece3 ()
DECLARE SUB PlacePiece1 ()
DECLARE SUB PlacePiece2 ()
DECLARE SUB PlacePiece ()
DE... |
1 %TITLE "Control Line File Maintenance"
%SBTTL "AR_MAIN_CONTROL_ACCT"
%IDENT "V3.6a Calico"
FUNCTION LONG AR_MAIN_CONTROL_ACCT(CDD_WINDOW_CDD SMG_WINDOW, &
LONG MOPTION, LONG MLOOP, LONG MFLAG, STRING MVALUE)
!
! COPYRIGHT (C) 1987,1988 BY
!
! Computer Management Center, Inc.
! Idaho Falls, Idaho.
!
! Th... |
10 REM INSTRUCTIONS FOR "SUPER STARTREK" MAR 5, 1978
20 FOR I=1 TO 12:PRINT:NEXT I
21 PRINT TAB(10);"*************************************"
22 PRINT TAB(10);"* *"
23 PRINT TAB(10);"* *"
30 PRINT TAB(10);"* * * SUPER STAR TREK * * *"
31 PRINT... |
10 REM MOONLANDER
20 DIM P(-1);P.$21
30[;JSR #FE71;STY #80;RTS;];P.$6
100 J=#1B8020;K=#1B8080;L=#1B80E0
110 M=#1B8140;N=#B002;O=#DE
120 D=0;A=45000;V=0;H=300;F=1250
130 T=1000;Y=A/T+2;X=D/T
140 CLEAR 0;@=5;MOVE 0,0;DRAW 63,0;MOVE 0,1
150 DRAW 63,1;MOVE 31,2;DRAW 33,2
160 !O=#1D8000;P."ALT"
170 !O=#1D8060;P."H-V"
18... |
Version =20
VersionRequired =20
Begin Report
LayoutForPrint = NotDefault
AllowDesignChanges = NotDefault
DefaultView =0
TabularFamily =0
DateGrouping =1
GrpKeepTogether =1
PictureAlignment =2
DatasheetGridlinesBehavior =3
GridX =24
GridY =24
Width =5760
DatasheetFontHeig... |
40 COLOR 15,15,15:SCREEN 2,0,0:OPEN"GRP:"AS #1
70 LINE (0,0)-STEP(255,191),1,B
80 PRESET (8,8):COLOR 1:PRINT #1,"Радиус:";
110 N$=""
120 X=80
130 PRESET(X,8)
140 A$=INPUT$(1)
150 IF A$=CHR$(13) THEN GOTO 250
170 'Подтверждение ввода
190 IF A$<"0" OR A$>"9" THEN PLAY"l24o2c":GOTO 130
200 PRINT #1,A$;:N$=N$+A$:... |
1 "CHOMP.BAS, from _BASIC Computer Games_ (1978), edited by David H. Ahl."
1 "Reproduced at https://www.atariarchives.org/basicgames/showpage.php?page=44"
1
1 "Adapted for Tiny BASIC in 2020."
1
10 PR SP(33);"CHOMP"
20 PR SP(15);"CREATIVE COMPUTING MORRISTOWN, NEW JERSEY"
30 PR$PR$PR
40 DIM A(10,10)
110 PR "*... |
100 REM File: on1.bas
110 REM Purpose: Verify ON ... GOTO|GOSUB ...
120 REM Note: for index values outside of ramge
130 REM ----------------------------------------------
140 REM option version "BASIC-80"
1000 let i = 0
1010 on i goto 1100,1200,1300,1400,1500,1600,1700,1800,1900
1020 print "*** TEST PASSED ***"... |
Version =20
VersionRequired =20
Begin Form
AllowFilters = NotDefault
PopUp = NotDefault
RecordSelectors = NotDefault
MaxButton = NotDefault
MinButton = NotDefault
NavigationButtons = NotDefault
AllowDeletions = NotDefault
DividingLines = NotDefault
AllowAdditions = NotDefault
Al... |
'$INCLUDE: '3d.bi'
DIM SHARED G_MAINSCREEN
G_MAINSCREEN = NEWIMAGE(1024, 768, 32)
SCREEN G_MAINSCREEN
DIM obj, obj2
DIM tex(0) AS LONG
createTexture "dice.png", tex()
obj = loadObj("dice.obj")
obj2 = loadObj("arm.obj")
g_cam.x = -1000
g_cam.z = 1000
g_cam.y = 0
g_cam.rotx = 0
g_cam.roty = -45
g_object... |
100 COLOR 2,1,1: SCREEN 2,2,0
110 GOSUB 2000
120 X1=32:Y1=32:X2=64:Y2=32
130 SC=4:BC=4
200 PUT SPRITE 0,(X1,Y1),11,0
210 PUT SPRITE 1,(X2,Y2),2,1
220 PUT SPRITE 2,(0,0),BC,2
230 PUT SPRITE 3,(16,0),SC,2
250 SC=4:SPRITE ON: ON SPRITE GOSUB 600
300 S=STICK(0)
310 IF S=1 THEN Y1=Y1-1
320 IF S=3 THEN X1=X1+1
330 IF S=5 T... |
Attribute VB_Name = "PostgreSQL"
' This code module rebuilt by VBRezQ v3.3a. 2-Feb-2012 / 19:56:30
Option Explicit
'Sub Subr_706()
'N * ref: __vbaExceptHandler
'N * ref: __vbaVarMove
'N * ref: __vbaVarCat
'N * ref: __vbaFreeVarList
'N * ref: "chr(126)||chr(39)||(select datname from pg_database limit 1 offset "... |
'V2r2 -> V2r3 file convertor
DEFINT a-z
LIBRARY"GEMDOS"
DIM SHARED bkstor(32000),junk
DIM SHARED p_osc(50),n_blk,block$(50),n_blk,p_blk
DIM SHARED path$,net_name$,item_name$(4000),dnet$(4000),inet%(4000,5),d_cir%(4000,4),n_inp,ni,n_lnk,lnk$(6000)
DIM SHARED b_pagesize(50,2)
DIM SHARED filetype$
?"CLA .NET FILE PATCH... |
SCREEN 12
PRINT"Stas = Genius"
N=8
X=300
Y=50
FOR A=0 TO X
FOR B=0 TO Y
IF POINT(A,B)=15 THEN LINE(A*2.5+N,B*2.5+100-N/2)-(A*2.5+N+2,B*2.5+102-N/2),1,BF
NEXT
NEXT
FOR A=1 TO X
FOR B=1 TO Y
IF POINT(A,B)=15 THEN LINE(A*2.5,B*2.5+100)-(A*2.5+N,B*2.5+100-N/2),9
NEXT
... |
5 CLS
10 FOR ASCII8 = 65 TO 90
20 A$ = CHR$(ASCII)
30 FOR ASCII7 = 65 TO 90
40 A$ = CHR$(ASCII) + CHR$(ASCII1)
50 FOR ASCII6 = 65 TO 90
60 A$ = CHR$(ASCII) + CHR$(ASCII1) + CHR$(ASCII2) + CHR$(ASCII3) + CHR$(ASCII4) + CHR$(ASCII5) + CHR$(ASCII6)
70 FOR ASCII5 = 65 TO 90
80 A$ = CHR$(ASCII) + CHR$(ASCII1) + CHR$... |
REM ---------------------------------------------------
REM
REM LUNAR.BAS
REM
REM LUNAR LANDING GAME
REM
REM AUTHOR: ANDRE MURTA
REM DATE: 20/12/1992
REM
REM DEVELOPED AT CENTRO DE ENSINO SUPERIOR DO PARA
REM
REM ---------------------------------------------------
CL... |
'Dateien Ver- und entschl《seler
Men:
CLEAR
ON ERROR GOTO Er
DIM q(0) AS STRING * 1
CLS
PRINT
PRINT TAB(27); "Verschl《seler von Rafael"
PRINT TAB(26); "゚゚゚゚゚゚゚゚゚゚゚゚゚゚゚゚゚゚゚゚゚゚゚゚゚゚゚"
PRINT : PRINT : PRINT
PRINT TAB(33); CHR$(26) + " Verschl《seln"
PRINT TAB(35); "Entschl《seln"
PRINT TAB(35); "End... |
100 PRINT 1
200 PRINT 1 + 1
300 PRINT ---2
400 PRINT SIN(0)
500 PRINT sin(0)
600 PRINT -COS(0)
700 PRINT 5 * 2 + 7
800 PRINT ---(7 + 5 * 2) + 2
|
\***********************************************************************
\***********************************************************************
\***
\*** DESCRIPTION: Item Movement & Stock File
\*** Public File Function Definitions
\***
\*** FILE TYPE : Keyed
\***
\******************************... |
' PROGRAM TO MATCH TWO TEAMS 3/9/2007
' ~~~~~~~~~~~~~~~~~~~~~~~~~~
DIM T$(1:38),TM(1:2,1:19),PH(1:2,1:19),PV(1:2,1:19),NAM$(2)
DIM PUB(1:2,1:19),DIV(1:8,1:4),DIVB(1:4,1:8)
'--------------------------------
OPEN "LEAGUE.FIL" FOR INPUT AS #3
INPUT #3,CH$:CLOSE 3
'--------------------------------
IF CH... |
01 REM **************************************************************
02 REM
03 REM 68k-MBC DATETIME demo (CP/M-68K CBASIC (C68) Basic Compiler)
04 REM
05 REM **************************************************************
06 REM
INTEGER EXWRPT, STRPT, EXRDPT, DTTM, T, S, M, H, D, N, Y
08 EXWRPT = 0ffffch : REM Address ... |
NAME ns1952667 FREEIEEE
XL X1 EQU1 M+3000000000
XL X2 EQU2 QZ34VcOWadcb
XL X3 EQU3 XZ3tGa6ZaHJ6
XL X4 EQU4 CZ3kq9IJ6Fu4
XL X997 EQU5 RZ3er8tv4889
XL X1370 EQU6 8*3fE8w50W0e
XL X3680 EQU7 P*3VX5Y... |
1 %TITLE "Shipped Items by Product Report"
%SBTTL "OE_RPRT_ONORDER"
%IDENT "V3.6a Calico"
!
! COPYRIGHT (C) 1999 BY
!
! Software Solutions, Inc.
! Idaho Falls, Idaho.
!
! This software is furnished under a license and may be
! copied only in accordance with terms of such license and with
! the inclusion of ... |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.