Search found 217 matches

by papiosaur
Thu May 22, 2025 8:50 am
Forum: RapaGUI
Topic: Problem to save position of splitters in MUI Prefs
Replies: 3
Views: 322

Re: Problem to save position of splitters in MUI Prefs

MUI5 on MorphOS

I have deleted MUI Prefs file but don't work unfortunally.
by papiosaur
Wed May 21, 2025 8:23 pm
Forum: RapaGUI
Topic: Problem to save position of splitters in MUI Prefs
Replies: 3
Views: 322

Problem to save position of splitters in MUI Prefs

Hello,

i select new position for splitters in my new app then save MUI Prefs but their position are not saved.

Not supported?

Thanks
by papiosaur
Wed May 07, 2025 8:59 pm
Forum: RapaGUI
Topic: Problem to list files in a listview
Replies: 2
Views: 210

Re: Problem to list files in a listview

Thanks a lot plouf!

It work with sortable="true" option

Thanks for the example for function to sort a column too :-)
by papiosaur
Wed May 07, 2025 7:18 pm
Forum: RapaGUI
Topic: Problem to list files in a listview
Replies: 2
Views: 210

Problem to list files in a listview

Hello, i have a problem with this code to list files in a listview: OpenDirectory(1, Dir$) e = NextDirectoryEntry(1) While e <> Nil If e.type = #DOSTYPE_FILE moai.DoMethod("lv1", "Insert", "Top", e.name) EndIf e = NextDirectoryEntry(1) Wend CloseDirectory(1) All files a...
by papiosaur
Wed Oct 02, 2024 3:40 pm
Forum: RapaGUI
Topic: Problem with poppath
Replies: 3
Views: 16980

Re: Problem with poppath

Ha ouf!!!

i think there was a problem with RapaGui.

Thanks a lot jPV!!!
by papiosaur
Mon Sep 30, 2024 4:43 pm
Forum: RapaGUI
Topic: Problem with poppath
Replies: 3
Views: 16980

Re: Problem with poppath

Ok i have found the problem i would like delete the path in the poppath after have added the drawer in the lister with this command: moai.set("path0", "path", "") path0 is the id of the poppath but in fact it create a new blank entry in the lister after the first entry ...
by papiosaur
Mon Sep 30, 2024 2:33 pm
Forum: RapaGUI
Topic: Problem with poppath
Replies: 3
Views: 16980

Problem with poppath

Hello, i've a problem with poppath... i would like to select a drawer and add it in a lister. The problem in the poppath i can select a drawer entry AND a file entry... (under MorphOS) When i add the drawer in the lister i have 2 entries... first for drawer and a second (blank) for the file not sele...
by papiosaur
Mon Sep 30, 2024 12:06 pm
Forum: RapaGUI
Topic: Problem with lines feed into a texteditor box
Replies: 8
Views: 19385

Re: Problem with lines feed into a texteditor box

Thanks a lot Flinx!!!!!

Work better ;-)
by papiosaur
Mon Sep 30, 2024 10:14 am
Forum: RapaGUI
Topic: Problem with lines feed into a texteditor box
Replies: 8
Views: 19385

Re: Problem with lines feed into a texteditor box

This my part of code: text$ = filetostring("ram:ball.cpp") n = countstr(text$, Chr(13) .. Chr(10), True, 0, #ENCODING_RAW) consoleprint(n) pos = 0 posi$ = 1 For i = 0 to n pos = findstr(text$, Chr(13) .. Chr(10), True, pos, #ENCODING_RAW) consoleprint(posi$ .. ". " ..pos) replace...