代码搜索:execute
找到约 10,000 项符合「execute」的源代码
代码结果 10,000
www.eeworm.com/read/171829/9736128
c item.c
#include
void main(void)
{
int counter = 1; // Initialize the control variable
while (counter
www.eeworm.com/read/269450/11097616
c simpleeng.c
/*necessory header file*/
#include "engine.h"
#include "stdio.h"
#include "conio.h"
#define BUFFERLEN 256
/*main function*/
void main()
{
Engine *ep;
char cmd[BUFFERLEN];
int i=0
www.eeworm.com/read/265852/11252190
java setselcommand.java
public class SetSelCommand extends Command {
int x;
/** Creates new AddCustomerCommand */
public SetSelCommand(int x) {
this.x = x;
System.out.println("Command setsel new "+x);
www.eeworm.com/read/265852/11252201
java addcommand.java
public class AddCommand extends Command {
int x1,y1,x2,y2;
public AddCommand(int x1,int y1,int x2,int y2) {
this.x1= x1;
this.y2= y2;
this.y1= y1;
this.x2= x2;
}
public v
www.eeworm.com/read/410925/11264741
txt 写入代码.txt
if dlg2.Execute then
begin
DataSetExportExcel.ExportExcelFile(dlg2.Filename,true,dbgrid1);
showmessage('导出完成') ;
end;
www.eeworm.com/read/336165/12473799
pas cdlgtest.pas
unit Cdlgtest;
interface
uses
Qt, Classes, QGraphics, QForms, QControls,
QMenus, QStdCtrls, QDialogs, QTypes;
type
TCommDlgForm = class(TForm)
OpenDialog1: TOpenDialog;
Sav
www.eeworm.com/read/334853/12569429
cpp scenario.cpp
/*
* Copyright 2002-2005, Mersad Team, Allameh Helli High School (NODET).
*
* This program is free software, you can redistribute it and/or modify
* it under the terms of the GNU General Public
www.eeworm.com/read/247688/12627824
java exitcommand.java
public class ExitCommand implements Command {
public void Execute () {
System.exit(0);
}
}