|
|
Post by Admin on Apr 5, 2025 23:19:34 GMT
OSDN(Open source developers network) was terminated. We opened a new Decimal BASIC Bulletin Board. This Thread deals with questions, suggestions and information. Register your e-mail address to login and then post a message.
|
|
abpp
New Member
Posts: 2
|
Post by abpp on May 5, 2025 6:02:08 GMT
Thanks. I have a question, why in Decimal Basic the Syntax option is not saved? It reverts to Standard after you close and open the application.
|
|
|
|
Post by Admin on May 7, 2025 23:12:43 GMT
In Decimal BASIC Ver.7.1, Compatibility-Syntax options are saved in the registry or BASIC.ini. When BASIC has been installed with the installer, options are saved in the registry, otherwise in BASIC.ini. BASIC.ini is made in the folder where BASIC was launched.
|
|
|
|
Post by Admin on May 7, 2025 23:24:15 GMT
OPTION Syntax menu was prepared for testing MICROSOFT syntax temporally. This option setting should not continue to be used.
|
|
abpp
New Member
Posts: 2
|
Post by abpp on May 9, 2025 17:49:33 GMT
I know the options are saved in the Registry (with the installer, or setup.bat as admin) otherwise in the INI file. But either way, the Syntax option is not saved, and reverts to Standard after you close and open the application. The same happens with the Minimal Syntax option. Does that meant the only Syntax option that stays permanently is the Standard ?
|
|
|
|
Post by Admin on May 10, 2025 8:27:42 GMT
That's right. The only Syntax option that stays permanently is the Standard.
|
|
|
|
Post by toml12953 on May 16, 2025 22:01:09 GMT
I'm using Decimal BASIC 8.1.3.4 on Windows 11. Search and replace don't work very well. Sometimes replace misses many occurrences and only works from the cursor down to the end when Replace All is used. Replace All should replace every occurrence in the file. A few times when I tried to use replace, Decimal BASIC hung and I had to exit it and restart it. I need to use this version rather than the 7.x version because the following works in this version:
DO SET COLOR MIX(0) 0,0,0 CLEAR LOOP In the other Windows version, the screen flashes. In this version, it stays black as expected. Of course the example is greatly simplified just to illustrate the problem.
|
|
|
|
Post by Admin on May 17, 2025 0:49:01 GMT
Ver 8.1.3 Windows version may occur INDEX OUT OF BOUNDS error, but they occur sporadically. If you find the way to reproduce them, inform me. Ver. 8.1.3.8 and 8.1.4.0 were made to eliminate the possibilities, but they might not hit the target. In Decimal BASIC, to hide progress, use SET DRAW MODE HIDDEN. Example. DO SET COLOR MIX(0) 0,0,0 SET DRAW MODE HIDDEN CLEAR SET DRAW MODE EXPLICIT LOOP END
|
|
|
|
Post by marcoa1 on May 28, 2025 16:00:45 GMT
This Program reads the matrix a(3,2), but in an editor we have the result (with an editor):
1,1,2 2,3,3
why?
Program 100 DIM a(3,2) 110 DATA 1,1 120 DATA 2,2 130 DATA 3,3 140 MAT READ a 150 MAT PRINT a; 160 OPEN #1: NAME "data.csv",RECTYPE csv 170 ERASE #1 180 MAT WRITE #1: a 190 END
|
|
|
|
Post by Admin on May 29, 2025 4:42:55 GMT
Thank you for informing us. probably it is a bug.
|
|
|
|
Post by marcoa1 on Jun 15, 2025 20:51:31 GMT
Is it possible to run decimal basic twice? Yes: It is possible to have more than one DecimalBasic running at the same time. We can compare two programs. ![]()
|
|
|
|
Post by Admin on Sept 30, 2025 4:57:11 GMT
We discovered a bug in version 0.9 (up to 0.9.2.8) where instructions that should be executed on the execution thread were executed on the computation thread. This caused a malfunction that could cause a running program to suddenly terminate. A fixed version has been uploaded as version 0.9.3.0. decimalbasic.web.fc2.com/BASICGeneric.htmIn addition, version 0.9.3.0 now allows matrix calculations to be written in MAT statements.
|
|
|
|
Post by Admin on Oct 22, 2025 23:11:34 GMT
Ver. 8.1 and Ver. 0.9: bug on the Replace dialog. When a second word is searched in the Replace dialog unless closing the dialog, Decimal BASIC shall freeze. Countermeasure versions are in preparation. for a while, close the Replace dialog after every one word searched.
|
|
|
|
Post by Admin on Nov 2, 2025 1:17:07 GMT
Secondary web page opened. When you can not connect to decimalbasic.web.fc2.com, visit decimalbasic.ninja-web.net/English/Only Windows and Linux executables are available. As this sever has a limitation on an individual file size, Mac executables can not be accommodated.
|
|
|
|
Post by Admin on Nov 5, 2025 22:28:03 GMT
Ver. 8.1 ,Ver. 0.9 and BASICAcc, ParactBASIC: bug on the Replace dialog. On some situation, doing replace make them freeze. Save programs before doing replace until countermeasure versions are released.
|
|