[Gambas-user] Gambas 3 gb.qt4.webkit

2013-04-25 Thread Andreas Fröhlke
Hi, I get a certificate error trying to open a https website. I'cant tell you the site, because it's not accessible from other IPs. I read, in other programming languages, i can ignore SSL-Errors when using qt4.webkit. Is there the same possibility in gambas3 and how does it work? Regard __ A

[Gambas-user] WG: incompatibility problems with gambas3

2012-08-23 Thread Andreas Fröhlke
Hi, We have found out that gambas3 incompatibility problems has. If we compile a project with gambas 3.2.1 it cannot be started with gambas 3.1.1. Is that intentional? It would be nice if gambas3 backward compatible within the version 3 could be. Regards -- Andreas --

Re: [Gambas-user] Hide Rows in Tableviews

2012-05-02 Thread Andreas Fröhlke
02/05/2012 15:22, Andreas Fröhlke a écrit : > Hello, > > we wrote a TableView-Filter functions. It set the height of each row, which > doesn't match to 0 pixel. With version 3.1 of gambas3 this doesn't work any > longer. As in issue 239 said, setting the height to 1 pix

[Gambas-user] Hide Rows in Tableviews

2012-05-02 Thread Andreas Fröhlke
Hello, we wrote a TableView-Filter functions. It set the height of each row, which doesn't match to 0 pixel. With version 3.1 of gambas3 this doesn't work any longer. As in issue 239 said, setting the height to 1 pixel instaed of 0 pixel is no solution, because if you have 50 rows and one of th

[Gambas-user] gambas3 library pathes

2012-04-19 Thread Andreas Fröhlke
Hello, we read in a forum, that gambas3 searches in 2 pathes for gambas libraries. Is there a way to add pathes or edit them? If not, is gambas3 searching recursively, so we can put our library in a subfolder? Regards Andreas Fröhlke

[Gambas-user] (no subject)

2012-04-10 Thread Andreas Fröhlke
Hello, we read in a forum, that gambas3 searches in 2 pathes for gambas libraries. Is there a way to add pathes or edit them? If not, is gambas3 searching recursively, so we can put our library in a subfolder? Regards Andreas Fröhlke

Re: [Gambas-user] Questions

