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

Status
Not open for further replies.

mbah suro

New member
Joined
Jul 6, 2011
Messages
1
Reaction score
1
advanced%20data%20export%20vcl%20suite.gif

EMS Advanced Data Export VCL 4.7.0.5 Full Source

dataimport.gif

EMS Advanced Data Import VCL 3.5.0.10 Full Source


*** скрытый блок ***

great compenent. thank you

Добавлено через 7 минут
Еще есть маленький компонентик, но только для D7 и D2010. А может и к другим подойдет, я не знаю...
USB Component for Delphi7 and Delphi2010
unibytes
gigabase
share4web
rapidgator

can you share component support d2009 ?

Добавлено через 13 минут
It's work. thank you

Добавлено через 19 минут


EhLib Руководство разработчика



Содержание:

*** скрытый блок ***

where is the component?
 
Last edited by a moderator:

rezasadigh

Member
Joined
Sep 6, 2010
Messages
8
Reaction score
12
Age
52
Hi
Any one has a component or activex for reading (recognizing) Barcode?
Best regards
 

fanatoliy

Member
Joined
Jul 11, 2009
Messages
114
Reaction score
490
GMLib (Google Maps Library) Pre-Alpha Delphi 6 - XE2

Description
GMLib (Google Maps Library) are components that encapsulate the GoogleMaps API to administrate a map, markers, polygons, rectangles, polylines,.... All objects that you can put into a map. Actual components

- TGMMap: component to use the Google Maps map
- TGMMarker: component to show markers on Google Map map using the component TGMMap
- TGMInfoWindow: component to show a balloon with information
- TGMPolyline: component to show polylines
- TGMPolygon: component to show polygons
- TGMRectangle: component to show rectangles
- TGMCircle: component to show circles

Compiled in:
- Delphi 6
- Delphi 7
- Delphi 2007
- Delphi 2010
- Delphi XE2

More information (spanish only, but you can translate it )
http://www.cadetill.com/?page_id=365

Download
http://www.cadetill.com/files/gmlib_0.1.5.zip
 

_SERGEYX_

Member
Joined
Jul 9, 2008
Messages
223
Reaction score
983
WPTools v6.25.4 Standard Edition + Manuals (for Delphi 5-XE2)

12.3.2012 - WPTools 6.25.4
* allows changing of column width in redonly editors. Can be switchoed off in EditOptions or set
compiler define TOTALREADONLY
+ wpDisableSelectAll in EditOptionsEx2
* changed reformat/repaint after Undo/Redo
- pro and premium: Due to a problem with precompiler cursoir selection did not work correctly

unibytes
gigabase
share4web
depositfiles
 
Last edited by a moderator:

Rambuz

New member
Joined
Mar 2, 2009
Messages
3
Reaction score
2
Age
39
Сообщение Раз
 
Last edited by a moderator:

brightman

New member
Joined
May 3, 2010
Messages
2
Reaction score
0
Thanks for your links...

Добавлено через 11 минут
Thank you for your help...
Very nice :)
 
Last edited by a moderator:

bogdanpricop

New member
Joined
Apr 1, 2011
Messages
3
Reaction score
7
Hello,

Does anyone has J4L Barcode Vision for Delphi or other component that can extract barcodes from images?

Thanks
 

superpyct

New member
Joined
May 18, 2010
Messages
2
Reaction score
0
Age
43
Ага, желательно 8.2

Добавлено через 4 минуты
Нужен ODAC 8.2
 
Last edited by a moderator:

mauriciopt

Member
Joined
Apr 3, 2009
Messages
65
Reaction score
240
Cindy V5.06 released!

https://sourceforge.net/projects/tcycomponents/

Need export BDE table or any dataset to mysql?
Use my new TcyDBXImportDataset component!

Sample code:
uses BDE;

cyDbxImportDataset1.Dataset := ParadoxTable;
cyDbxImportDataset1.TableName := MySQLTableName;
cyDbxImportDataset1.PrimaryKey := 'Id' + MySQLTableName;

