Search found 71 matches

by RNBW
Sun Jun 15, 2025 7:42 pm
Forum: Off Topic
Topic: Good Freeware Stuff
Replies: 668
Views: 677321

Re: Good Freeware Stuff


Convert Win32.hlp files to .chm format for free. I just discovered this little gem and wanted to share even though I don't know yet how good it is - It's free so it rates good in that respect. Review and download here: https://www.helpndoc.com/download/
...............


I can appreciate you ...
by RNBW
Sun Jun 15, 2025 7:30 pm
Forum: Off Topic
Topic: Good Freeware Stuff
Replies: 668
Views: 677321

Re: Good Freeware Stuff




2: It came up blank when I went into the Win32 tool selection and searched for SendMessage, so bottom line is this is not very useful, BUT thanks for the effort. :)


I've just tried to find SendMessage and it came up with the SendMessage specification. Tried random others and they also come ...
by RNBW
Sun Jun 15, 2025 12:09 pm
Forum: Off Topic
Topic: Good Freeware Stuff
Replies: 668
Views: 677321

Re: Good Freeware Stuff


Convert Win32.hlp files to .chm format for free. I just discovered this little gem and wanted to share even though I don't know yet how good it is - It's free so it rates good in that respect. Review and download here: https://www.helpndoc.com/download/
The reason I went searching for such a tool ...
by RNBW
Tue Apr 22, 2025 3:14 pm
Forum: Coding Questions
Topic: GridGadget
Replies: 8
Views: 1094

Re: GridGadget

A very interesting way to develop a Grid.

What would be really useful would be if there was also a way of adding rows independent of an increased number of columns. There does not appear to be a AddGadgetRow() to complement AddGadgetColumn().

I've answered my own question. REM out the ...
by RNBW
Thu Apr 03, 2025 11:09 pm
Forum: Coding Questions
Topic: Resizing rows and columns in a grid.
Replies: 3
Views: 257

Re: Resizing rows and columns in a grid.

I was thinking of a grid comprised of StringGadgets, but I'm not sure if this will work, I.e. allowing resizing by dragging borders.
by RNBW
Thu Apr 03, 2025 7:29 pm
Forum: Coding Questions
Topic: Resizing rows and columns in a grid.
Replies: 3
Views: 257

Resizing rows and columns in a grid.

How do I go about resizing the size of rows and columns in say a 4 col x 3 row grid by dragging the cell borders?
by RNBW
Tue Jan 03, 2023 2:03 pm
Forum: Applications - Feedback and Discussion
Topic: PBEdit - a Canvas-based Texteditor
Replies: 103
Views: 42235

Re: PBEdit - a Canvas-based Texteditor

ChrisR
Thank you for your help. I've tried both methods, placing the code at the head of the program, but I couldn't get either to work.

I guess I'll stick with either your designer or the Purebasic editor for the present.
by RNBW
Mon Jan 02, 2023 6:43 pm
Forum: Applications - Feedback and Discussion
Topic: PBEdit - a Canvas-based Texteditor
Replies: 103
Views: 42235

Re: PBEdit - a Canvas-based Texteditor


Temporarily, version 1.10 is available here

I don't remember the troubles I had with latest version but probably better to try with it and report any bugs found.
For Mr.L, to continue to improve this wonderful tool 8)

You have just read my mind and I was going to ask for a link. I have ...
by RNBW
Mon Jan 02, 2023 6:16 pm
Forum: Applications - Feedback and Discussion
Topic: PBEdit - a Canvas-based Texteditor
Replies: 103
Views: 42235

Re: PBEdit - a Canvas-based Texteditor


ToolBarStandardButton() is obsolete now since v6.0, the toolbar was ugly in high resolution after adding DPI support.
Replace them by using ToolBarImageButton()
However, ToolBarStandardButton() is still in the help without any explanation.

Personally I use version 1.10 and I like it. I have some ...
by RNBW
Mon Jan 02, 2023 4:17 pm
Forum: Applications - Feedback and Discussion
Topic: PBEdit - a Canvas-based Texteditor
Replies: 103
Views: 42235

Re: PBEdit - a Canvas-based Texteditor

Unfortunately, I get an error "Line 11372 ToolBarStandardButton() is not a function, array, list, map or macro".

I am using Purebasic 6.00 LTS(x64) and Windows 11.
by RNBW
Fri Jan 22, 2021 12:40 am
Forum: Coding Questions
Topic: Gadget Arrays
Replies: 8
Views: 1750

Re: Gadget Arrays

The following code produces a grid of StringGadgets:

;produces a multiple column of Stringgadgets

#WindowWidth = 840
#WindowHeight = 350
#gWidth = 100
#gHeight = 25

noRows.i = Val(InputRequester("", "How many rows do you want (2-8)?", ""))
noCols.i = Val(InputRequester("", "How many columns do ...
by RNBW
Wed Aug 05, 2020 10:07 am
Forum: Coding Questions
Topic: Access data from Google Calendar
Replies: 2
Views: 1021

Re: Access data from Google Calendar

cas wrote:It is possible, start here: https://developers.google.com/calendar/overview
Cas

Thank you very much for the link. I'll see if I can find anything there that will enable me to use it with Purebasic.
by RNBW
Tue Aug 04, 2020 4:03 pm
Forum: Coding Questions
Topic: Access data from Google Calendar
Replies: 2
Views: 1021

Access data from Google Calendar

Does anyone know how to obtain data from Google Calendar using Purebasic? Is it even possible?
by RNBW
Sun Jul 19, 2020 8:00 pm
Forum: Coding Questions
Topic: How is PureBasic Help coded?
Replies: 7
Views: 2265

Re: How is PureBasic Help coded?

I have been using HelpNDoc for some time. A free download is available - it just includes a single line advert. The Standard Edition, if you want to buy is 99Euros, but to try out the free version is fine. It's very easy to use and you can import a .chm file.

It outputs to many different formats ...
by RNBW
Thu Apr 09, 2020 12:11 pm
Forum: Coding Questions
Topic: Str() and ValD() CONVERSIONS
Replies: 2
Views: 1070

Re: Str() and ValD() CONVERSIONS

Infratec: Thanks for the very quick response.

It's the little things that you miss and feel so stupid when you ask the question. I can get over my headache now.