Search found 127 matches
- Thursday 20th March 2025 2:28pm
- Forum: General
- Topic: png errors
- Replies: 7
- Views: 1590
Re: png errors
Glad to hear it. BTW (after a bit of actual testing this time ;) ) the minimal code is, for example: Dim thispng As Picture = Picture.FromString(HttpClient.Download("https://www.w3.org/Graphics/PNG/666.png")) PictureBox1.Picture = thispng (I had to use a publicly available web png file) b...
- Thursday 20th March 2025 1:19pm
- Forum: General
- Topic: png errors
- Replies: 7
- Views: 1590
Re: png errors
Thanks guys. I solved it. Really embarrassing but it was an ownership problem that i didn't notice.
I could have swore I checked it but I guess I didn't.

- Thursday 20th March 2025 1:23am
- Forum: General
- Topic: png errors
- Replies: 7
- Views: 1590
png errors
Hi All, I have an unusual error and wondering if anyone can help. In the simple test code below I am downloading a specific .png file from my web server. The file downloads but will not open. Error says it's not a png file. There is nothing wrong with the png on the server, I can download through we...
- Saturday 15th March 2025 8:11pm
- Forum: General
- Topic: GTK3 keyboard errors
- Replies: 6
- Views: 3948
Re: GTK3 keyboard errors
I have got arrow keys working, as Bruce suggested, using a Timer. There is no need to stop and start the Timer as using Timer1.Trigger does the job. I have condensed your code considerably. Have a look here regarding the use of Quit to end programs. slidingpanelsexperiment-CO-0.0.2.tar.gz Thanks co...
- Friday 14th March 2025 8:51pm
- Forum: General
- Topic: GTK3 keyboard errors
- Replies: 6
- Views: 3948
Re: GTK3 keyboard errors
It's because you use Wait. Wait will allow the event loop to run and you should not do that inside a key event. Solutions... Make a Timer and have the key event start the timer. Private $hTimer As Timer Public Sub _New() $hTimer = New Timer As "MyTimer" $hTimer.Delay = 0 End Public Sub Ob...
- Friday 14th March 2025 7:29pm
- Forum: General
- Topic: GTK3 keyboard errors
- Replies: 6
- Views: 3948
Re: GTK3 keyboard errors
Here's a simple experiment I've been playing with.
- Friday 14th March 2025 6:59pm
- Forum: General
- Topic: GTK3 keyboard errors
- Replies: 6
- Views: 3948
Re: GTK3 keyboard errors
I am working an example project that I'll zip and post in a bit.
- Friday 14th March 2025 6:58pm
- Forum: General
- Topic: GTK3 keyboard errors
- Replies: 6
- Views: 3948
GTK3 keyboard errors
Hi All, I asked this as a follow up question in my previous post but I figured I should start a new topic to get more eyes on it. I have a personal app where 100% of the user (me) input will be with a linux friendly remote I found on Amazon. Very similar to amazon's firestick remote. The remote cont...
- Friday 14th March 2025 6:40pm
- Forum: General
- Topic: Sliding effects
- Replies: 10
- Views: 7968
Re: Sliding effects
I'm going to start a new topic for that last question. Thanks for your help guys!
- Friday 14th March 2025 5:30pm
- Forum: General
- Topic: Sliding effects
- Replies: 10
- Views: 7968
Re: Sliding effects
I do actually have another question related to all the questions I've been asking the last few weeks including this one. I'm working on a personal project and all the user input to the app will be coming from a linux friendly remote control I found on amazon. Very similar to amazon's RC for their fi...