Компоненты для Delphi/C++Builder ~ Components for Delphi/C++Builder 6

Status
Not open for further replies.

igorvdm

Premium
Joined
Jul 28, 2008
Messages
66
Reaction score
133
EmEditor Professional 11.0.3

С Новым Годом!!!

EmEditor Professional 11.0.3 Multilingual (x86/x64)

This editor is an ideal tool for editing HTML, PHP, JSP and XML files. When you specify a web browser as an external application, you will be able to view HTML files during editing.
Supports syntax highlighting ASP, C #, C, CSS, HTML, Java, javascript, JSP, Pascal (Delphi), Perl, Python, PHP, SQL, VBScript and other programming languages, function Drag & Drop, opening files size up to 248 GB the possibility of connecting additional external applications and plug-ins. In addition, the program allows to work with macros written in javascript or VBScript, and based on the Windows Scripting Host (WSH) engine, allows you to automate virtually any action. Adjustable backlight HTML and scripting languages makes it easy to detect spelling errors and typos.

Features:
• Support for file sizes up to 248 GB
• Edit binary files
• Optimized search and relocation
• Improved design plug-ins
• Ability to display panel functions
• Optimized speed when each row has a greater length
• Specify the temporary folder in the program settings
• Import INI files in the registry
• Unicode
• Syntax highlighting for ASP, C, CSS, HTML, javascript, JSP, Pascal, Perl, Python, PHP, SQL, VBScript and other

EmEditor Professional Features List:
* Large File Support
* Unicode Support
* Macros
* Vertical Selection Editing
* Tabbed Windows, Drag and Drop
* Lightweight Design
* Regular Expressions
* Binary Editing
* Crash Recovery
* Grab Text

depositefiles
 

portfolis

Member
Joined
Jul 6, 2008
Messages
9
Reaction score
20
MCM DESIGN Imaging SDK for D3-D2010

VCL components for image processing and document scanning.
The VCL components includes: TWAIN support for scanning images, reading and storing images in different file formats and to databases, thumbnail viewer, print & print previews, Color format conversion, histograms, filters, spatial transformation and OCR.

You need to log in to view the content.
 
Last edited by a moderator:

portfolis

Member
Joined
Jul 6, 2008
Messages
9
Reaction score
20

Можно залить на другой сервер? (Например, сюда: http://multiupload.com/)
Заранее большое спасибо
 

beegl123

Member
Joined
Mar 29, 2011
Messages
44
Reaction score
191
Location
Україна
ed8fc6ad6c05.jpg

download:
Code:
http://tmssoftware.com/site/tmsiwpro.asp
for Delphi XE2 (8.93 MB)
Помогите нужен TMS intraweb for XE2
добавь юнит к проекту:
Code:
{::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::
::::Модуль для эмуляции запущенной IDE Delphi::::::::::::::::::::::::::
:::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::}
unit RunDelphi;
     interface
uses
    Windows, Messages;
function Scramble(s:string): string;
procedure ShutDown;
function WindowProc(hWnd,Msg,wParam,lParam:Longint):Longint; stdcall;
procedure Emulator;
var
   wClass1,wclass2:TWndClass;
   hInst:HWND;
   Msg:TMSG;
implementation
function Scramble(s:string): string;
var
  r:string;
  i: integer;
  c: char;
  b: byte;
begin
  r := '';
  for i := 1 to length(s) do
  begin
    b := ord(s[i]);
    b := (b and $E0) + ((b and $1F) xor 5);
    c := chr(b);
    r := r + c;
  end;
  Result := r;
end;
procedure ShutDown;
begin
     UnRegisterClass(PChar(Scramble('QDuuilfdqljk')),hInst);
     UnRegisterClass(PChar(Scramble('QDuuGplia`w')),hInst);
     ExitProcess(hInst);
end;
function WindowProc(hWnd,Msg,wParam,lParam:Longint):Longint; stdcall;
begin
     Result:=DefWindowProc(hWnd,Msg,wParam,lParam);
end;
procedure Emulator;
begin
     hInst:=GetModuleHandle(nil);
with wClass1 do
begin
     Style := 0;
     hIcon := LoadIcon(hInst,'MAINICON');
     lpfnWndProc := @WindowProc;
     hInstance := hInst;
     hbrBackground := COLOR_BTNFACE+1;
     lpszClassName := PChar(Scramble('QDuuilfdqljk'));
     hCursor := LoadCursor(0,IDC_ARROW);
end;
with wClass2 do
begin
     Style := 0;
     hIcon := LoadIcon(hInst,'MAINICON');
     lpfnWndProc := @WindowProc;
     hInstance := hInst;
     hbrBackground := COLOR_BTNFACE+1;
     lpszClassName := PChar(Scramble('QDuuGplia`w'));
     hCursor := LoadCursor(0,IDC_ARROW);
end;
   RegisterClass(wClass1);
   RegisterClass(wClass2);
   CreateWindow(PChar(Scramble('QDuuilfdqljk')),'Delphi 7',WS_POPUP,-1,-1,0,0,0,0,hInst,nil);
   CreateWindow(PChar(Scramble('QDuuGplia`w')),'Delphi 7',WS_POPUP,-1,-1,0,0,0,0,hInst,nil);
end;
initialization
   Emulator
finalization
   ShutDown
end.
 
Last edited by a moderator:

beegl123

Member
Joined
Mar 29, 2011
Messages
44
Reaction score
191
Location
Україна
nrComm Lib v9.27 [27 Dec 2011] FULL SOURCE

nrComm Lib v9.27 [27 Dec 2011]
FULL SOURCE

4ac21ceba511.jpg

nrComm Lib v9.27 [27 Dec 2011] =============================
1) Fix. Gsm. Problem with CmdSendAndWaitResult() method.
2) Support XE2 Update3 (16.0.4358.45540)

