Search found 7908 matches

by netmaestro
Tue Oct 14, 2025 7:10 pm
Forum: Tricks 'n' Tips
Topic: Vector Curve Designer (RAD Tool)
Replies: 101
Views: 39782

Re: Vector Curve Designer (RAD Tool)

Is anyone actually using this? I ask because I'm considering a modification or two and if nobody is really using it I can skip it.
by netmaestro
Wed Apr 09, 2025 6:46 pm
Forum: Tricks 'n' Tips
Topic: Managed MessageBox 2.0
Replies: 7
Views: 1340

Managed MessageBox 2.0

I wrote this years ago and when I went to search for it on the forums it can't be found. So here it is again, a tool for customizing a messagebox with colors, images and timeout. You can choose the screen position too.

;=================================================================
; Library ...
by netmaestro
Mon Jan 27, 2025 3:31 am
Forum: Linux
Topic: How to get Mint working
Replies: 19
Views: 10054

Re: How to get Mint working

So I have a productive Linux environment now. I'll let you in on a couple of problems I ran into:

1. My bootable media wouldn't boot. It always booted to the hard disk and wouldn't boot from my usb thumbdrive. I went into BIOS and chose "USB Key" as the first boot, no luck. "USB Floppy" didn't work ...
by netmaestro
Sat Jan 25, 2025 9:16 pm
Forum: Linux
Topic: How to get Mint working
Replies: 19
Views: 10054

Re: How to get Mint working

Still playing with it, I'd like to get something that just installs without tweaks. I'm dropping Cinnamon and trying XFCE.
by netmaestro
Sat Jan 25, 2025 8:54 pm
Forum: Linux
Topic: How to get Mint working
Replies: 19
Views: 10054

Re: How to get Mint working

I eventually found the solution. The OS doesn't have the right driver for my 31" Samsung monitor and so it refused to create a desktop on it. The fix was to edit the grub menu and change "quiet splash" to "quiet splash nomodeset". Now I have a good working gui and a couple of apps working and I'm ...
by netmaestro
Fri Jan 24, 2025 11:18 pm
Forum: Linux
Topic: How to get Mint working
Replies: 19
Views: 10054

Re: How to get Mint working

It seems to work fine if I boot from the usb key and select compatibility mode. But if I install mint it doesn't use the compatibility mode and nothing shows on my desktop.
by netmaestro
Fri Jan 24, 2025 10:31 pm
Forum: Linux
Topic: How to get Mint working
Replies: 19
Views: 10054

Re: How to get Mint working

It's looking a bit better now. I had to boot Mint into compatibility mode and all looks much better.
by netmaestro
Fri Jan 24, 2025 9:54 pm
Forum: Linux
Topic: How to get Mint working
Replies: 19
Views: 10054

How to get Mint working

I installed Mint but all I get is a splash screen and no apps or anything. How do I find apps and get them installed in Mint? How do I get to a gui? I selected the Cinnamon desktop but I don't really get a desktop. Any suggestions would be welcome as I've never used Linux before.
by netmaestro
Sat Dec 14, 2024 10:56 pm
Forum: Announcement
Topic: PureBasic 6.20 is out !
Replies: 148
Views: 93367

Re: PureBasic 6.20 beta 1 is out !

"
Fred wrote:Added: PureLibrary creation in PureBasic (C Backend only) !
"

YIPPEEE!! Been waiting 20 years for this!
by netmaestro
Sun Nov 03, 2024 12:07 am
Forum: Coding Questions
Topic: Draw to screen without StartDrawing(ScreenOutput())
Replies: 13
Views: 2005

Re: Draw to screen without StartDrawing(ScreenOutput())

Sprites are much faster. There is no scenario where what you want drawn can't be drawn to a sprite first and then displayed. Maximum speed.
by netmaestro
Tue Aug 20, 2024 11:48 am
Forum: Coding Questions
Topic: how to show sub-window in a Thread ?
Replies: 5
Views: 1908

Re: how to show sub-window in a Thread ?

"Purebasic Doc" wrote:Important: A window should not be opened in a thread, as there is some limitation on OS X and Linux. A debugger error will be raised.
by netmaestro
Wed Jul 10, 2024 4:02 pm
Forum: Coding Questions
Topic: Checking for Unique Elements in a List()
Replies: 9
Views: 2209

Re: Checking for Unique Elements in a List()

You could use an index for the list that would consist of a Map() that would contain all current row IDs and nothing else.
NewMap keys.i()

x = 1
keys(Str(x)) = 0 ; Do this before adding the element to the list

If FindMapElement(keys(), Str(x))
Debug "Key "+Str(x) +" exists"
Else
Debug "Key ...
by netmaestro
Tue Jul 02, 2024 6:35 pm
Forum: Coding Questions
Topic: Retrieve text from StringGadget that is inside ContainerGadget
Replies: 19
Views: 3814

Re: Retrieve text from StringGadget that is inside ContainerGadget

The problem as stated cannot be solved. There are just too many reasons this would happen. Try to put together a snippet where it's happening and post that.
by netmaestro
Mon Jul 01, 2024 9:18 pm
Forum: Coding Questions
Topic: Vector drawing clear image to transparent
Replies: 5
Views: 2057

Re: Vector drawing clear image to transparent

Nothing to it. Just recreate the image as transparent:

Declare ButtonHandler_1()

CreateImage(0,320,240,32,#PB_Image_Transparent)
StartVectorDrawing(ImageVectorOutput(0))
VectorSourceColor(RGBA(0,0,255,255))
FillVectorOutput()
StopVectorDrawing()

OpenWindow(0,0,0,320,270,"",#PB_Window ...
by netmaestro
Sat Jun 01, 2024 8:37 pm
Forum: Coding Questions
Topic: Using Alphablend
Replies: 7
Views: 2104

Re: Using Alphablend

#width=1000
#height=1000
alp=1

OpenWindow(0,100,0,#width,#height,"Window")
CreateImage(0,#width,#height)
ImageGadget(0,0,0,#width,#height,ImageID(0))

SetGadgetState(0,ImageID(0))
AddWindowTimer(0,1,40)

Repeat
Event = WaitWindowEvent()
Select Event
Case #PB_Event_Timer
alp+1
If alp>=255 ...