代码搜索:Create
找到约 10,000 项符合「Create」的源代码
代码结果 10,000
www.eeworm.com/read/176730/9485976
tk menu2.tk
#!/usr/bin/wish
# Let's start off with the basics needed to draw circles and squares.
wm title . "Menubutton demonstration"
wm iconname . "Menubutton demo"
# Initial parameters to draw circles and s
www.eeworm.com/read/176730/9485992
tk clip.tk
#!/usr/bin/wish -f
interp create foo
foo eval {
load {} Tk
clipboard clear
clipboard append -type STRING "Clipboard Data"
}
interp delete foo
puts "[selection get -selection
www.eeworm.com/read/176730/9486040
tk select.tk
#!/usr/bin/wish -f
interp create foo
foo eval {
load {} Tk
text .t
pack .t
.t insert end "Hello World!"
.t tag add sel 0.0 end
selection own
.t insert end "\n"
# .t i
www.eeworm.com/read/372772/9493882
pas ehlibibx.pas
{*******************************************************}
{ }
{ EhLib v3.5 }
{ Register object
www.eeworm.com/read/372772/9493892
pas ehlibdbx.pas
{*******************************************************}
{ }
{ EhLib v3.5 }
{ Register obje
www.eeworm.com/read/372772/9494248
pas ehlibibx.pas
{*******************************************************}
{ }
{ EhLib v3.5 }
{ Register object
www.eeworm.com/read/372772/9494249
pas ehlibdbx.pas
{*******************************************************}
{ }
{ EhLib v3.5 }
{ Register obje
www.eeworm.com/read/372762/9494294
c chain.c
/*建立一个整数链表*/
#include
#include
struct chain
{
int value;
struct chain *next;
};
struct chain *create()
{
struct chain *head, *tail, *p;
int x;
head = tail = NULL
www.eeworm.com/read/176362/9501025
cpp httprequest.cpp
#include "stdafx.h"
#include "HttpRequest.h"
//////////////////////////////////////////////////////////////////////////////////
// HttpRequest
//##ModelId=424BB6450084
HttpRequest::HttpReques
www.eeworm.com/read/176362/9501096
h httpserver.h
#if !defined(HttpServer_H)
#define HttpServer_H
#include "HttpRequest.h"
#include "HttpServerInfo.h"
#include "ServerSocketHandler.h"
#include "HttpSocketHandler.h"
#include "TextFile.h"
#inc