代码搜索:execute
找到约 10,000 项符合「execute」的源代码
代码结果 10,000
www.eeworm.com/read/363758/9936969
frm frmmdi.frm
VERSION 5.00
Object = "{831FDD16-0C5C-11D2-A9FC-0000F8754DA1}#2.0#0"; "mscomctl.ocx"
Begin VB.MDIForm frmMDI
Appearance = 0 'Flat
AutoShowChildren= 0 'False
BackColor
www.eeworm.com/read/167987/9942726
permx
#!/bin/sh
# Script name:permx
for file # Empty wordlist
do
if [ -f $file -a ! -x $file ]
then
chmod +x $file
echo $file now has execute permission
fi
done
www.eeworm.com/read/167849/9950001
pas main.pas
unit main;
interface
uses
Windows, Messages, SysUtils, Variants, Classes, Graphics, Controls, Forms,
Dialogs, XPStyleActnCtrls, ActnList, ActnMan, ToolWin, ActnCtrls,
ActnMenus, ImgList
www.eeworm.com/read/167515/9966847
c command.c
/*
*/
#include "List.H"
class Document {
public:
Document(const char*);
void Open();
void Paste();
};
class Application {
public:
Application();
void Add(Document*);
};
/*
*/