Search found 71 matches

by msu
Sat May 23, 2020 3:30 pm
Forum: RapaGUI
Topic: Contex Submenu - no events
Replies: 2
Views: 2179

Contex Submenu - no events

I just have the problem that context submenus do not trigger an event (Windows 10 x64). Only cut, copy and paste trigger an event. @REQUIRE "RapaGUI" GUI$=[[<application id="app"> <menu title="Test" id="test"> <item id="Cut">Cut</item> <item id="...
by msu
Thu May 21, 2020 1:37 pm
Forum: RapaGUI
Topic: TreeView and right mouse button
Replies: 8
Views: 4658

Re: TreeView and right mouse button

Okay, then I have to rethink my concept. In Windows programs, it is actually standard that when I right-click on a TreeView entry, it automatically becomes the active entry. In RapaGUI, an entry is only activated (highlighted) by clicking the right mouse button as long as the right mouse button rema...
by msu
Wed May 20, 2020 6:59 pm
Forum: RapaGUI
Topic: TreeView and right mouse button
Replies: 8
Views: 4658

Re: TreeView and right mouse button

If the event is generated it is processed before it even gets to Hollywood, I think. The edit function on listview items is a double left-click. Maybe that will work also for the tree gadget. Maybe my memory is wrong but it might be consistant with that. Yes, exactly. A double left click can be pro...
by msu
Wed May 20, 2020 4:57 pm
Forum: RapaGUI
Topic: TreeView and right mouse button
Replies: 8
Views: 4658

Re: TreeView and right mouse button

If I right-click an entry in the TreeView widget, an event is surely triggered?
Does RapaGUI send a message in this case?
by msu
Sun May 17, 2020 6:36 pm
Forum: RapaGUI
Topic: TreeView and right mouse button
Replies: 8
Views: 4658

TreeView and right mouse button

Hi,
just got a problem with the TreeView widget.
I want to activate an entry by right-clicking (right mouse button).
Is that possible?

greetings
msu
by msu
Tue Apr 14, 2020 11:06 am
Forum: Newbie questions
Topic: Using \n in strings
Replies: 5
Views: 4323

Re: Using \n in strings

Escape sequences should not be used in text files. Better use the appropriate ASCII character. Here's an example (Please adjust the file path!): CRLF = Chr(13)..Chr(10) ;Windows string$ = "This is line one"..CRLF.."This is Line two" SystemRequest("",string$, "OK&qu...
by msu
Tue Apr 14, 2020 2:20 am
Forum: Newbie questions
Topic: Using \n in strings
Replies: 5
Views: 4323

Re: Using \n in strings

Look there: https://www.hollywood-mal.com/docs/html ... tring.html

Code: Select all

string$ = "Line one\\nLine2"
DebugPrint(string$)
by msu
Tue Jun 25, 2019 11:36 pm
Forum: Announcements
Topic: Notepad++ plugin for Hollywood 8.0 now available
Replies: 4
Views: 7738

Re: Notepad++ plugin for Hollywood 8.0 now available

Hi, thanks for your feedback.
In the future, updates will appear more timely.
I automated most of it for the most part.
by msu
Tue Jun 04, 2019 5:40 pm
Forum: General programming
Topic: Problem with ReceiveData
Replies: 24
Views: 15008

Re: Problem with ReceiveData

@Clyde:
In client 1 code, replace the line "b$[c] = a$" with "InsertItem (b$, a$)".
The code runs about 56 times slower!
by msu
Tue Jun 04, 2019 3:15 pm
Forum: General programming
Topic: Problem with ReceiveData
Replies: 24
Views: 15008

Re: Problem with ReceiveData

Clyde wrote: Tue Jun 04, 2019 2:58 pm So you mean you should use a table as a data structure but don't use functions to manipulate the table in order to get the speed gain, right!?
Right, but only in terms of very large amounts of data.