issues Search Results · repo:smallbasic/smallbasic.github.io language:HTML
Filter by
4 results
(49 ms)4 results
insmallbasic/smallbasic.github.io (press backspace or delete to remove)Web page for TRANSPOSE is missing. Most probably you forgot to upload it.
https://smallbasic.github.io/reference/1802.html
Joe7M
- 1
- Opened on Jun 16, 2024
- #31
QBasic 4.5 (and QB64) have 2 built in functions to save the cursor position.
CSRLIN for the row: row = CSRLIN
POS for the column: column = POS
For a better/more in-depth explanation see: https://wiki.qb64.org/wiki/CSRLIN ...
redwdc
- 1
- Opened on Jan 5, 2022
- #5
Tested on 12.20 FLTK version.
Document tells me the first dimension is y and 2nd dimension is x. But I follow that instruction, ex. dim a(479, 639),
the result is wrong. dim a(639, 479) will be correct, ...
leonardtsai
- 4
- Opened on Jul 26, 2021
- #2
FLTK version pset command draws an extra pixel. To fix that, modify fltk/display.cxx as below.
void Canvas::drawPixel(int posX, int posY) {
//fl_line(posX, posY, posX+1, posY+1);
fl_point(posX, posY); ...
leonardtsai
- 1
- Opened on Jul 26, 2021
- #1

Learn how you can use GitHub Issues to plan and track your work.
Save views for sprints, backlogs, teams, or releases. Rank, sort, and filter issues to suit the occasion. The possibilities are endless.Learn more about GitHub IssuesProTip!
Restrict your search to the title by using the in:title qualifier.
Learn how you can use GitHub Issues to plan and track your work.
Save views for sprints, backlogs, teams, or releases. Rank, sort, and filter issues to suit the occasion. The possibilities are endless.Learn more about GitHub IssuesProTip!
Press the /
key to activate the search input again and adjust your query.