代码搜索:visual basic
找到约 10,000 项符合「visual basic」的源代码
代码结果 10,000
www.eeworm.com/read/376889/9302526
h basic.h
//
// This has been modified from Dennis Lee's original version
//
/*
* File: basic.h
*
* Header file for #defs and typedefs I often use
*
* Copyright (C) 1992-1997 Dennis Lee
*/
www.eeworm.com/read/180402/9309539
val basic.val
www.eeworm.com/read/180402/9309548
db basic.db
www.eeworm.com/read/180402/9309597
ddp basic.ddp
www.eeworm.com/read/180402/9309636
pas basic.pas
unit basic;
interface
uses
Windows, Messages, SysUtils, Classes, Graphics, Controls, Forms, Dialogs,
ComCtrls, StdCtrls, Buttons, Grids, DBGrids, ExtCtrls, Db, ADODB,
DBTables, DBCtrls,
www.eeworm.com/read/180402/9309639
dfm basic.dfm
www.eeworm.com/read/180402/9309662
dcu basic.dcu
www.eeworm.com/read/375709/9352491
inf basic.inf
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;; Version information
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
[Version]
Signature = "$Windows NT$"
Class=Sample
ClassGUID={C3077FCD-9C3C-482f-9317-460712F23EFA}
www.eeworm.com/read/179109/9372471
h basic.h
typedef struct CNode{
int CouSer;
int CouSco;
int PreCou;
} CNode; //课程结点
typedef struct TNode{
CNode data;
struct TNode* next;
} TNode, *TNodeptr;//课程链表结点
typedef struct BTnode{
C