Movatterモバイル変換


[0]ホーム

URL:


Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings

Commite606669

Browse files
Revision 35 Version 13
mistake on sgn() function removed
1 parent3f2ece1 commite606669

File tree

9 files changed

+539
-563
lines changed

9 files changed

+539
-563
lines changed

‎M2000.TLB‎

0 Bytes
Binary file not shown.

‎M2000.VBR‎

Lines changed: 531 additions & 531 deletions
Large diffs are not rendered by default.

‎M2000.exp‎

0 Bytes
Binary file not shown.

‎M2000.lib‎

0 Bytes
Binary file not shown.

‎M2000.vbp‎

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -151,7 +151,7 @@ HelpContextID="0"
151151
CompatibleMode="0"
152152
CompatibleEXE32="m2000.exe"
153153
MajorVer=13
154-
MinorVer=34
154+
MinorVer=35
155155
RevisionVer=0
156156
AutoIncrementVer=0
157157
ServerSupportFiles=1

‎M2000.vbw‎

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ Module3 = 0, 0, 0, 0, C
1212
gpp1 = 0, 0, 0, 0, C
1313
AnyPrinter = 0, 0, 0, 0, C
1414
Module5 = 0, 0, 0, 0, C
15-
Module2 = 234, 234, 827, 807,Z
15+
Module2 = 234, 234, 827, 807,C
1616
PicHandler = 26, 26, 585, 519,
1717
Module4 = 0, 0, 0, 0, C
1818
cDIBSection = 0, 0, 0, 0, C
@@ -51,7 +51,7 @@ Group = 0, 0, 0, 0, C
5151
stdCallFunction = 0, 0, 0, 0, C
5252
mdlIDispatch = 0, 0, 0, 0, C
5353
PropReference = 0, 0, 0, 0, C
54-
Module1 = 26, 26, 585, 519,
54+
Module1 = 26, 26, 585, 519,Z
5555
MyPopUp = 0, 0, 0, 0, C, 52, 52, 729, 545, C
5656
Module7 = 182, 182, 741, 675,
5757
cJpeg = 0, 0, 0, 0, C

‎Mod_Text.bas‎

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -96,7 +96,7 @@ Public TestShowBypass As Boolean, TestShowSubLast As String
9696
Public feedback$, FeedbackExec$, feednow$ ' for about$
9797
Global Const VerMajor = 13
9898
Global Const VerMinor = 0
99-
Global Const Revision =34
99+
Global Const Revision =35
100100
Private Const doc = "Document"
101101
Public UserCodePage As Long, DefCodePage As Long
102102
Public cLine As String ' it was public in form1
@@ -11960,7 +11960,7 @@ fun2: ' "STACKITEM(", "
1196011960
fun3: ' "SGN(", "���("
1196111961
If IsExpBig(bstack, a$, p, flatobject:=True, nostring:=True) Then
1196211962
If bstack.lastobj Is Nothing Then
11963-
r = MyRound(p, 28)
11963+
r =Sgn(MyRound(p, 28))
1196411964
Else
1196511965
r = bstack.lastobj.bSgn()
1196611966
Set bstack.lastobj = Nothing

‎info.gsb‎

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47159,7 +47159,7 @@ MODULE POLYSPIRAL {ΤΜΗΜΑ ΠΟΛΥΣΠΕΙΡΑ {
4715947159
ΦΟΝΤΟ 0, #330066
4716047160
ΠΕΝΑ 15 {
4716147161
ΠΛΑΓΙΑ
47162-
ΠΕΝΑ 14 {ΑΝΑΦΟΡΑ ΑΝ$(ΕΛΛΗΝΙΚΑ=ΑΛΗΘΕΣ->"Μ2000Διεμηνευτής", "M2000 Interpreter")}
47162+
ΠΕΝΑ 14 {ΑΝΑΦΟΡΑ ΑΝ$(ΕΛΛΗΝΙΚΑ=ΑΛΗΘΕΣ->"Μ2000Διερμηνευτής", "M2000 Interpreter")}
4716347163
ΠΛΑΓΙΑ
4716447164
ΑΝΑΦΟΡΑ ΑΝ$(ΕΛΛΗΝΙΚΑ=ΑΛΗΘΕΣ->"ΠΟΛΥΣΠΕΙΡΑ ΣΕ ΚΙΝΗΣΗ","POLYSPIRAL ANIMATION")
4716547165
}

‎readme.txt‎

Lines changed: 2 additions & 26 deletions
Original file line numberDiff line numberDiff line change
@@ -1,30 +1,6 @@
11
M2000 Interpreter and Environment
2-
Version 13 revision 34 active-X
3-
New #command as #Stuff() this get value from tuple as is. The difference from #Val() is that the later return arithmetic value or object, and for string values convert them to number ("12.23" returned as 12.23 but "12,23" returned as 0). See the example bellow.
4-
Also the Array([]) which convert as stack object (here the [] is the current stack object) to array, now convert it to tuple, not mArray. From version 13 there is a tuple object, which is a lighter mArray object.
5-
6-
CLASS ALFA {
7-
X=10
8-
}
9-
DIM A(10)
10-
Z=POINTER(ALFA())
11-
A(3):="OK", 100, (1,2,3,4), Z
12-
M=A()
13-
? M#STUFF(6).X
14-
Z=>X++
15-
? M#STUFF(6).X
16-
ZZ=M#STUFF(6)
17-
? Z IS ZZ
18-
? A(3)
19-
? M#STUFF(3)="OK", M#VAL(3)=0, M#VAL$(3)="OK"
20-
? M#STUFF(4)=100, M#VAL(4)=100, M#VAL$(4)="100"
21-
? M#STUFF(5)#MAX()
22-
' second change:
23-
FLUSH
24-
DATA 1,2,3
25-
m=ARRAY([])
26-
? TYPE$(m)="tuple"
27-
2+
Version 13 revision 35 active-X
3+
fix mistake on SGN() function...
284

295

306
George Karras, Kallithea Attikis, Greece.

0 commit comments

Comments
 (0)

[8]ページ先頭

©2009-2025 Movatter.jp