代码搜索:names
找到约 10,000 项符合「names」的源代码
代码结果 10,000
www.eeworm.com/read/478131/6720580
dfm names_queryunit.dfm
object Names_QueryForm: TNames_QueryForm
Left = 192
Top = 139
BorderStyle = bsDialog
Caption = #25353#21517#23383#26597#35810
ClientHeight = 402
ClientWidth = 575
Color = clBtnFac
www.eeworm.com/read/478131/6720581
~dfm names_queryunit.~dfm
object Names_QueryForm: TNames_QueryForm
Left = 228
Top = 141
BorderStyle = bsDialog
Caption = #25353#21517#23383#26597#35810
ClientHeight = 402
ClientWidth = 575
Color = clBtnFac
www.eeworm.com/read/478131/6720591
pas names_queryunit.pas
unit Names_QueryUnit;
interface
uses
Windows, Messages, SysUtils, Variants, Classes, Graphics, Controls, Forms,
Dialogs, StdCtrls, Buttons, ExtCtrls, DBCtrls, Grids, DBGrids;
type
TN
www.eeworm.com/read/478131/6720662
~ddp names_queryunit.~ddp
www.eeworm.com/read/410432/11287344
h names_st.h
// names_st.h -- names_st structure header file
// constants
#define SLEN 32
// structure declarations
struct names_st
{
char first[SLEN];
char last[SLEN];
};
// typedefs
typedef
www.eeworm.com/read/410432/11287353
c names_str.c
// names_str.c -- define names_st functions
#include
#include "names_str.h" // include the revised header file
// function definitions
void get_names(names * pn)
{
int i;
www.eeworm.com/read/410432/11287355
c names_st.c
// names_st.c -- define names_st functions
#include
#include "names_st.h" // include the header file
// function definitions
void get_names(names * pn)
{
int i;
pr
www.eeworm.com/read/410432/11287357
h names_str.h
// names_str.h --revised with include protection
#ifndef NAMES_H_
#define NAMES_H_
// constants
#define SLEN 32
// structure declarations
struct names_st
{
char first[SLEN];
cha
www.eeworm.com/read/410432/11287558
c names1.c
/* names1.c -- uses pointers to a structure */
#include
#include
struct namect {
char fname[20];
char lname[20];
int letters;
};
void getinfo(struct namect
www.eeworm.com/read/410432/11287572
c names3.c
// names3.c -- use pointers and malloc()
#include
#include // for strcpy(), strlen()
#include // for malloc(), free()
struct namect {
char * fname; // u