Re: [Gambas-user] gbr3: unable to load component: gb.markdown

2014-07-24 Thread Daniel Quintero
Gambas3 from Daily PPA's works again! :D *_* *Lic. Daniel Quintero Rojas* *¡Saludos desde México!* On Mon, Jul 21, 2014 at 5:11 PM, Daniel Quintero wrote: > Hi all, I just got back from vacation and when I update my system today > and want to launch Gambas, I

[Gambas-user] Ubuntu daily PPA comes back

2014-07-24 Thread Benoît Minisini
Hi, The Ubuntu daily PPA correctly builds again, so the Ubuntu Gambas daily packages should be available again soon! Regards, -- Benoît Minisini -- Want fast and easy access to all the code in your enterprise? Index a

[Gambas-user] open a Form

2014-07-24 Thread Karl Reinl
Salut Benoît, resizing a Form during open, depends how you call the me.show*. and also their placement. Demo attached! -- Amicalement Charlie TestApp03-0.0.1.tar.gz Description: application/compressed-tar -- Want fas

Re: [Gambas-user] DnsClient example: never ever use _free(), right?

2014-07-24 Thread Tobias Boege
On Wed, 23 Jul 2014, Beno?t Minisini wrote: > No, you should not call _free(). You should even never have to implement > it in Gambas code. > > The problem is that DnsClient enables its internal watch too early, and > disables it too late. > > It should enable the watch the first time it is act

Re: [Gambas-user] Issue 540 in gambas: gb.net.smtp doesn't work with e.g. smtp.gmail.com, responses aren't handled properly (timing issue)

2014-07-24 Thread gambas
Updates: Status: Accepted Labels: Version-3.5.0 Comment #1 on issue 540 by benoit.m...@gmail.com: gb.net.smtp doesn't work with e.g. smtp.gmail.com, responses aren't handled properly (timing issue) http://code.google.com/p/gambas/issues/detail?id=540 (No comment was entered for

[Gambas-user] Issue 540 in gambas: gb.net.smtp doesn't work with e.g. smtp.gmail.com, responses aren't handled properly (timing issue)

2014-07-24 Thread gambas
Status: New Owner: Labels: Type-Bug Priority-Medium OpSys-Any Dist-Any Arch-Any Desktop-Any GUI-Any New issue 540 by uale...@gmail.com: gb.net.smtp doesn't work with e.g. smtp.gmail.com, responses aren't handled properly (timing issue) http://code.google.com/p/gambas/issues/detail?id=540

[Gambas-user] R: Embedded doesn't work

2014-07-24 Thread Ru Vuott
This simple code knows all windows names on a desktop (you need activate gb.desktop and gb.desktop.x11 components): Public Sub Button1_Click() Dim i As Integer For i = 0 To Desktop.Windows.Count - 1 Print Desktop.Windows[i].VisibleName Next End bye ---

Re: [Gambas-user] Files inside project folder

2014-07-24 Thread Tobias Boege
On Thu, 24 Jul 2014, Antonio S??nchez wrote: > Hi > > Is there any way to exec scripts inside project folder without copy it to > another place? > There are multiple ways. First, you can just execute the script from an absolute path using Application.Path &/ "myscript". This method, however, wi

[Gambas-user] Embedded doesn't work

2014-07-24 Thread Antonio Sánchez
How can I get a list of all windows names detected for Desktop.FindWindow? In the example of gambas called Embedder I can't embed anything, it always says "Window not found!" I tryed with simple applications like mate-calculator or Leafpad. I can see their tittles with wmctrl -l and with xprop, b

[Gambas-user] Files inside project folder

2014-07-24 Thread Antonio Sánchez
Hi Is there any way to exec scripts inside project folder without copy it to another place? Is there any way to copy a lot of files, or even, a folder with a lot of files located inside your project folder to any path in your home? Right now, I pack everything in a tar.gz and then copy to anothe