代码搜索:Creating
找到约 10,000 项符合「Creating」的源代码
代码结果 10,000
www.eeworm.com/read/194406/8195617
mht creating mp3s.mht
From:
Subject: Creating MP3s for the Homemade USB 2 Harddrive MP3 Player
Date: Wed, 6 Oct 2004 12:36:30 +0800
MIME-Version: 1.0
Content-Type: multipart/related
www.eeworm.com/read/275831/10793817
rb 08 - creating and modifying xml documents.rb
require 'rexml/document'
require
doc = REXML::Document.new
#---
meeting = doc.add_element 'meeting'
meeting_start = Time.local(2006, 10, 31, 13)
meeting.add_element('time', { 'from' => meeting_start,
www.eeworm.com/read/275831/10794455
rb 01 - creating a hash with a default value.rb
h = Hash.new
h[1] # => nil
h['do you have this string?'] # => nil
#---
h = Hash.new("nope")
h[1] #
www.eeworm.com/read/275831/10794509
rb 12 - creating a gui application with wxruby.rb
#!/usr/bin/ruby -w
# wxtrout.rb
require 'wxruby'
class TroutApp < Wx::App
def on_init
frame = Wx::Frame.new(nil, -1, 'Tiny wxRuby Application')
panel = Wx::StaticText.new(frame, -1, 'You ar
www.eeworm.com/read/275831/10794511
rb 11 - creating a gui application with tk.rb
require 'tk'
root = TkRoot.new { title "Tiny Tk Application" }
label = TkLabel.new(root) { text "You are a trout!" }
label.pack
Tk.mainloop
#---
#!/usr/bin/ruby
# stopwatch.rb
require 'tk'
class Stop