search for: kerth

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

Did you mean: keith
2007 Dec 10
3
Popup Window
Hey! I would need a popup window like this (not necessarily associated to a taskbaricon): http://www.venraiker.com/wp-content/uploads/2006/03/libnotifyvx.png I should be possible to show such a window for a certain time, displaying a certain message. Is a similar thing possible with wx? Are there oder options? thx ck -- Posted via http://www.ruby-forum.com/.
2007 Nov 22
2
Active Record Question
hey! I have the following table structure in my DB | users | ------------ | (pk)id | | username | | pass | ------------ (1:n) | users_objects | | objectattributes | ------------------ ---------------------------------- | (fk,pk)user_id | (1:n) | (pk)attribute | |(fk,pk)object_id| | (pk,fk)
2007 Dec 05
21
Fwd: win32/process problem
Any ideas? ---------- Forwarded message ---------- From: Christian Kerth <christian.ke... at dynamicmedia.at> Date: Dec 5, 8:28 am Subject: win32/process problem To: comp.lang.ruby I have an application that consists of serveral independent parts. I want to use the Windows Process API to spawn the different processes. e.g. require ''rubygems''...
2007 Dec 20
1
evalJSON() problem
Hey! When i try to parse the following Variable with evalJSON() i geht an error "Badly formed JSON String" var string = ''{nodes[{id:"s1",type:"seminar",title:"Seminar 1",nodes: [{id:"c1",type:"course",title:"Kurs 1"}]},{id:"c2",type: "course",title: "Kurs 2"}]};''; why? regards
2008 Apr 10
0
Active Record Delete if not in
Hy! How can i delete from an AR Object the opposite way like the following: Song.destroy( 10, 11, 20 ) SQL = DELETE FROM songs WHERE id IN (10,11,20) I need Song.destroy everthing but 10,11,12 SQL = DELETE FROM songs WHERE id NOT IN (10,11,20) thx CK -- Posted via http://www.ruby-forum.com/. --~--~---------~--~----~------------~-------~--~----~ You received this message because you are
2008 Apr 16
1
AR - Delete m:n Associations when deleting Record
Hey! I have three tables in my DB users <--> users_courses <--> courses users and courses are m:n related: User: has_many :courses, :through => :user_courses Course has_many :users, :through => :user_courses I want to delete all records for a user in user_courses when deleting the user. How do i achieve that? thx -- Posted via http://www.ruby-forum.com/.