代码搜索:实现
找到约 10,000 项符合「实现」的源代码
代码结果 10,000
www.eeworm.com/read/257094/11950311
txt textbox实现透明背景.txt
如何做个透明的TEXTBOX , FORM是图片背景
急!!!
问题点数:100、回复次数:2
Top
1 楼seakingx(亚龙湾)回复于 2004-03-23 00:10:46 得分 0 知道了, 我看看
Top
2 楼seakingx(亚龙湾)回复于 2004-03-23 00:11:09 得分 100
www.eeworm.com/read/343026/11982779
sql textcopy实现文件存取.sql
/*--利用 textcopy.exe文件实现在数据库中存储/读取文件
需要textcopy.exe文件,该文件可以在sql 7.0安装光盘找到
--转贴自大力--*/
--建立存取处理的存储过程
if exists (select * from dbo.sysobjects where id = object_id(N'[dbo].[sp_textcopy]') and O
www.eeworm.com/read/153793/12005848
txt arp协议实现原理.txt
ARP协议实现原理
作者 2002/11/01
ARP是Address Resolution Protocol的缩写。中文译做“地址解析协议”,本质是完成网络地址到物理地址的映射。从概念上讲就是找到一个映射方法f,使得“物理地址 = f(网络地址)”。物理地址有两种基本类型:以太网类型和proNET
www.eeworm.com/read/151252/12225868
txt 移动字幕的实现.txt
Visual FoxPro 3.0中移动字幕的<mark>实现</mark>
在电视上我们时常会看到屏幕下方会有一行提示文字或广告信息由右至左移动,这样既起了提示作用又不会破坏整体屏幕。在Visual FoxPro 3.0中我们同样可以完成这种设计。
进入Visual FoxPro 3.0系统环境,在命令行窗口中键入Create Form或在‘文件’菜单中选择‘新建’、‘表单’,即可建立一个新的表单(F ...
www.eeworm.com/read/151252/12225914
txt vfp实现电话拨号.txt
Visual FoxPro中<mark>实现</mark>电话拨号
对于有调制解调器的用户来说,大多使用过Windows 95提供的‘电话拨号程序’,使用起来也确实非常的方便。但是,如何在我们的Visual FoxPro 5.0应用程序中进行电话拨号呢?还好微软为我们提供了一个非常有用的控件--‘Microsoft Communication Control’,使用它,我们可以迅速的制作出一个通用的电话 ...
www.eeworm.com/read/338634/12291203
txt 转换函数的实现.txt
float Convert(char *argv)
{
char *single;
float num1=0,num2=0,result=0,result1=0,result2=0;
int dot=0,count=0;
single=argv;
int i=0;
while(single[i]!='\0')
{
if(dot==0)
{
if(s
www.eeworm.com/read/337991/12330711
ewb dvccii的电路实现.ewb
Electronics Workbench Circuit File
Version: 5
Charset: ANSI
Description:
""
EncryptionType: 2
UsingVectorGraphics: 0
/000@D0I0?4D
www.eeworm.com/read/337935/12333102
txt spring实现rmi详解.txt
1.1服务端
1.1.1服务接口
package cn.webservice;
import java.util.List;
publicinterface AccountService {
publicvoid insertAccount(Integer account);
public List getAccounts(String name);
www.eeworm.com/read/148817/12422887
txt add实现加法运算.txt
#define uint8 unsigned char
#define uint32 unsigned int
extern uint32 Add(uint32 x, uint32 y);
uint32 sum;
// 调用汇编程序Add实现加法运算
void Main(void)
{ sum = Add(555, 168);
whil
www.eeworm.com/read/234713/14098973