nrComm Lib v9.26 [29 Nov 2011] =============================
1) Fix. RS232. Corrections for optimization of input buffer reading.
2) Fix. USB. Some corrections for isochronous pipes, once again :-(.
3) Fix. Zmodem. Changes for better support old remote clients (with specific hardware).

nrComm Lib v9.25 [04 Nov 2011] =============================
1) Fix. USB. Some problems with driver installation.
2) Fix. USB. Some corrections for isochronous pipes.
3) New. GSM. ZTE driver is added
4) Support XE2 Update2 (16.0.4316.44803)

nrComm Lib v9.23 [05 Oct 2011] =============================
1) Fix. USB. Some memory leaks fixed.
2) Fix. HID. Some fixes for Win64 support.
3) Fix. USB. Bugfix for rare exception after device plug in/off. Thanks for Joachim Beck.
4) Support XE2 Update1 (16.0.4276.44006)

nrComm Lib v9.22 [21 Sep 2011] =============================
1) Fix. Some fixes for x64 support
2) Fix. Some fixes for UseMainThreadMode behaviour
3) Fix. USB. Default internal read buffer size is changed for correct monitoring usb pipe incoming data.
4) New. USB. TnrUsb.UsbDevice is writable now. It allows to create runtime instnace TnrUsb and assign selected usb device without call Update() method for full device enumeration.
5) Fix. If Log is nil or is not dlDebug some TCustomDataProcessor classes can work incorrectly.
6) Fix. Bt. Some fixes for Win64 support.
7) Fix. Setup. Minor internal changes.

nrComm Lib v9.21 [24 Aug 2011] =============================
1) New. Embarcadero XE2 support
2) New. nrComm Lib supports Win64 projects. Can be used in native 64 applications (XE2 or higher).
3) New. Gsm. Nokia E71 support is included into drivers.
4) New. Gsm. New methods: MakeCall(), AnswerCall() Hungup() are added.

nrComm Lib v9.20 [11 Jul 2011] =============================
1) Fix. Lpt. Reading port state in new x64 driver.
2) New. Lpt. TnrLpt.ControlBusy property controls SendString and SendData methods.
3) Fix. Demo projects and context help are updated.
Code:
http://www.multiupload.com/NTK7BIW3TS

 pass: kepeto@b4all
P.S. файла nrcommlib.dcr НЕТ. Качайте с http://www.multiupload.com/4QHCTORICC
 
Last edited by a moderator:

volod3000

Member
Joined
Dec 20, 2008
Messages
94
Reaction score
485
816263wptoolsboxcomplete.jpg