2012-02-18 Thread Andreas Fröhlke
1. just set the text property of your form 2. DIM REStest as Result REStest = MyConn.Exec("SELECT sum(myrow) FROM MyTable;) FOR EACH REStest PRINT REStest["sum(myrow"] NEXT -Ursprüngliche Nachricht- Von: M. Cs. [mailto:mohar...@gmail.com] Gesendet: Samstag, 18. Februar 2012 1

Re: [Gambas-user] (no subject)

2012-01-30 Thread Andreas Fröhlke
Ok, i will try. Thanks a lot Regards, Andreas -Ursprüngliche Nachricht- Von: Benoît Minisini [mailto:gam...@users.sourceforge.net] Gesendet: Dienstag, 31. Januar 2012 01:04 An: mailing list for gambas users Betreff: Re: [Gambas-user] (no subject) Le 30/01/2012 14:23, Andreas Fröhlke a

Re: [Gambas-user] (no subject)

2012-01-30 Thread Andreas Fröhlke
Sorry, here it is Regards, Andreas -Ursprüngliche Nachricht- Von: Benoît Minisini [mailto:gam...@users.sourceforge.net] Gesendet: Samstag, 28. Januar 2012 02:14 An: mailing list for gambas users Betreff: Re: [Gambas-user] (no subject) Le 27/01/2012 11:36, Andreas Fröhlke a écrit

Re: [Gambas-user] (no subject)

2012-01-27 Thread Andreas Fröhlke
mean. Regards Andreas -Ursprüngliche Nachricht- Von: Benoît Minisini [mailto:gam...@users.sourceforge.net] Gesendet: Mittwoch, 25. Januar 2012 17:21 An: mailing list for gambas users Betreff: Re: [Gambas-user] (no subject) Le 25/01/2012 16:08, Andreas Fröhlke a écrit : > Hi Benoît, &

[Gambas-user] (no subject)

2012-01-25 Thread Andreas Fröhlke
Hi Benoît, we're using gambas about 6 years. Now we take a look at gambas3 and have two questions: 1. Why did you make the spacing property of a container to a boolean, instead of leaving it as an integer? It's really frustrating, that we can't set the space between textboxes to 1 pixel

[Gambas-user] Segmentation fault when starting programs with gambas

2011-10-13 Thread Andreas Fröhlke
Hi, I try to develop an application, which starts a program on a specific virtual desktop. I found kstart and it seems to work, until I compile my gambas program. I tried different ways to start kstart, but I always get back a Segmention fault. When I copy the command directly into konsole it w

Re: [Gambas-user] Does really nobody have an idea?

2011-09-07 Thread Andreas Fröhlke
>   ME.Title = "Kartei 7.3" >>   ME.Font.Size = ini.FontGroesse() >> >>   'ldsv.DateisperrenAufraeumen >> >>   EinrichtenBaum >> >>   Log.Check >> >> END >> >> PUBLIC SUB WatchAll_MouseDown() >>   Suche.text = LA

Re: [Gambas-user] Does really nobody have an idea?

2011-09-07 Thread Andreas Fröhlke
Hello, here's my idea. In Form_Open use the following Code: DIM OBJ as Object DIM OBSwatchall AS Observer 'Start an Observer for Each Control on this Form FOR EACH OBJ IN ME.Children OBSwatchall = NEW Observer(OBJ) AS "WatchAll" NEXT Then you only need one Function Like: Public SUB WatchAll

[Gambas-user] Gambas2 and debian 6 with kde 4

2011-03-09 Thread Andreas Fröhlke
Hello, we used Kubuntu in the past and are now working with debian 6 and kde 4. But the layout is very odd there. We found out, that by using qb.gt.kde in our projects, the layout is ok, but then every control has an underline for the System-Hotkey ([ALT]+[UNDERLINED LETTER]), and this underlin

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

2010-08-04 Thread Andreas Fröhlke
of code will retrieve the code of the page you just clicked and send the html code to the tempHTML variable It's a bit crude, not 100% tested but I think it works. I hope this helps till someone else has a better way to do it from within the webbrowser control Regards Dimtris On Wed, Aug 4

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

2010-08-03 Thread Andreas Fröhlke
Hello, I use the Gambas-Browser to open an shopping website. There the user can choose his products and order them. T last page of the shop is a status page with all informations in the html-source-code written as comments, which i must read out and save in a mysql database. Is there a way to r

Re: [Gambas-user] Developing components

2010-01-29 Thread Andreas Fröhlke
Hello, theres a bug in the calender control. If a day in january greater than the last day in february is selected (29.01.2010, 30.01.2010 and 31.10.2010), you can't select the february by using the top controls of the calender control. Regards Andreas -

Re: [Gambas-user] Problem with breakpoint

2009-08-22 Thread Andreas Fröhlke
The same problem exist in Stable Gambas Version 2.15.2. Is there an solution? Restarting gambas don't solve the problem. The just run over the breakpoints. Regards Andreas -Ursprüngliche Nachricht- Von: richard terry [mailto:rte...@pacific.net.au] Gesendet: Donnerstag, 13. August 2009

Re: [Gambas-user] gbr2 crash at different points

2009-06-19 Thread Andreas Fröhlke
Hello, just wanna know, do you get the mail? Regards Andreas Fröhlke -Ursprüngliche Nachricht- Von: Benoît Minisini [mailto:gam...@users.sourceforge.net] Gesendet: Mittwoch, 17. Juni 2009 12:42 An: mailing list for gambas users Betreff: Re: [Gambas-user] gbr2 crash at different points

Re: [Gambas-user] gbr2 crash at different points

2009-06-16 Thread Andreas Fröhlke
48000+29000] > > I hope someone can help us, because we can't read information out of this > messages wich will be helpful. > > Regards > > Andreas Fröhlke > Can you allow core dumps to get a core dump of the crash? -- Benoît --

[Gambas-user] gbr2 crash at different points

2009-06-15 Thread Andreas Fröhlke
4d961 sp bfc8f320 error 5 in gbx2[8048000+29000] I hope someone can help us, because we can't read information out of this messages wich will be helpful. Regards Andreas Fröhlke -- Crystal Reports - New Free Runt

Re: [Gambas-user] Gambas 2.11.1 Ubuntu 8.xx Socket Problem

2009-03-31 Thread Andreas Fröhlke
Hello again, i'm very sorry for wasting your time. After completely uninstalling and reinstalling gambas, the problem has gone away. Probably pieces oft the old gambas versions are producing the error. Thanks and regards, A.Fröhlke -Ursprüngliche Nachricht- Von: Andreas Fr

Re: [Gambas-user] Gambas 2.11.1 Ubuntu 8.xx Socket Problem

2009-03-31 Thread Andreas Fröhlke
I have installed gambas2 with "./configure -C". The gb.debug-component is given in the project properties. What must I do exactly to get the backtrace? Just tried to compile my project with gb.debug enabled, try to Debug.Start() at Form_Open()-Event, but the backtrace seems to be always the same

Re: [Gambas-user] Gambas 2.11.1 Ubuntu 8.xx Socket Problem

2009-02-20 Thread Andreas Fröhlke
Hello again, we don't use a gambas server on the other site. Just the application wich connect to an server will take the cpu performance. Regards, A.Fröhlke -Ursprüngliche Nachricht- Von: Benoît Minisini [mailto:gam...@users.sourceforge.net] Gesendet: Mittwoch, 18. Februar 2009 19:56