Re: [Gambas-user] Eeek... help. Gambas 3, latest SVN

2011-01-23 Thread Anthony Ivan
Change the types to simple strings and both client and serversocket run perfectly. If the server socket sends a String[] as below and the client attempts to Read as String[] the client dies in debugging with a signal 11 crash. If I change to object[]'s both client and server crash with signal

Re: [Gambas-user] Gambas 3 rev 3489 bad form file version

2011-01-23 Thread Ron
Ok will do and let you know, if it works ok i dont have do merge updates myself, so it's better in the end! --- Regards, Ron. On Jan 23, 2011 6:35 PM, "Benoît Minisini" wrote: >> Yes i have, but i copy parts of my project, im keeping a 2 and gambas 3 >> version. >> Now i cant copy updated forms a

Re: [Gambas-user] Gambas 3 rev 3489 bad form file version

2011-01-23 Thread Benoît Minisini
> > Yes i have, but i copy parts of my project, im keeping a 2 and gambas 3 > > version. > > Now i cant copy updated forms anymore and choose update. > > > > Can we just keep that menu optio too? > > --- > > Regards, > > Ron. > > Now the conversion of forms is automatic as soon as you open a Gamb

Re: [Gambas-user] Gambas 3 rev 3489 bad form file version

2011-01-23 Thread Benoît Minisini
> Yes i have, but i copy parts of my project, im keeping a 2 and gambas 3 > version. > Now i cant copy updated forms anymore and choose update. > > Can we just keep that menu optio too? > --- > Regards, > Ron. Now the conversion of forms is automatic as soon as you open a Gambas 2 project in the

Re: [Gambas-user] Gambas 3 rev 3489 bad form file version

2011-01-23 Thread Ron
Yes i have, but i copy parts of my project, im keeping a 2 and gambas 3 version. Now i cant copy updated forms anymore and choose update. Can we just keep that menu optio too? --- Regards, Ron. On Jan 23, 2011 5:36 PM, "Benoît Minisini" wrote: -

Re: [Gambas-user] Gambas 3 rev 3489 bad form file version

2011-01-23 Thread Benoît Minisini
> When you have a project where not all form are converted from 2.0 yet, > there is no way to get it going anymore, since the menu option to > convert forms isn't there anymore. > And i cannot find any substitute to do that. > > So i'm stuck again porting my project... > > Any solution? > > >

Re: [Gambas-user] Gambas 3 rev 3489 error message windows in ide gone?

2011-01-23 Thread Benoît Minisini
> When compiling a project which has syntax errors I don't get a pop msg > anymore telling what is wrong, it just jump to line with the error and > displays the error in the status bar of main project. > If you blink you eyes you miss them, because it's only displayed 2 seconds. > > Is this a bug,

Re: [Gambas-user] Database example - dropbox select issue

2011-01-23 Thread Benoît Minisini
> I have been trying to get up to speed with Gambas by playing with the > examples provided in the distribution. I noticed that the connect screen > for the database example seems to have a problem selecting the first > item from the drop down list. If I click on a item below the first item > it wo

Re: [Gambas-user] Project title not translated

2011-01-23 Thread Benoît Minisini
> > Hi Benoît > > tanks for your answer. > > with rev 3479 i noted a strange behaviour. > > If you open the project translation form the project title string does > > not appear, but if you open the project properties form and close it, > > without modify the project title, then that string appear

Re: [Gambas-user] Project title not translated

2011-01-23 Thread Benoît Minisini
> Hi Benoît > tanks for your answer. > with rev 3479 i noted a strange behaviour. > If you open the project translation form the project title string does > not appear, but if you open the project properties form and close it, > without modify the project title, then that string appear in translati

Re: [Gambas-user] Eeek... help. Gambas 3, latest SVN

2011-01-23 Thread Benoît Minisini
> Hi Everyone... > > Once again a silly basic question - the answer to which is eluding me: > > I am trying to send a string[] of data from one computer to another > > THUS on the server side: > Public Sub MessageClients(myMessage As String[]) >Dim varSocket As Socket >For Each varSo

[Gambas-user] Gambas 3 rev 3489 bad form file version

2011-01-23 Thread Ron
When you have a project where not all form are converted from 2.0 yet, there is no way to get it going anymore, since the menu option to convert forms isn't there anymore. And i cannot find any substitute to do that. So i'm stuck again porting my project... Any solution? Regards, Ron_2nd. ---

[Gambas-user] Gambas 3 rev 3489 error message windows in ide gone?

2011-01-23 Thread Ron
When compiling a project which has syntax errors I don't get a pop msg anymore telling what is wrong, it just jump to line with the error and displays the error in the status bar of main project. If you blink you eyes you miss them, because it's only displayed 2 seconds. Is this a bug, or changed

Re: [Gambas-user] Eeek... help. Gambas 3, latest SVN

2011-01-23 Thread Jussi Lahtinen
http://gambasdoc.org/help/comp/gb.net/socket?v3 http://gambasdoc.org/help/lang/split?v3 I don't think client knows how to split string to array, so you have to do it your self. Jussi On Sun, Jan 23, 2011 at 11:39, Anthony Ivan wrote: > Hi Everyone... > > Once again a silly basic question - th

[Gambas-user] Eeek... help. Gambas 3, latest SVN

2011-01-23 Thread Anthony Ivan
Hi Everyone... Once again a silly basic question - the answer to which is eluding me: I am trying to send a string[] of data from one computer to another THUS on the server side: Public Sub MessageClients(myMessage As String[]) Dim varSocket As Socket For Each varSocket In Clients