代码搜索:特征码
找到约 10,000 项符合「特征码」的源代码
代码结果 10,000
www.eeworm.com/read/297029/8059496
c 36.c
#pragma interrupt_handler timer:7 //TC1溢出中断
#include
#include
#include //自定义字符点阵码文件,存于include目录下#include
www.eeworm.com/read/331248/12837326
m kuoping.m
clc
clear all
%--------- 扩频通信过程 ---------------
%--------- 只仿真一个频点的情况 ---------------
%--------- 初始化 ---------------
Ts=0.00001; fs=1/Ts;
EndTime=2-Ts; %2s
%--------- 产生信息序列(双极性不归零码) ---
www.eeworm.com/read/243086/12965543
bas module1.bas
Attribute VB_Name = "Module1"
Option Explicit
Public conn As New ADODB.Connection '定义链接对象
Public Const keyenter = 13 '定义回车的ASCII码
Public userType, userName As String '记录登陆的用户名
Public Connection
www.eeworm.com/read/141570/12998328
txt 21.txt
将图片「非重叠显示」填满整个表格视窗
----所需物件: PictureBox 一个。
----程式码(一):tile.bas
Declare Function BitBlt Lib "GDI" (ByVal hDestDC%, ByVal X%, ByVal Y%, _
ByVal nWidth%, ByVal nHeight%, ByVal hSrcDC%, ByV
www.eeworm.com/read/141242/13029057
cpp help.cpp
//Help.cpp
# include
# include
# define Key_ESC 1 //宏定义ESC键的扫描码
void Help(void)
{
int key2;
do{
Init_Graph(); //图形屏幕初始化
setb
www.eeworm.com/read/242302/13075852
txt 如何播放资源文件中的声音.txt
假 设 资 源 文 件 是 这 样 的 :
CHIMES WAVE DISCARDABLE "Chimes.wav"
DING WAVE DISCARDABLE "Ding.wav"
1、 建 立 一 个 新 工 程 ;
2、 添 加 下 面 代 码 到 Form1
'********************************
www.eeworm.com/read/242302/13077419
txt 如何对数据库中的用户和密码进行校验.txt
假 定 你 把 用 户 名 和 密 码 保 存 在 数 据 库 中 的 UserInfo表 中 , 使 用 :
Dim rd As Recordset
Set rd = Data1.Database.OpenRecordSet(" SELECT * FROM UserInfo")
rd.FindFirst "User = '" + sUser + "'"
www.eeworm.com/read/242302/13077805
txt 怎样在主窗体载入时,同时链接上server端的access数据库.txt
使 用 ADO,代 码 如 下 :
Dim Db as New ADODB.Connection
(ACCESS 97) db.Open "Provider=Microsoft.Jet.Oledb.3.51;Data Source=" & .\abc.mdb
(ACCESS 2000) .......则 要 将 3.51换 成 4.0即 可 。