Search found 2 matches

by galah
Tue Oct 23, 2018 8:25 am
Forum: Bugs - IDE
Topic: [Done] Compare files line numbering truncated to 1 digit
Replies: 3
Views: 2550

[Done] Compare files line numbering truncated to 1 digit

When using Tools>CompareFiles/Folders the line numbers are restricted to 1 digit, only the Most Significant Digit is displayed right justified.
So lines 1 to 9 display correctly as
1
2
3
4
5
6
7
8
9 but then
lines 10 to 19 display as
1 instead of 10
1 instead of 11
.................same ...
by galah
Tue Sep 14, 2010 9:39 pm
Forum: Coding Questions
Topic: How to draw lines of a specific width and format
Replies: 20
Views: 5709

Re: How to draw lines of a specific width and format

Would like to have a simple native LineXY routine for PB which allows drawing thicker lines (width=2 at least)...

My quick and dirty code is not only slow but would fail when drawing very thick short lines (see below):



I am a beginner to Purebasic, just converting to Purebasic from 3 other ...