[Vala] Writing to existing file

2009-05-31 Thread Joss 4
Hi , Guys I am trying to write to an existing file but I found only a write to a new file in http://code.valaide.org code like this : var file = File.new_for_path (samplefile.txt); { var file_stream = file.create (FileCreateFlags.NONE, null); if

[Vala] List problem in Valide

2009-05-30 Thread Joss 4
@ Nicolas I have problems with valide 4.0 version in windows env. My example is : using GLib; SListstring list = new SListstring (); list.append (one); list.append (two); list.append (three); list.append (four); now if I write the sort function

[Vala] using liststore objects

2009-05-29 Thread Joss 4
Hi Yu, Thanks again, With your post I began to understand something abou the name convention and style settings. Now I try to do some test. In order to set GTK properties do you think it always be this way for ever? I was asking why one can't set properties directly like code :