资源简介

PLSQL Developer 12.0.1.1814 (64位)中文绿色注册版 如果启动显示英文,在界面config→Preferences→User Interface→Appearance→Language选择Chinese.lang确定即可,汉化不完全,凑合着用吧。

资源截图

代码片段和文件信息

// PL/SQL Developer Plug-In demo
// Copyright 1999 Allround Automations
// support@allroundautomations.nl
// http://www.allroundautomations.nl

// This demo shows an elementary interface

//---------------------------------------------------------------------------
#include 
#pragma hdrstop
//---------------------------------------------------------------------------
int WINAPI DllEntryPoint(HINSTANCE hinst unsigned long reason void*)
{
    return 1;
}
//---------------------------------------------------------------------------
// The three basic export functions
extern “C“
{
  __declspec(dllexport) char* IdentifyPlugIn(int);
  __declspec(dllexport) char* CreateMenuItem(int);
  __declspec(dllexport) void  OnMenuClick(int);
}

// Description of this Plug-In (as displayed in Plug-In configuration dialog)
char *const Desc = “C++Builder Plug-In demo 1“;
int PlugInID;


//---------------------------------------------------------------------------
// Plug-In identification a unique identifier is received and
// the description is returned
char* IdentifyPlugIn(int ID)
{
  PlugInID = ID;
  return Desc;
}
//---------------------------------------------------------------------------
// Creating a menu item
char* CreateMenuItem(int Index)
{
  switch (Index)
  {
    case 1 : return “Tools / &Plug-In 1 Demo...“;
  }
  return ““;
}
//---------------------------------------------------------------------------
// The menu item got selected
void OnMenuClick(int Index)
{
  switch (Index)
  {
    case 1 :
      ShowMessage(“Hello“);
      break;
  }
}
//---------------------------------------------------------------------------

 属性            大小     日期    时间   名称
----------- ---------  ---------- -----  ----

     文件       2048  2015-03-13 17:31  PLSQL Developer 12\aalf.dat

     文件          0  2003-03-13 17:55  PLSQL Developer 12\AfterConnect.sql

     文件       1983  2004-08-14 16:30  PLSQL Developer 12\BeautifierPreview.cfg

     文件         51  1999-02-14 23:53  PLSQL Developer 12\Books\Books.txt

     文件       1250  2011-02-11 14:46  PLSQL Developer 12\CANames.sql

     文件    4824434  2013-08-16 14:32  PLSQL Developer 12\Chinese\Manual.pdf

     文件       3775  2013-08-16 14:05  PLSQL Developer 12\Chinese\xc.txt

     文件     579470  2013-06-19 21:05  PLSQL Developer 12\Chinese.lang

     文件       3465  2004-05-19 12:47  PLSQL Developer 12\DataGenerator\DefaultData\charsets.data

     文件      14224  2004-07-28 10:01  PLSQL Developer 12\DataGenerator\DefaultData\cities.data

     文件      13356  2003-10-05 10:39  PLSQL Developer 12\DataGenerator\DefaultData\companies.data

     文件       4308  2003-10-12 10:44  PLSQL Developer 12\DataGenerator\DefaultData\countries.data

     文件       6462  2003-09-20 15:12  PLSQL Developer 12\DataGenerator\DefaultData\firstnames.data

     文件      11892  2003-09-20 15:12  PLSQL Developer 12\DataGenerator\DefaultData\lastnames.data

     文件       5761  2004-07-07 11:59  PLSQL Developer 12\DataGenerator\DefaultData\text.data

     文件       1594  2004-07-06 13:09  PLSQL Developer 12\DataGenerator\DeptEmpDemo.gd

     文件      37761  2005-09-28 12:30  PLSQL Developer 12\DataGenerator\UserData\Components.txt

     文件       1414  2003-09-08 20:21  PLSQL Developer 12\DataGenerator\UserData\Elements.txt

     文件        165  2003-01-25 16:48  PLSQL Developer 12\default.dat

     文件      11870  2015-05-27 11:10  PLSQL Developer 12\default.kwf

     文件        250  1998-11-29 18:59  PLSQL Developer 12\Demo\deptname.tst

     文件       2595  1998-11-29 19:20  PLSQL Developer 12\Demo\employee.pck

     文件        194  1998-11-29 19:09  PLSQL Developer 12\Demo\employee.sql

     文件        244  1998-11-29 19:00  PLSQL Developer 12\Demo\mgrname.tst

     文件       6819  2016-11-14 15:57  PLSQL Developer 12\ec.txt

     文件     707480  2016-03-29 11:36  PLSQL Developer 12\Errors.txt

     文件     585512  2011-03-18 20:53  PLSQL Developer 12\ExamDiff\ExamDiff.exe

     文件       6359  2011-03-19 11:25  PLSQL Developer 12\ExamDiff\Readme.txt

     文件       7929  2011-03-19 11:23  PLSQL Developer 12\ExamDiff\whatsnew.txt

     文件       3410  2016-11-04 11:53  PLSQL Developer 12\FileSignatures.ini

............此处省略759个文件信息

评论

共有 条评论