Search found 20 matches

by fjudde
Sat Sep 24, 2016 6:51 pm
Forum: Tutorials
Topic: Simple breakout in Hollywood
Replies: 6
Views: 13714

Re: Simple breakout in Hollywood

ArtBlink wrote:Hello,

I post this small code, good fun...
Can't get it to run? Is all the code attached? seems something is missing?
:?:
by fjudde
Thu Sep 22, 2016 9:00 pm
Forum: Newbie questions
Topic: GetSystemLanguage under Windows
Replies: 1
Views: 3146

Re: GetSystemLanguage under Windows

The list is a list of constants that you should use in the code. Try DebugPrint(#LANGUAGE_SPANISH) to figure out the value of the constant #LANGUAGE_SPANISH you will se it's 5 as you got. so compare the return value with a constant, e.g. #LANGUAGE_SPANISH, to figure out if you got Spanish language.
by fjudde
Mon Jun 27, 2016 2:54 pm
Forum: RapaGUI
Topic: RapaGui Win32 chm - Help
Replies: 16
Views: 17700

Re: RapaGui Win32 chm - Help

Downloaded RapaGui today and tried the .chm-file, did not work, looked in the event logs and I reported: The description for Event ID 1 from source ITSS cannot be found. Either the component that raises this event is not installed on your local computer or the installation is corrupted. You can inst...
by fjudde
Mon May 16, 2016 9:50 pm
Forum: Announcements
Topic: RapaGUI 1.0 - introducing the killer plugin!
Replies: 22
Views: 50992

Re: RapaGUI 1.0 - introducing the killer plugin!

This is really good news!!! Thank you Andreas.
by fjudde
Sun May 15, 2016 9:00 pm
Forum: Newbie questions
Topic: recover what I draw
Replies: 7
Views: 8225

Re: recover what I draw

Did copy and past code I posted in a new file and run it standalone?
Should have been:
Did you copy and past the code I posted in a new file and ran it standalone?
by fjudde
Sun May 15, 2016 4:20 pm
Forum: Newbie questions
Topic: recover what I draw
Replies: 7
Views: 8225

Re: recover what I draw

Fjudde thank you but I do not see what I draw :-/ Strange? I do see what I draw! Did copy and past code I posted in a new file and run it standalone? What wersion do you have (I have 6.1) and IDE (I have Windows IDE)? The lines are beeing drawn twice. First to the brush and then to the display. The...
by fjudde
Sat May 14, 2016 11:17 pm
Forum: Newbie questions
Topic: recover what I draw
Replies: 7
Views: 8225

Re: recover what I draw

I don't know what Andreas meant with "back buffer brush" but I also would like some small example of that. I have been playing with your code and managed to draw the same line() to a brush and the display. When clearing the display the drawing is still in the brush. And can be displayed ag...
by fjudde
Sun May 08, 2016 4:46 pm
Forum: Newbie questions
Topic: Open and Close a window
Replies: 10
Views: 11592

Re: Open and Close a window

I might be wrong but I think you have to install a handler for every window you open. Every handler can point to same function using a switch to distinguish between window id's Function p_Sobre() CreateDisplay(2,{Width = 480, Height = 230, Active = True}) OpenDisplay(2) NPrint("text") Inst...
by fjudde
Sat May 07, 2016 12:31 pm
Forum: Newbie questions
Topic: ExitOnError() description
Replies: 9
Views: 9497

Re: ExitOnError() description

I have been experimenting a little with the plugin SQLlite3 (I have windows IDE, so no MUI royale) and kind of get similar behavior as you do. To me (Maybe on thin ice) it looks like Hollywood and SQLlite3 are not compatible. It doesn’t matter whether I include the ExitOnError functions or not the c...
by fjudde
Wed May 04, 2016 12:15 pm
Forum: Newbie questions
Topic: ExitOnError() description
Replies: 9
Views: 9497

Re: ExitOnError() description

Ok, maybe I misunderstood just a little bit. You can conditionally check the error code after the call to ExitOnError(True), since your function keeps executing.