Search found 1546 matches

by BruceSteers
Friday 5th April 2024 10:31am
Forum: Beginners
Topic: Media Player
Replies: 7
Views: 344

Re: Media Player

Just a note.

I have problems with MediaView when loading a new URL without calling MediaView.Stop first.

So i always Stop the player before loading something else.
by BruceSteers
Friday 5th April 2024 10:28am
Forum: Component
Topic: mediaview help
Replies: 5
Views: 3949

Re: mediaview help

I think that the original (solved) problem was the file:// prefix had not been used for the URL.
I had to look at a german version and it was a simple issue with the url command. Thanks. once again I am thinking too complex.
Then the dreaded "Cannot set status" was another issue
by BruceSteers
Friday 5th April 2024 10:24am
Forum: Beginners
Topic: Media Player
Replies: 7
Views: 344

Re: Media Player

hmm, not sure, according to the web it is a "Container format" so i guess it's contents can vary possibly a missing codec? , i think it also supports drm. Quote from wikipedia... Video: MPEG-H Part 2 (H.265/HEVC), MPEG-4 Part 10 (H.264/AVC) and MPEG-4 Part 2 Other compression formats are l...
by BruceSteers
Friday 5th April 2024 7:37am
Forum: General
Topic: [Sloved] Help with getting a image to fit onto a button
Replies: 12
Views: 2135

Re: Help with getting a image to fit onto a button

Public Sub Form_Open() ' make Button1.Picture a picture with text below it. MakePictureText(Button1, Picture["icon:/32/alarm"], "Alarm call") End '' Make a picture with text below it. can be used on any object that has a .Text and a .Picture property. Public Sub MakePictureText(...
by BruceSteers
Wednesday 3rd April 2024 8:13pm
Forum: Project showcase
Topic: Blockski+ , like Klotski but with a board editor.
Replies: 45
Views: 8173

Re: Blockski+ , like Klotski but with a board editor.

Right then ,, this program coding is now winding down to a finish i think. I found a few issues that were mostly related to blocks going outside the board area causing errors. So now you cannot move blocks outside the board and you cannot create or paste blocks outside the board (they will be automa...
by BruceSteers
Wednesday 3rd April 2024 3:42pm
Forum: General
Topic: [Solved] Get the Previous Sunday from a Date
Replies: 25
Views: 1711

Re: [Solved - sort of] Get the Previous Sunday from a Date

I read the original post as wanting the sunday of the last full week to print the last week activity report. as I need to get the Sunday to Monday dates for a report that run for the previous week (no matter what day the report would be run this week it would always report back the previous Monday ...
by BruceSteers
Tuesday 2nd April 2024 2:10pm
Forum: General
Topic: Problem with menu in gridview
Replies: 14
Views: 715

Re: Problem with menu in gridview

My centre button returns mouse.button=3 and Right click gives Mouse.Right=True. Be careful using Mouse.Left and Mouse.Right though Bill as they are more like button "down" registers than button "click". Ie , if you press left button while right button is also held down then Mous...
by BruceSteers
Tuesday 2nd April 2024 11:57am
Forum: General
Topic: Problem with menu in gridview
Replies: 14
Views: 715

Re: Problem with menu in gridview

Is it the same for Mouse.State? Dang it, now i need a 2 button mouse to test with. And I gotta think of a workaround now :-\ Best i can think of is this,, Note the Mouse.Button value on MouseDown and then use the _Menu() event to set it. But the _Menu event needs to fire before it's known. Private $...
by BruceSteers
Tuesday 2nd April 2024 9:52am
Forum: General
Topic: Problem with menu in gridview
Replies: 14
Views: 715

Re: Problem with menu in gridview

bill-lancaster wrote: Tuesday 2nd April 2024 7:23am Thanks Bruce,
My right button gives mouse.button = 2!
Hmm , thanks for letting me know, it means some of my software is not coded right as i assume right mouse to be Button 3 ! :-\

Something to be aware of i guess if we want portability between machines.