代码搜索:Function
找到约 10,000 项符合「Function」的源代码
代码结果 10,000
www.eeworm.com/read/428923/8829315
bas function.bas
Attribute VB_Name = "Function"
'Download by http://www.codefans.net
Public Function IsNumber(ByVal Msg As String) As Boolean
IsNumber = ((Len(Msg) > 0) And (InStr("0123456789", Left(Msg, 1)) > 0)
www.eeworm.com/read/428896/8830518
c function.c
/*获取当前行,列*/
/*设置当前行,列*/
uchar g=0;
void delay(int c){
int i, j;
for(i = 0; i < c; i++)
for(j = 0; j < 1000; j++);
}
/*清屏 320 = (160/8) * (128/8) = 20 * 16 = 320*/
void cls(void){
int
www.eeworm.com/read/428771/8842894
cpp function.cpp
/******************************************************************************
文件名 :Function.cpp
版本号 : 1.0
作者 : Amos Peng
生成日期 :2008-07-08
最近修改 :
功能描述
www.eeworm.com/read/285147/8865892
bmp function.bmp
www.eeworm.com/read/428222/8882546
js function.js
//Encode
function EncodeUrl(str){
var strUrl=str.replace(/\r/g,"%0A");
strUrl=strUrl.replace(/\n/g,"%0D");
strUrl=strUrl.replace(/\"/g,"%22");
strUrl=strUrl.replace(/\'/g,"%27");
return st
www.eeworm.com/read/284860/8887178