Re: [Gambas-user] pdf component question

2010-08-04 Thread richard terry
On Wednesday 04 August 2010 22:05:45 Benoît Minisini wrote: > > I wondered where the full documentation is for this compoent. > > > > The pdf viewer will do things like hightlight test you want to search > > for, but I wondered if there is a machanism of 'going to' the first > > occurrence. > > > >

Re: [Gambas-user] Confirm on form close

2010-08-04 Thread Matti
Sorry, didn't see that Benoit had already answered. But, besides the code: Why do you ask the user (who just has decided) if he wants to decide? I really hate programs that ask me things like that. If I close a form by mistake, I open it again. I think the questions on Form_Close event should be

Re: [Gambas-user] Confirm on form close

2010-08-04 Thread Matti
>From Gambas Help: STOP EVENT Works in Gambas3, if not in Gambas2, look in the help. Regards Matti Am 04.08.2010 14:01, schrieb vikram: > Hi, > > Is there a way to confirm from a user when decides to close a form? > > PUBLIC SUB Form_Close() > DIM retVal AS Integer > retval = Message.Ques

[Gambas-user] Another signal #11 in Gambas3

2010-08-04 Thread Matti
I seem to attract them magically... Example attatched. Regards Matti test-0.0.2.tar.gz Description: GNU Zip compressed data -- The Palm PDK Hot Apps Program offers developers who use the Plug-In Development Kit to bring

Re: [Gambas-user] Access only to the user's folder

2010-08-04 Thread craf
-Mensaje original- De: Benoît Minisini Reply-to: mailing list for gambas users Para: mailing list for gambas users Asunto: Re: [Gambas-user] Access only to the user's folder Fecha: Wed, 4 Aug 2010 17:18:56 +0200 > > Hi. > > > > If I choose to FileChooser or DirChooser, these show me t

Re: [Gambas-user] Access only to the user's folder

2010-08-04 Thread Benoît Minisini
> > Hi. > > > > If I choose to FileChooser or DirChooser, these show me the folder icons > > to the theme of Gnome. By using Dialog.SelectDirectory, this shows me > > the folder icons to the theme that the user has selected. Is there any > > way to emulate this behavior in them?. > > > > Regards

Re: [Gambas-user] Access only to the user's folder

2010-08-04 Thread craf
-Mensaje original- De: Benoît Minisini Reply-to: mailing list for gambas users Para: mailing list for gambas users Asunto: Re: [Gambas-user] Access only to the user's folder Fecha: Wed, 4 Aug 2010 13:59:18 +0200 > -Mensaje original- > De: Benoît Minisini > Reply-to: mailing li

Re: [Gambas-user] Confirm on form close

2010-08-04 Thread Benoît Minisini
> Hi, > > Is there a way to confirm from a user when decides to close a form? > > PUBLIC SUB Form_Close() > DIM retVal AS Integer > retval = Message.Question("Are you sure you want to exit?", "Yes", "No") > IF retVal = 1 THEN > ME.Close > ELSE IF retVal = 2 THEN > 'code to prevent

Re: [Gambas-user] pdf component question

2010-08-04 Thread Benoît Minisini
> I wondered where the full documentation is for this compoent. > > The pdf viewer will do things like hightlight test you want to search for, > but I wondered if there is a machanism of 'going to' the first occurrence. > > There is a couple of goto properties, but the mini-help which come up but

[Gambas-user] Confirm on form close

2010-08-04 Thread vikram
Hi, Is there a way to confirm from a user when decides to close a form? PUBLIC SUB Form_Close()   DIM retVal AS Integer   retval = Message.Question("Are you sure you want to exit?", "Yes", "No")   IF retVal = 1 THEN     ME.Close   ELSE IF retVal = 2 THEN     'code to prevent the form from exiti

Re: [Gambas-user] Access only to the user's folder

2010-08-04 Thread Benoît Minisini
> -Mensaje original- > De: Benoît Minisini > Reply-to: mailing list for gambas users > > Para: mailing list for gambas users > Asunto: Re: [Gambas-user] Access only to the user's folder > Fecha: Tue, 3 Aug 2010 00:22:18 +0200 > > > Hi. > > > > I want the user to select the Dialog.Selec

[Gambas-user] Parsing a xml file from internet

2010-08-04 Thread Matías Manuel Grandi
Hi guys! First of all...I'm new to gambas! I'm traying to parse a xml from http://8tracks.com/sets/460486803/play.xml?mix_id=2000 I can get the file with the following code: ' Gambas class file PUBLIC url AS String PUBLIC SUB Form_Open() DIM reader AS XmlReader DIM h AS HttpClient DIM buffe

Re: [Gambas-user] WebBrowser - read out the shown html document

2010-08-04 Thread Benoît Minisini
> Hi Dimitris, > > thanks, thanks, thanks for this solution. It works perfectly. > > Regards > > - Andreas - > > Or, In Gambas 3, WebView has a HTML property. Regards, -- Benoît Minisini -- The Palm PDK Hot Apps P

Re: [Gambas-user] WebBrowser - read out the shown html document

2010-08-04 Thread Andreas Fröhlke
Hi Dimitris, thanks, thanks, thanks for this solution. It works perfectly. Regards - Andreas - -Ursprüngliche Nachricht- Von: Dimitris Anogiatis [mailto:dos...@gmail.com] Gesendet: Mittwoch, 4. August 2010 11:24 An: mailing list for gambas users Betreff: Re: [Gambas-user] WebBrowser

Re: [Gambas-user] WebBrowser - read out the shown html document

2010-08-04 Thread Dimitris Anogiatis
Hey Andreas, >From what I've read in the documentation there's no text property or any other way to get the source code of the currently showing webpage in the webbrowser control... yet; so after a bit of googling this is what I've come up with. assuming that your webbrowser control is called Web