// Correct fields size :
try
TabProp := TFrmBDEDataset(FrmPrin.ActiveMDIChild).TbFile;
pFlds := AllocMem((TabProp.FieldCount + 1) * sizeof(FLDDesc));
FillChar(pFlds^, (TabProp.FieldCount + 1) * sizeof(FLDDesc), 0);
Check(DbiGetFieldDescs(TabProp.handle, pFlds));

for f := 0 to TabProp.FieldCount-1 do
begin
FieldIndex := cyDbxImportDataset1.Fields.FindFieldIndex(TabProp.Fields[f].FieldName);

if f <> 0 then
Inc(pFlds, 1);

{ Case pFlds^.iFldType Of
1: StringGridProps.Cells[2, StringGridProps.RowCount-1] := 'String';
2: StringGridProps.Cells[2, StringGridProps.RowCount-1] := 'Date';
3: StringGridProps.Cells[2, StringGridProps.RowCount-1] := 'Memo';
4: StringGridProps.Cells[2, StringGridProps.RowCount-1] := 'Bool';
5: StringGridProps.Cells[2, StringGridProps.RowCount-1] := 'Integer';
6: StringGridProps.Cells[2, StringGridProps.RowCount-1] := '???';
7: StringGridProps.Cells[2, StringGridProps.RowCount-1] := 'Float';
Else
StringGridProps.Cells[2, StringGridProps.RowCount-1] := 'Ché pas';
End; }

if pFlds^.iFldType in [1, 5, 7] then
cyDbxImportDataset1.Fields[FieldIndex].FieldType.Size := pFlds^.iUnits1;

if pFlds^.iFldType = 7 then // Floats
begin
cyDbxImportDataset1.Fields[FieldIndex].FieldType.Precision := pFlds^.iUnits2;

// Convert Float fields without decimals to an Integer:
if cyDbxImportDataset1.Fields[FieldIndex].FieldType.Precision = 0 then
cyDbxImportDataset1.Fields[FieldIndex].FieldType.DataType := ftInteger;
end;
end;
finally
pFlds := Nil;
FreeMem(pFlds);
end;

// Create table :
cyDbxImportDataset1.CreateTable;

// Export records :
if CBExportRecords.Checked then
begin
Screen.Cursor := crHourGlass;
cyDbxImportDataset1.Dataset.DisableControls;
cyDbxImportDataset1.ImportRecords;
cyDbxImportDataset1.Dataset.EnableControls;
Screen.Cursor := crDefault;
end;



Mauricio
 

abdelmounim

New member
Joined
Sep 19, 2009
Messages
1
Reaction score
9
TMS WebGMaps v1.0.2.0

Different map modes are available: default road map, satellite view, hybrid view and terrain
Extra map information can be displayed: Bicycle View, Panoramio (pictures of interest) information, Traffic information
StreetView can be selected
Position markers may be added to the maps, including default Google balloon markers and custom image markers.
Moving over a marker can display a hint with the marker title information
Extensive configuration options over the different Google maps controls are available: MapType control, OverViewMap control, Pan control, Scale control, StreetView control and Zoom control.
Image files can be created of the displayed map. Images can be saved in different formats: .BMP, .JPG or .PNG
Different mouse and keyboard options to enable/disable: mouse or keyboard panning, mouse or keyboard zoom, mouse wheel scrolling
TWebGMapsGeocoding helper component to facilitate conversions between address and longitude/latitude coordinates

 

diablist

New member
Joined
Mar 31, 2010
Messages
3
Reaction score
0
Age
44
Залейте плиз у кого есть
/n software PayPal Integrator Delphi Edition
/n software E-Payment Integrator Delphi Edition
/n software E-Banking Integrator Delphi Edition
 

AlekVolsk

Member
Joined
Apr 7, 2011
Messages
16
Reaction score
8
Доброго времени суток.
Поделитесь, пож, патчиком для devexpress 2012.1.5 для xe2.
Или киньте ссылочку на full source.
Благодарствую


В качестве благодарности за full source возьмусь русифицировать
 
Last edited by a moderator:
Status
Not open for further replies.
Top