search for: attik

Displaying 6 results from an estimated 6 matches for "attik".

Did you mean: attic
2011 Mar 14
1
Javascript & Rails future
...d we progressively forget about things like javascript helpers, RJS, and all these fun parts of rails? And start coding with jquery/json in mind? I''m not against that at all, but I have to admit I find RJS really fun to use... ------------------------------------------------------------- Attik System web : http://www.attiksystem.ch Philippe Lang phone : +41 26 422 13 75 rte de la Fonderie 2 gsm : +41 79 351 49 94 1700 Fribourg twitter: @philippelang pgp : http://keyserver.pgp.com
2006 Dec 18
0
[fxruby] howto show a warningmessage thatdisappears again?
...ing a > button. I don''t think that''s possible with FXMessageBox, is it ? > > Thank you, > > Best regards, > Axel > > -------- Original-Nachricht -------- > Datum: Mon, 18 Dec 2006 08:17:19 +0100 > Von: "Philippe Lang" <philippe.lang at attiksystem.ch> > An: fxruby-users at rubyforge.org > Betreff: Re: [fxruby-users] [fxruby] howto show a warning > message thatdisappears again? > >> fxruby-users-bounces at rubyforge.org wrote: >> >>> Dear all, >>> >>> I have an application in whi...
2006 Nov 04
0
ActiveRecord, insert and not auto-incremented primary keys...
...-------------------- ... it works. Is there an equivalent to this? --------------------------------------- class Garden < ActiveRecord::Base set_primary_key :code, :manual End --------------------------------------- Thanks, ---------------------------------- Philippe Lang, Ing. Dipl. EPFL Attik System rte de la Fonderie 2 1700 Fribourg Switzerland http://www.attiksystem.ch Tel: +41 (26) 422 13 75 Fax: +41 (26) 422 13 76 -------------- next part -------------- A non-text attachment was scrubbed... Name: smime.p7s Type: application/x-pkcs7-signature Size: 3125 bytes Desc: not available...
2008 Apr 14
3
Copy-paste between FXTable and FXTextfield
...table.visibleColumns = 3 table.setTableSize(3, 3) # Data field.text = ''copy me!'' table.setItemText(0, 0, ''copy me!'') end def create super show(PLACEMENT_SCREEN) end end if __FILE__ == $0 application = FXApp.new("Attik System", "FXRuby Test") MyWindow.new(application) application.create application.run End ---------------------------------------------- Regards, Philippe Lang
2009 Jun 23
9
Learning FXRuby please help!
Hi all, I''m trying to get text on to the screen in response to pressing a button. This code doesn''t work, and I don''t know why. My puts command says that the window is shown, but it''s not displayed. Also, it seems to me that there should be an easier way to get text on a screen in response to pressing a button. Any hints? Thanks! Marlene require
2006 Aug 26
0
DRbFire / ActiveRecord performances
...t; => "color3") g.save end class Server def find(i) Garden.find(i) end end s = Server.new g = s.find(1) puts "#{g[:id]} | #{g[:name]}" g.flowers.each do |f| puts "#{f[:id]} | #{f[:garden_id]} | #{f[:name]}" end DRb.start_service(''drbfire://j20.attiksystem.ch:9000'', s, DRbFire::ROLE => DRbFire::SERVER) DRb.thread.join Client code: ------------ #!/usr/local/bin/ruby require ''drb/drbfire'' DRb.start_service(''drbfire://j20.attiksystem.ch:9000'', nil, DRbFire::ROLE => DRbFire::CLIENT) obj = DRbO...