代码搜索:
找到约 10,000 项符合「」的源代码
代码结果 10,000
www.eeworm.com/read/192685/8366789
txt 如何在主模块和activex dll中传递文件句柄.txt
我 想 你 可 以 使 用 OpenFile、 ReadFile等 API函 数 来 操 作 文 件 , 因 为 这 些 函 数 使 用 的 句 柄 可 以 在 模 块 之 间 传 递 。
www.eeworm.com/read/392021/8366790
m dsexample2.m
function mod = dsexample2
% Design example for an 8th-order binary bandpass modulator.
% Altogether too much of the code is greared toward making the graphs
% look 'pretty'.
format compact;
J = 1i;
www.eeworm.com/read/192685/8366791
txt 在分布式程序中用withevens定义对象后为何出错.txt
加上一句Set x = New TestEvent.Class1
声明后必须用New关键字生成该对象的一个实例。
www.eeworm.com/read/392021/8366792
m rmsgain.m
function g = rmsGain(H,f1,f2,N)
%function g = rmsGain(H,f1,f2,N=100)
%Compute the root mean-square gain of the discrete-time
%tf H in the frequency band (f1,f2)
if nargin
www.eeworm.com/read/192685/8366793
txt 编写数据源控件时,如何在数据源发生变化时刷新绑定控件.txt
调 用 DataMemberChanged语 句 。 DataMemberChanged语 句 表 示 数 据 成 员 发 生 了 变 化 , 绑 定 的 控 件 将 会 再 次 调 用 GetDataMember事 件 获 得 数 据 集 。
www.eeworm.com/read/392021/8366794
m lcparam2tf.m
www.eeworm.com/read/192685/8366795
txt propertypage对象是一个ocx,或是dll组件吗.txt
PropertyPage对 象 不 是 一 个 ocx, 或 是 dll组 件 。 它 是 Windows内 定 义 的 对 象 。 不 过 VB对 这 种 对 象 的 支 持 非 常 有 限 , 只 在 设 计 ActiveX控 件 时 , 可 以 象 添 加 窗 体 一 样 向 工 程 内 添 加 PropertyPage对 象 。
www.eeworm.com/read/392021/8366796
m bplogsmooth.m
function [f,p] = bplogsmooth(X,tbin,f0)
% Smooth the fft, X, and convert it to dB.
% Use 8 bins from the bin corresponding to f0 to tbin and again as far.
% Thereafter increase bin sizes by a factor
www.eeworm.com/read/392021/8366797
m sinc_decimate.m
function y = sinc_decimate(x,m,r)
% y = sinc_decimate(x,m,r) Decimate x by m-th order sinc of length r.
x = x(:)';
for i=1:m
x = cumsum(x);
x = [x(1:r) x(r+1:end)-x(1:end-r)]/r;
end
y = x(r:r:end);
www.eeworm.com/read/192685/8366798
txt 如何让自定义控件设计时可见而运行时不可见.txt
设 置 控 件 的 InvisibleAtRuntime 属 性 为 True, 使 控 件 在 运 行 时 具 有 不 可 见 的 窗 口 。 控 件 的 容 器 可 保 持 控 件 在 运 行 时 不 可 见 , 就 象 Timer 控 件 一 样 。 此 时 控 件 仍 然 处 于 活 动 状 态 , 因 此 仍 可 编 写 与 控 件 交 互 的 程 序 。