Search found 99 matches

by Redlion
Sun May 05, 2024 1:40 pm
Forum: Hollywood bugs
Topic: Treeview GetEntry "Parent" not working as expected OS4
Replies: 1
Views: 679

Treeview GetEntry "Parent" not working as expected OS4

Hi, This works as expected in Windows but not in OS4. I am trying to get the name of the Parent of the selected node. @REQUIRE "RapaGUI" moai.CreateApp([[ <?xml version="1.0" encoding="iso-8859-1"?> <application> <window title="Test" id="main" notify...
by Redlion
Sun May 05, 2024 1:22 pm
Forum: RapaGUI
Topic: Problem with Treeview and GetEntry Parent
Replies: 3
Views: 631

Re: Problem with Treeview and GetEntry Parent

@ plouf

Thanks for looking at this for me, this has turned into a Bug Report, It works as expected in Windows but not in OS4.

Cheers
Leo
by Redlion
Sun May 05, 2024 10:46 am
Forum: RapaGUI
Topic: Problem with Treeview and GetEntry Parent
Replies: 3
Views: 631

Problem with Treeview and GetEntry Parent

Hi, I am trying to get the the parent of the node that is "Active" but I get two levels up. Here is my simple code to show the issue. @REQUIRE "RapaGUI" moai.CreateApp([[ <?xml version="1.0" encoding="iso-8859-1"?> <application> <window title="Test" ...
by Redlion
Mon Apr 01, 2024 10:24 am
Forum: RapaGUI
Topic: Is there a way to process inputs during a dialog?
Replies: 8
Views: 547

Re: Is there a way to process inputs during a dialog?

HI, I had this problem before, took me a while to find the code. I'm sure there is a better way but this worked for me. Best to load your postcode data from a file, so its easier to update/change. /*** Make sure we have at least Hollywood 9.0! ****************************************************/ @V...
by Redlion
Fri Mar 29, 2024 12:18 pm
Forum: RapaGUI
Topic: How do I pre populate the Poppath Gadget
Replies: 1
Views: 219

How do I pre populate the Poppath Gadget

Hi, Just trying to get the Poppath gadget working in RapaGUI (OS4), I would like to have the PopPath gadget show the current directory when it first comes up. When you click the browse button to the side then select a directory and press OK, it will only show the directory you selected and not the w...
by Redlion
Sat Mar 23, 2024 4:13 am
Forum: RapaGUI
Topic: Pick date
Replies: 3
Views: 324

Re: Pick date

@ all, Here is a date selection program I did last year ( This is the proof of concept version - the full version has a few more features but is inbedded in a large project and is hard to extract) Hope you find it helpful. /*** Make sure we have at least Hollywood 9.0!*/ @VERSION 9,0 /*** Enable DPI...
by Redlion
Sat Sep 23, 2023 1:24 pm
Forum: Hollywood bugs
Topic: RndStrong() causes DOS Error
Replies: 6
Views: 4654

Re: RndStrong() causes DOS Error

@ airsoftsoftwair

I have had a look and there is a L:random-handler size:8580, dated 23-Nov-14 Ver52.1(10-12-2006)
I think that is the original install version.

RNDStrong() did work with Hollywood 7

Using just RND() for the moment.
Cheers
Leo
by Redlion
Sat Sep 16, 2023 2:07 am
Forum: Hollywood bugs
Topic: RndStrong() causes DOS Error
Replies: 6
Views: 4654

Re: RndStrong() causes DOS Error

@ airsoftsoftwair Its a standard AmigaOS 4.1 with update 2 and the free Enhancher software Core Edition 1.1 . Normal RND() works, just not RNDStrong() It used to work when I first installed Hollywood 9.1, even the compiled version crashes with the same error. I have checked there are no assigns of d...
by Redlion
Wed Sep 06, 2023 2:39 pm
Forum: Hollywood bugs
Topic: RndStrong() causes DOS Error
Replies: 6
Views: 4654

RndStrong() causes DOS Error

Hello, I have been doing some programming with random numbers and have been using result = RndStrong(#Integer, 8) I get an Amiga Dos Error Please insert Volume RANDOM: in any drive Process: XXX "Hollywood" If I press Cancel, I get a Hollywood Error Error generating Random Number File: HWTe...
by Redlion
Fri Mar 24, 2023 7:46 am
Forum: General programming
Topic: How to display progress of a for-next loop
Replies: 8
Views: 2735

Re: How to display progress of a for-next loop

@ amyren I had a few issue getting the progress bar to work in a dialog window, so I just did it at the bottom of the screen. in your xml code <progressbar id="progress"/> moai.Set("progress", "Max", Record -1) db = sqlite3.open(DB$) For r = 1 To Record db:exec("UP...