代码搜索:integer
找到约 10,000 项符合「integer」的源代码
代码结果 10,000
www.eeworm.com/read/412366/11202462
vhd dispselector_ok.vhd
library ieee;
use ieee.std_logic_1164.all;
use ieee.std_logic_unsigned.all;
ENTITY dispselector IS
PORT
(CLK: IN STD_LOGIC;
NUM1: IN STD_LOGIC_VECTOR(3 DOWNTO 0);
NUM2: IN STD_LOGIC_VECTO
www.eeworm.com/read/412366/11202469
bak dispselector.vhd.bak
library ieee;
use ieee.std_logic_1164.all;
use ieee.std_logic_unsigned.all;
ENTITY dispselector IS
PORT
(CLK: IN STD_LOGIC;
NUM1: IN STD_LOGIC_VECTOR(3 DOWNTO 0);
NUM2: IN STD_LOGIC_VECTO
www.eeworm.com/read/412366/11202602
vhd dispselector.vhd
library ieee;
use ieee.std_logic_1164.all;
use ieee.std_logic_unsigned.all;
ENTITY dispselector IS
PORT
(CLK: IN STD_LOGIC;
NUM1: IN STD_LOGIC_VECTOR(3 DOWNTO 0);
NUM2: IN STD_LOGIC_VECTO
www.eeworm.com/read/412366/11202619
vhd dispselector_debug.vhd
library ieee;
use ieee.std_logic_1164.all;
use ieee.std_logic_unsigned.all;
ENTITY dispselector IS
PORT
(CLK: IN STD_LOGIC;
NUM1: IN STD_LOGIC_VECTOR(3 DOWNTO 0);
NUM2: IN STD_LOGIC_VECTO
www.eeworm.com/read/412366/11202643
vhd dispselector_1.vhd
library ieee;
use ieee.std_logic_1164.all;
use ieee.std_logic_unsigned.all;
ENTITY dispselector IS
PORT
(CLK: IN STD_LOGIC;
NUM1: IN STD_LOGIC_VECTOR(3 DOWNTO 0);
NUM2: IN STD_LOGIC_VECTO
www.eeworm.com/read/412366/11202950
vhd dispselector_1.vhd
library ieee;
use ieee.std_logic_1164.all;
use ieee.std_logic_unsigned.all;
ENTITY dispselector IS
PORT
(CLK: IN STD_LOGIC;
NUM1: IN STD_LOGIC_VECTOR(3 DOWNTO 0);
NUM2: IN STD_LOGIC_VECTO
www.eeworm.com/read/412366/11203530
vhd dispselector.vhd
library ieee;
use ieee.std_logic_1164.all;
use ieee.std_logic_unsigned.all;
ENTITY dispselector IS
PORT
(CLK: IN STD_LOGIC;
NUM1: IN STD_LOGIC_VECTOR(3 DOWNTO 0);
NUM2: IN STD_LOGIC_VECTO
www.eeworm.com/read/192685/8360663
txt qb里有没有数组.txt
当 然 有 。 而 且 BASIC的 数 组 比 Pascal灵 活 些 。
你 可 以 这 样 定 义 :
Dim n(1 To 10) As Integer
也 可 以 定 义 动 态 数 组 :
Dim n() As Integer
......
m = 10
ReDim n(m) As Integer
www.eeworm.com/read/192685/8361441
txt 如何动态的生成象ie5的收藏夹的下拉菜单.txt
1.
Option Explicit
Public LastState As Integer
Private Declare Function SendMessage Lib "user32" Alias "SendMessageA" (ByVal hWnd As Long, ByVal wMsg As Long, ByVal wParam As Long, l
www.eeworm.com/read/192685/8365129
txt 如何能使timer控件定时超过一分钟.txt
你 可 以 将 定 时 设 置 为 1分 钟 , 然 后 在 Timer中 计 数 , 当 时 间 积 累 到 一 定 次 数 才 发 作 , 理 论 上 可 以 任 意 长 时 间 , 如 :
Private Sub Timer1_Timer()
Static n As Integer
n = n + 1
If n = 5 Then