Search found 619 matches
- Mon Mar 31, 2025 9:49 am
- Forum: BASIC programs
- Topic: Radiation Dose Map - problem!
- Replies: 4
- Views: 4497
- Flag:
Re: Radiation Dose Map - problem!
… I see it’s mentione in the User Manual, but not under Screen Display, which to me is the logical place to look for it. Also I find that the A (opacity) variable can be omitted. In the (PDF-)User Manual you'll find it in chapter 7 Graphics view In subchapter 7.3.1 Handling Retina display resolutio...
- Mon Mar 17, 2025 10:32 am
- Forum: BASIC programs
- Topic: Program Template (reposted)
- Replies: 4
- Views: 15207
- Flag:
Re: Program Template (reposted)
It is just a template, a good start for any new program. The "Program template", , in the section 'for beginners', created by Rbytes. has been removed a long time ago. The screenshot has remained. See https://nitisara.ru/forum/viewtopic.php?f=88&t=2352 Rbytes was a very passionate, helpful and creat...
- Thu Feb 13, 2025 9:36 am
- Forum: For beginners
- Topic: Program Template
- Replies: 10
- Views: 14203
- Flag:
Re: Program Template, Withdrawn and reposted
The "Program template" has been removed a long time ago. The screenshot has remained.
Because it is a good start for any new program not only for beginners, but also for advanced users, I have reposted it on https://nitisara.ru/forum/viewtopic.php?f=20&t=2795
Because it is a good start for any new program not only for beginners, but also for advanced users, I have reposted it on https://nitisara.ru/forum/viewtopic.php?f=20&t=2795
- Mon Dec 16, 2024 11:03 am
- Forum: BASIC programs
- Topic: Program Template (reposted)
- Replies: 4
- Views: 15207
- Flag:
Re: Program Template (reposted)
Thank you for your appreciation 

- Sun Dec 15, 2024 4:03 pm
- Forum: BASIC programs
- Topic: Program Template (reposted)
- Replies: 4
- Views: 15207
- Flag:
Program Template (reposted)
The "Program template", , in the section 'for beginners', created by Rbytes. has been removed a long time ago. The screenshot has remained. See https://nitisara.ru/forum/viewtopic.php?f=88&t=2352 Rbytes was a very passionate, helpful and creative member of the forum, until the app was not updated fo...
- Sat Dec 14, 2024 1:53 pm
- Forum: BASIC programs
- Topic: Bug in pages or in program ?
- Replies: 3
- Views: 2618
- Flag:
Re: Bug in pages or in program ?
Thank you very much Henko. I don't know how many hours I spent trying to fix it, but it was a lot. That's why I'm very happy that the solution is so simple.
Groeten
Groeten

- Fri Dec 13, 2024 11:48 am
- Forum: BASIC programs
- Topic: Bug in pages or in program ?
- Replies: 3
- Views: 2618
- Flag:
Bug in pages or in program ?
Apparently my question about a possible bug has gone unnoticed. See https://nitisara.ru/forum/viewtopic.php?f=28&p=15627#p15627 That's why I posted it here in the hope that someone can help. I've been trying to make a background for a custom toolbar for some time now, but I can't. I want to create t...
- Tue Oct 15, 2024 1:09 pm
- Forum: Other topics
- Topic: Referencing a n array from a function
- Replies: 3
- Views: 8745
- Flag:
Re: Referencing a n array from a function
The example has been added to the PDF-manual.
See https://nitisara.ru/forum/viewtopic.php ... 616#p15616
See https://nitisara.ru/forum/viewtopic.php ... 616#p15616
- Tue Oct 15, 2024 1:08 pm
- Forum: PDF manual (by Dutchman)
- Topic: PDF manual 6-9
- Replies: 3
- Views: 16292
- Flag:
Re: PDF manual 6-9
The example for "Reference an array from a function" has been added in the subchapter 'Arrays'. See https://nitisara.ru/forum/viewtopic.php?f=26&t=2788&p=15617#p15611 The updated PDF manual is attached below. The version date 20241015 is on the cover page at the bottom right corner. The PDF-manual i...
- Sun Oct 13, 2024 1:41 pm
- Forum: Other topics
- Topic: How to test if a variable is an integer?
- Replies: 2
- Views: 6819
- Flag:
Re: How to test if a variable is an integer?
The function 'Numeric' in the following test program culd be used 'Numbercheck DIM A$(10) A$(1)="Number" A$(2)=" 123.456" FOR i=1 TO 2 PRINT A$(i); IF Numeric(A$(i)) THEN PRINT " is a number" ELSE PRINT " is NOT a number" ENDIF NEXT i END DEF Numeric(a$) b=VAL(a$) IF STR$(b,"")=TRIM$(a$) THEN RETURN...