Re: [Gambas-user] Unknow symbol 'txtLogs' in class 'Flogfiles'

2010-01-20 Thread Fabien Bodard
FLogfiles.TxtLogs.text = "Blablablabla ..." in good way : you add in FLogFile : Public SetTextLog (sText as String) TxtLog.Text = sText End in Main : FlogFile.SetTextLog("blablabla") for example the gambas ide is written in gambas ... and not use public control option ... 2010/1/20 C

Re: [Gambas-user] Unknow symbol 'txtLogs' in class 'Flogfiles'

2010-01-20 Thread Charlie Reinl
Am Mittwoch, den 20.01.2010, 21:58 +0100 schrieb Jean-marc Gueranger: > Hello gambas-user, > > I'm new in gambas, and need any help. > > In my project, have a form named 'Flogfiles' and have a textarea > 'TxtLogs' inside. > When I want modify the text in this textarea,since Main module, I have >

[Gambas-user] Unknow symbol 'txtLogs' in class 'Flogfiles'

2010-01-20 Thread Jean-marc Gueranger
Hello gambas-user, I'm new in gambas, and need any help. In my project, have a form named 'Flogfiles' and have a textarea 'TxtLogs' inside. When I want modify the text in this textarea,since Main module, I have the following message 'Unknown symbol 'TxtLogs' in 'Flogfiles'. Code is : FLogfiles.T