Search found 472 matches

by plouf
Thu Feb 01, 2024 11:22 am
Forum: RapaGUI
Topic: Updating listviews...
Replies: 25
Views: 2540

Re: Updating listviews...

CheckEvents() do not block
While WaitEvent() block
by plouf
Wed Jan 31, 2024 4:48 pm
Forum: Windows IDE
Topic: Minor Bug: Copy-Paste Paste failing on Windows 10 and 11
Replies: 6
Views: 1209

Re: Minor Bug: Copy-Paste Paste failing on Windows 10 and 11

you mean use mouse and make a selection, that turn selected letteres to blue , then right click on top of blue and select copy ?

because this works here
hw 64bit win11
by plouf
Tue Jan 30, 2024 1:48 pm
Forum: Newbie questions
Topic: How do I draw a curve?
Replies: 3
Views: 654

Re: How do I draw a curve?

hm Arc() design also the pie, my mistake
guess only option is VectorLibrary ...

example

Code: Select all

StartPath(1)
CurveTo(1,0,0,100,100,10,100)
DrawPath(1,100,100,#BLUE)


Repeat
	WaitEvent()
Forever
by plouf
Tue Jan 30, 2024 12:13 pm
Forum: Newbie questions
Topic: How do I draw a curve?
Replies: 3
Views: 654

Re: How do I draw a curve?

Arc()

also Vectorlibrary may help you has a lot
by plouf
Fri Jan 26, 2024 2:43 pm
Forum: RapaGUI
Topic: Treeview and XML
Replies: 18
Views: 2040

Re: Treeview and XML

XML plugin is there to help you read XML files and save them back, has nothing to do with treeview or any RapaGUI, data you import from XML are there for your code to do it manually Yes, but how to edit data in a treeview please? its editable , not editable nodes it's "editable" for colum...
by plouf
Fri Jan 26, 2024 2:00 pm
Forum: RapaGUI
Topic: Treeview and XML
Replies: 18
Views: 2040

Re: Treeview and XML

i read documentation of XML plugin but unfortunnaly i understand how to edit a value in a treeview... XML plugin is there to help you read XML files and save them back, has nothing to do with treeview or any RapaGUI, data you import from XML are there for your code to do it manually My colums are e...
by plouf
Thu Jan 25, 2024 9:37 am
Forum: RapaGUI
Topic: Updating listviews...
Replies: 25
Views: 2540

Re: Updating listviews...

Thats the point of comenting out
With commented out wait is the video

I see with or without wait filling
by plouf
Wed Jan 24, 2024 8:56 pm
Forum: RapaGUI
Topic: Updating listviews...
Replies: 25
Views: 2540

Re: Updating listviews...

When you push [GO] the callback function will add several lines to the Listview but they are displayed only at the end of the loop, I've added the "redraw" method to try to force a refresh but without success... I'd like to use a listview as a log box (like in the official demo), but this...
by plouf
Wed Jan 24, 2024 12:23 pm
Forum: RapaGUI
Topic: Updating listviews...
Replies: 25
Views: 2540

Re: Updating listviews...

Have a CheckEvent() in your loop ?

Examples would help
by plouf
Tue Jan 23, 2024 11:01 pm
Forum: Hollywood bugs
Topic: OpenSerial Fail in android hollywood 10
Replies: 1
Views: 768

OpenSerial Fail in android hollywood 10

REPRODUCIBILITY: 100% OSVERSION: Android 13 HOLLYWOOD: 10.0 even trying the simplest possible OpenSerialPort(1, "COM1") WriteSerialData(1, "Hello World!") CloseSerialPort(1) error message pops up saying "cannot open serial port com1" TEST i done 1)under windows11 offcou...