代码搜索:
找到约 10,000 项符合「」的源代码
代码结果 10,000
www.eeworm.com/read/192685/8366839
txt index1.txt
1,在程序中自己用函数注册ActiveX Dll
我想在程序中自己用函数注册一个ActiveX Dll。请问怎么实现?
2,如何以picturebox为样板动态添加控件并包含有picturebox中的所有控件
已有一个容器控件picturebox,其上含有其他控件,如何以该picturebox为样板动态添加一个容器控件,使新添加的容器控件包含有样板picturebox中的 ...
www.eeworm.com/read/392021/8366840
m padb.m
function y = padb(x, n, val)
%y = padb(x, n, val)
% Pad a matrix x on the bottom to length n with value val(0)
% The empty matrix is assumed to be have 1 empty column
if nargin < 3
val = 0;
end
y
www.eeworm.com/read/292217/8366841
m gps_kalman.m
%%%%% gps kalman %%%%%
clear;
%------------- 参数定义 -----------%
pi=3.1415926;
C=3.0e8; %光速
a=26609e3; %轨道长半轴长,单位已经换算为 m
e=0.006; %轨道的偏心率
i_0=55*pi/180;
www.eeworm.com/read/392021/8366842
m partitionabcd.m
www.eeworm.com/read/192685/8366843
txt 如何在vb6中的类模块中定义可读写的属性数组.txt
Dim m_Array(10)
Public Property Get MyArray(ByVal i As Integer) As Variant
MyArray = m_Array(i)
End Property
Public Property Let MyArray(ByVal i As Integer, ByVa
www.eeworm.com/read/392021/8366844
m ds_hann.m
function w = ds_hann(n)
% function w = ds_hann(n)
% A Hann window of length n. Does not smear tones located exactly in a bin.
% Note: This function was formerly just "hann." Re-naming
% was necessary
www.eeworm.com/read/392021/8366845
m thermometer.m
function t = thermometer(x,m)
% t = thermometer(x,m) t is an m by length(x) matrix wherein the first
% x(i) components of column i are one;
t = zeros(m,length(x));
for i=1:length(x)
t(1:x(i),i) =
www.eeworm.com/read/392021/8366846
m dsdemo8.m
% Demonstrate the designLCBP function
clc;
fprintf(1,'\t\t\t Continuous-Time LC Modulator Design\n\n');
%WARNING: designLCBP is very ill-behaved due to deficiencies
% in MATLAB's constr() and minimax
www.eeworm.com/read/192685/8366847
txt activex控件的对象属性为什么没有出现在属性窗口中.txt
ADODB.Connection类 型 并 不 是 ActiveX控 件 的 标 准 类 型 , 而 属 于 对 象 类 型 , 如 果 一 个 对 象 属 性 出 现 在 属 性 窗 口 中 , 则 Property Get函 数 在 设 计 时 必 须 返 回 一 个 字 符 串 , 这 个 字 符 串 将 出 现 在 Visual Basic的 属 性 窗 口 中 。 例 如 Picture
www.eeworm.com/read/192685/8366848
txt activex exe工程中的如何设置主界面.txt
1) 建 立 属 性 的 办 法 在 书 的 第 三 章 有 介 绍 。 只 要 属 性 支 持 Property Let就 可 以 使 用 ?m>的 方 法 设 置 。
2) VB不 能 生 成 标 准 的 DLL, 所 以 函 数 一 般 都 是 以 方 法 的 形 式 产 生 。
3) ActiveX EXE工 程 一 般 是 没 有 主 界 面 的 , 它 只 是 在