Search found 262 matches

by vuott
Wednesday 10th May 2023 6:43am
Forum: General
Topic: httpClient help
Replies: 2
Views: 623

Re: httpClient help

AndyGable wrote: Tuesday 9th May 2023 11:35pmbut when I add them to the .Head function I get a error saying

Wanted String but got pointer instead

when I type .Head( the box underneath comes up and says "Headers as string[]])
If you simply send the variable of type array:
......
 .Head(HeaddersArray)
......

what happens ?
by vuott
Thursday 27th April 2023 12:07am
Forum: Beginners
Topic: Foreground Fileview [SOLVED]
Replies: 13
Views: 2630

Re: Foreground Fileview

Ah, right !
ok.
by vuott
Wednesday 26th April 2023 8:11pm
Forum: Beginners
Topic: Foreground Fileview [SOLVED]
Replies: 13
Views: 2630

Re: Foreground Fileview

No files appear in the FileView Control.
Why ?
by vuott
Wednesday 26th April 2023 4:44am
Forum: Beginners
Topic: Foreground Fileview [SOLVED]
Replies: 13
Views: 2630

Re: Foreground Fileview

BruceSteers wrote: Wednesday 26th April 2023 12:11amFileView uses an IconView to show it's contents so you can access it like this...

' get the IconView  control inside the FileView
  Dim p As Panel = FileView1.Children[0]
  Dim IView As IconView = p.Children[0]
Bravo ! 👍
by vuott
Tuesday 25th April 2023 11:40am
Forum: General
Topic: External C-Libary and Events
Replies: 7
Views: 9702

Re: External C-Libary and Events

But do you have previous experience of interfacing some other c library with events? Usually Events in C programs are handled with loops or "callbacks" calls. For handling "callback" calls, using external resources in Gambas, you can have a look at this section "Function Ca...
by vuott
Tuesday 25th April 2023 10:48am
Forum: General
Topic: System function - set date and time from Gambas app
Replies: 3
Views: 842

Re: System function - set date and time from Gambas app

In :? my opinion, since we have the "date" or "rdate" command available from the Terminal to operate on the system date and time, you could use Gambas 'Shell' function.
by vuott
Monday 24th April 2023 9:01pm
Forum: General
Topic: External C-Libary and Events
Replies: 7
Views: 9702

Re: External C-Libary and Events

how can I hook with the events provided by the library such as libvlc_MediaPlayerTimeChanged[/b] The elements of the " libvlc_event_e " Enumeration appear to be intertwined :? with the " libvlc_event_attach() " function, the " libvlc_event_t " Enumeration, and a "...
by vuott
Sunday 23rd April 2023 1:36pm
Forum: Component
Topic: Can someone please confirm this weird behaviour in gb.media?
Replies: 9
Views: 5804

Re: Can someone please confirm this weird behaviour in gb.media?

Is there an alternative to gb.media in Gambas3 for showing video files? You can see these pages of italian forum wiki: https://www.gambas-it.org/wiki/index.php/Eseguire_un_file_video_mediante_l%27oggetto_MediaView_del_componente_gb.media.form https://www.gambas-it.org/wiki/index.php/Riproduzione_st...
by vuott
Sunday 23rd April 2023 12:27am
Forum: Component
Topic: Can someone please confirm this weird behaviour in gb.media?
Replies: 9
Views: 5804

Re: Can someone please confirm this weird behaviour in gb.media?

1) When video playback reaches the end, I loose normal access to my instance of the MediaPlayer class. Private myPlayer As New MediaPlayer As "myPlayer" Public Sub Form_Open() myPlayer.SetWindow(DrawingArea1) myPlayer.URL = Media.URL("/home/user/first_vid.mp4") myPlayer.Play() E...
by vuott
Wednesday 19th April 2023 6:46am
Forum: Beginners
Topic: Test app UDPSocket Broadcast
Replies: 14
Views: 2144

Re: Test app UDPSocket Broadcast

Hello,
I currently have no experience with this Class.
I :? don't know if this page can help you:
https://www.gambas-club.de/viewtopic.ph ... 657#p13698