Search found 95 matches

by Redlion
Fri Mar 29, 2024 12:18 pm
Forum: RapaGUI
Topic: How do I pre populate the Poppath Gadget
Replies: 0
Views: 8

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: 124

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: 3364

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: 3364

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: 3364

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: 1976

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...
by Redlion
Mon Mar 20, 2023 12:44 am
Forum: RapaGUI
Topic: how do I Dynamicaly adding textboxes
Replies: 7
Views: 2209

Re: how do I Dynamicaly adding textboxes

@ airsoftsoftwair

Thanks for looking into to it for me, I was not sure I was doing something stupid and could not see it.

Thanks
Leo
by Redlion
Thu Mar 16, 2023 2:01 am
Forum: RapaGUI
Topic: how do I Dynamicaly adding textboxes
Replies: 7
Views: 2209

Re: how do I Dynamicaly adding textboxes

Hi plouf, I think you have missed the point, I am not wanting to use a Listview on the second page I want to use Text and textentry. I want to be able to display a record on the second page and able to see all the info from all columns at once. The number of text and textentry objects are determined...
by Redlion
Wed Mar 15, 2023 3:27 pm
Forum: RapaGUI
Topic: how do I Dynamicaly adding textboxes
Replies: 7
Views: 2209

Re: how do I Dynamicaly adding textboxes

Hi , Oops, line 39 was a cut and paste error, trying to get the minimal amount of code that shows the problem. if you change line 38 to, For t = 0 To 45 The text objects are displayed as expected, if i go below 45 it does not display properly only one text object is displayed and I have to adjust th...
by Redlion
Tue Mar 14, 2023 8:18 am
Forum: RapaGUI
Topic: how do I Dynamicaly adding textboxes
Replies: 7
Views: 2209

how do I Dynamicaly adding textboxes

HI All, I am trying to write a program to maintain several SQLite3 databases, I have come across an issue that i can not solve. /*** This script requires the RapaGUI plugin*/ @REQUIRE "RapaGUI" /*** Setup GUI *********************************************************************************...