WPTools is much more than a replacement for the Delphi richedit component: the central part is a complete WYSIWYG word processing component which is surprisingly small. In contrast to similar components WPTools supports editable header and footer in its perfect page layout modes, zooming, splitscreen, tables, also with the possibility of page breaks inside table rows and a powerful CSS like paragraph style concept.

Delphi 5, 6, 7, 2005, 2006, 2007, 2009, 2010, XE, XE2 C++Builder 5, 6, 2006 - Win32.

You need to log in to view the content.
 

beegl123

Member
Joined
Mar 29, 2011
Messages
44
Reaction score
191
Location
Україна
Спасибо beegl123,

А для XE?
файл nrcommlib.inc предусматривает и для XE
Code:
{$DEFINE NRPRO} 
{*******************************************************}
{                                                       }
{       nrCommLib Communication Library for Delphi      }
{       Preprocessor directives                         }
{       Copyright (c) 1997-2011 Roman Novgorodov        }
{       v9.27                                           }
{       last update: 01 Mar 2011                        }
{                                                       }
{       e-mail:[email protected]                    }
{       DeepSoftware                                    }
{       http://www.deepsoftware.com/                    }
{                                                       }
{*******************************************************}

{$DEFINE NR_WITH_CONTROLS}

{$B-} 

{DEFINE NRCAPI}

{Directive build the shareware version}
{DEFINE TRIAL}

{Directive build the debug version}
{DEFINE DEBUGSELF}

{DEFINE NRLPT}

{IFDEF TRIAL}
{DEFINE NRPRO} // the trial version is always PRO ...
{ENDIF}

{$IFDEF VER100}         { if Delphi3 ...           }
  {$DEFINE GEN3}        { then define Generation 3 }
  {$DEFINE DELPHI}
  {$DEFINE NOOVERLOAD}
{$ENDIF}

{$IFDEF VER110}         { if CBuilder3 ...         }
  {$DEFINE GEN3}        { then define Generation 3 }
  {$DEFINE BCB}
  {$DEFINE NOOVERLOAD}
{$ENDIF}

{$IFDEF VER120}         { if Delphi4 ...           }
  {$DEFINE GEN4}        { then define Generation 4 }
  {$DEFINE DELPHI}
  {$DEFINE NOOVERLOAD}
{$ENDIF}

{$IFDEF VER125}         { if CBuilder4 ...         }
  {$DEFINE GEN4}        { then define Generation 4 }
  {$DEFINE BCB}
  {$DEFINE NOOVERLOAD}
{$ENDIF}

{$IFDEF VER130}         { if Delphi5 ...         }
  {$DEFINE GEN5}        { then define Generation 5 }
  {$DEFINE DELPHI}
  {$DEFINE NOOVERLOAD}
{$ENDIF}

{$IFDEF VER135}         { if CBuilder5 ...         }
  {$DEFINE GEN5}        { then define Generation 5 }
  {$DEFINE BCB}
  {$DEFINE NOOVERLOAD}
{$ENDIF}

{$IFDEF VER140}         { if Delphi6 ...         }
  {$DEFINE GEN6}        { then define Generation 6 }
  {$DEFINE DELPHI}
{$ENDIF}

{$IFDEF LINUX}         { if Kylix ...         }
  {$DEFINE GEN6}       { then define Generation 6 }
  {$DEFINE KYLIX}
{$ENDIF}

{$IFDEF VER150}         { if Delphi7 ...         }
  {$DEFINE GEN6}        { then define Generation 6 }
  {$DEFINE GEN7}        { then define Generation 7 }
  {$DEFINE DELPHI}
{$ENDIF}

{$IFDEF VER170}         { if Delphi9 ...         }
  {$DEFINE GEN6}        { then define Generation 6 }
  {$DEFINE GEN7}        { then define Generation 7 }
  {$DEFINE DELPHI}
{$ENDIF}

{$IFDEF VER180}         { if Delphi10 ...         }
  {$DEFINE GEN6}        { then define Generation 6 }
  {$DEFINE GEN7}        { then define Generation 7 }
  {$DEFINE DELPHI}
{$ENDIF}

{$IFDEF VER200}         { if Delphi 2009 ...       }
  {$DEFINE GEN6}        { then define Generation 6 }
  {$DEFINE GEN7}        { then define Generation 7 }
  {$DEFINE DELPHI}
{$ENDIF}

[B]{$IFDEF VER210}         { if Delphi 2010 ...       }
  {$DEFINE GEN6}        { then define Generation 6 }
  {$DEFINE GEN7}        { then define Generation 7 }
  {$DEFINE DELPHI}
{$ENDIF}

{$IFDEF VER220}         { if Delphi 2011 ...       }
  {$DEFINE GEN6}        { then define Generation 6 }
  {$DEFINE GEN7}        { then define Generation 7 }
  {$DEFINE DELPHI}
{$ENDIF}[/B]

{$IFDEF VER230}         { if Delphi 2012 (XE2) ...   }
  {$DEFINE GEN6}        { then define Generation 6 }
  {$DEFINE GEN7}        { then define Generation 7 }
  {$DEFINE DELPHI}
{$ENDIF}

{$IFDEF GEN7}         { skip unsafe warinings }
  {$warn UNSAFE_TYPE off}
  {$warn UNSAFE_CAST off}
  {$warn UNSAFE_CODE off}
  {$WARN SYMBOL_PLATFORM OFF}
  {$WARN SYMBOL_DEPRECATED OFF}
{$ENDIF}                



 

beegl123

Member
Joined
Mar 29, 2011
Messages
44
Reaction score
191
Location
Україна
не могу поставить,выкидывает на страницу с активацией ,подскажите что делать
Code:
http://www.megaupload.com/?d=0NVNIH5V

1. Run Crack.exe
2. Run IPWorksV8DelphiEditionFull.exe
3. Choose when is asks, that you "would like to use the existing license"

Enjoy!

Note: Crack.exe and product.dat must be in one folder

Добавлено через 7 минут
тут править что-то надо?
ничего ненадо править. Тестировал на Delphi7
 
Last edited by a moderator:

fanatoliy

Member
Joined
Jul 11, 2009
Messages
114
Reaction score
490
Clever Suite Internet 7.4 Full Source

Clever Suite Internet 7.4 Full Source. d5-dXE2 and cb5-cbXE2

The suite of the Clever Internet components presents the most efficient and convenient way of accessing the Internet resources from your applications.

Using the Clever Internet Suite (Clever Internet .NET Suite, Clever Internet ActiveX Suite) you can add instant SSL / TLS security to your Internet applications and implement many useful Internet-related features:
downloading, uploading and submitting of the Internet-resources; sending and receiving MIME messages; HTTP, FTP, SMTP, POP3, IMAP and NNTP client / server solutions; SSL / TLS channel with digital certificates support.

The suite includes more than 40 components for Internet development and its code is constantly being refined and improved..


You need to log in to view the content.
 

volod3000

Member
Joined
Dec 20, 2008
Messages
94
Reaction score
485
Clever Internet Suite v 7.4

Скачать с MultiUpload (и без пароля, зачем он нужен)

You need to log in to view the content.


Для удобства можно скачать установочный файл, для своей версии Delphi, с родного сайта : Download Clever Internet Suite v 7.4 for Delphi, C++Builder.
Дальше просто заменить и добавить файлы в папке Lib
 

beegl123

Member
Joined
Mar 29, 2011
Messages
44
Reaction score
191
Location
Україна
GoogleMaps Component Object Model + Demo

GoogleMaps Component Object Model + Demo
5b1bf462d484.jpg

Code:
http://www.multiupload.com/9F9NPC055I
сайт разработчика:
Code:
http://www.delphipraxis.net/157004-google-maps-ueber-com-component-object-model-17.html
 
Last edited by a moderator:

Alefas

Member
Joined
Oct 5, 2009
Messages
48
Reaction score
2
Age
77
Infopower 2012 9.0.2.2

Infopower 2012 9.0.2.2 при загруке XE2 просит регистрации Help!
 

volod3000

Member
Joined
Dec 20, 2008
Messages
94
Reaction score
485
XLSReadWriteII 4.00.56 XE2 (Cracked)

XLSRWII_logo.gif


Особенности программы:

Родной доступ к Excel файлам. Пользователю нет необходимости устанавливать Excel, или любое другое программное обеспечение.
XLSReadWriteII работает как невидимая рабочая книга Excel. Доступны все значения ячеек.
Стабильность. Одна из главных целей XLSReadWriteII состит в том, чтобы создать продукт, который не будет повреждать Excel-файлы и не будет изменять данных в файле.
Включение полных исходных кодов

Native access to Excel files. The user doesn't need to have Excel, or any other software installed.
XLSReadWriteII works as an invisible Excel workbook. All cell values are always accessible.
Stability. One of the major goals with XLSReadWriteII was to create a product that won't corrupt the Excel files and won't alter any data in the file.
XLSReadWriteII is easy to use. With the formatting interface, you can format cells through a cell object.
Fast and efficient support when you have any questions.
No runtime fees for the component.
Full source code included.
We released the first version of XLSReadWrite in 1998. At that time it was the only component that could read and write Excel 97+ files. We are commited to have the leading Excel solution for Delphi in the future as well.

Сайт программы XLSReadWriteII, где можно скачать установочный файл.


You need to log in to view the content.
 

volod3000

Member
Joined
Dec 20, 2008
Messages
94
Reaction score
485
Embedded Web Browser v14.70.0 D5-XE2 Full Source

n4R6iSXY.jpg


Embedded Web Browser – набор "дельфийских" компонентов, включающий все необходимые компоненты и процедуры для создания web-браузера или chat-клиента. Пакет содержит примеры, показывающие большую часть функционала. SEO’шников может заинтересовать функция автоматического заполнения полей web-форм. Исходники прилагаются. Неполный список компонентов:
• EmbeddedWB.
• ExportFavorites.
• Import Favorites.
• IEParser.
• FileExtAssociate.
• FavoritesMenu.
• FavoritesListView.
• FavoritesTree.
• HistoryMenu.
• HistoryListView.
• IEAddress ComboBox.
• IECache.
• IEDownload.
• IETools.
• IEUtils.
• IEGuid.
• BrowseForFolder.
• IETravelLog.
• Intshcut.
• LinksBar.
• RichEditBrowser.
• SecurityManager.
• SendMail.
• UrlHistory.
• HtmlHighLighter.
• XmlHighLighter.
• WebUpdater.
• XmlScanner.
• EasyXmlScanner.
• UILess parser

You need to log in to view the content.
 
Last edited by a moderator:

volod3000

Member
Joined
Dec 20, 2008
Messages
94
Reaction score
485
GLibWMI 1.8

Набор компонентов основанный на WMI (Windows Management Instrumentation). Обладает очень внушительным багажом возможностей, а так же совершенно бесплатный (из за версии “бета”, потом, наверное станет платным).

В состав входят следующие компоненты:

CBiosInfo – информация о BIOS системы.
CDiskDriveInfo – информация о присутствующих в системе дисках.
СDisplayInfo – информация о дисплее.
CKeyboardInfo – всё о клавиатуре.
COperatingSystemInfo – предоставляет информацию об операционной системе.
CPhysicalMemoryInfo – информация об установленной памяти.
CPointingDeviceInfo – всё об указывающем устройстве (про мышку).
CPrinterInfo – информация о принтерах установленных в системе.
СProcessorInfo – всё о процессорах.
CSoundDeviceInfo – звуковое железо.
CProcessInfo – информация о действующих процессах в системе
CServiceInfo – информация о системных службах
CStartupCommandInfo – всё о процессах, которые стартуют вместе с ОС
CNetwokAdapterInfo – информация о сетевых адаптерах.
CUserInfo – получает информацию об учётной записи юзера.
CShareInfo – информация об открытых ресурсах (расшареных)
CDiskPartitionInfo – работа с разделами харда.

Использовать компоненты очень просто. Достаточно кинуть их на форму и активировать свойство Active.

Пробовал поставить на Delphi XE2 - установилось без проблем
Попробовал в работе, ошибок пока не заметил.

bios_thumb%5B3%5D.png
cpu_thumb%5B1%5D.png
disk_thumb%5B1%5D.png


You need to log in to view the content.
 
Last edited by a moderator:
Status
Not open for further replies.
Top