Search found 627 matches

by lazi
Wed Jan 30, 2013 10:21 pm
Forum: Hollywood bugs
Topic: filerequest missing feature?
Replies: 1
Views: 3289

filerequest missing feature?

Hi!

With the new "platform independent" pattern matching I am a bit confused. How can I filter .info files out of the filerequest's list?
~(#?.info) doesn't work because a #? is always preceeds anything from the pattern input.
by lazi
Tue Jan 15, 2013 1:59 pm
Forum: Hollywood bugs
Topic: @APPVERSION
Replies: 6
Views: 7886

Re: @APPVERSION

Posted the case on the Hyperion forum. Let us see what happens :)

Anyway checked my old 3.1 system and found a v44.4 version command which works correctly on OS4. Don't know yet where you can find that however aminet holds some version replacements.
by lazi
Sun Jan 13, 2013 9:34 am
Forum: General programming
Topic: OpenURL() function under Windows
Replies: 9
Views: 8774

Re: OpenURL() function under Windows

Unfortunately no. I don't use regularly windows, so can't help currently.
by lazi
Tue Jan 08, 2013 10:59 pm
Forum: General programming
Topic: OpenURL() function under Windows
Replies: 9
Views: 8774

Re: OpenURL() function under Windows

It seems that it isn't so trusty. Sometimes just don't work, but after a reboot it works again.
Can't see how I could be more helpful :)

(Of course changed to http:// style)
by lazi
Fri Jan 04, 2013 9:55 pm
Forum: Showcase
Topic: ShowGeo is a MUI Royale showcase
Replies: 2
Views: 5105

Re: ShowGeo is a MUI Royale showcase

Thanks. It is a pleasure with such a great tool :D
by lazi
Fri Jan 04, 2013 1:58 pm
Forum: MUI Royale
Topic: classic machine without rtg
Replies: 1
Views: 3725

classic machine without rtg

I can't easily test, so I ask it:

Is it possible to run clean MUI Royale application without RTG system?
by lazi
Wed Jan 02, 2013 11:00 pm
Forum: MUI Royale
Topic: Really fast gui development.
Replies: 2
Views: 4805

Really fast gui development.

To prove that how effective MUI Royale, shortly after it launched I made a simple 3D object viewer with nice MUI gui. You will find it on OS4Depot an on Aminet. The source is here if you want look a really nasty source :) ;3d Primer ;filled konvex polygon drawing ; ;To do: ;- add size detection and ...
by lazi
Wed Jan 02, 2013 10:52 pm
Forum: Showcase
Topic: ShowGeo is a MUI Royale showcase
Replies: 2
Views: 5105

ShowGeo is a MUI Royale showcase

Hi!

Just uploded to OS4Depot and to Aminet a simple 3D object viewer which has a nice MUI gui thanks to MUI Royale.

Have fun!
by lazi
Sat Dec 15, 2012 12:07 am
Forum: General plugin questions
Topic: Sqlite custom collating sequence
Replies: 4
Views: 7365

Re: Sqlite custom collating sequence

Here is the solution for the custon collation: ;-------------------------------- ;-- Hungarian Custom collation -- ;-------------------------------- @REQUIRE "sqlite3" Function collate(s1,s2) s1=LowerStr(s1) s2=LowerStr(s2) s1=ReplaceStr(s1,"a","aa") s1=ReplaceStr(s1,&q...
by lazi
Sat Dec 15, 2012 12:06 am
Forum: General plugin questions
Topic: Sqlite custom collating sequence
Replies: 4
Views: 7365

Re: Sqlite custom collating sequence

Andreas wrote:I don't really know anything about SQLite. I just did the port :)
This is what I feared ;)