Arsip: compact db,compress exe

more 16 years ago
ImanD
friends gwe ada kesulitan cara akses di delphi:
1. klo listing buat compact db(access) gmn ?
2. lokasi quick launch dimana ?
3. klo bikin registry type binary gimana ?
4. gwe pke UPX buat kompres executable tapi ntar bingung, bagaimana
cara upx mengkompress and bagaimana OS tau klo exe itu dah di
kompres tapi hasilnya sama apakah ada dekompress ataw gmn, ada
yang tahu gak ataw literaturnya ada yang tahu ?
(buat skripsi nich) urgent tolong dibantu
5. buat sansaysan gmn cara menampilkan grafik di fast report, error mulu
versi yang dipakai v2.5
makasih friends

more 16 years ago
saysansay
5. buat sansaysan gmn cara menampilkan grafik di fast report, error mulu versi yang dipakai v2.5Saysansay<<<ini yang benar bukan Sansaysan..erorrnya dimana bole ane liat codingnya wakaakakakakakak sorrry semua aku kembali rasanya nga rame..nech klu ndak ada aku wakakakaka Mau tak instal delphi lagi ach... Download Fast report terbaru www.esnips/web/saysansaybajakan ( Yang paling atas...) Passwowrd Pm aja ama ane Nb : Wait for few minute

more 16 years ago
deLogic
[3]
di unit Registry:
procedure WriteBinaryData(const Name: string; var Buffer: Type; BufSize: Integer);
Call WriteBinaryData to store a data value associated with the current key.
Name is a string containing the name of the data value in which to store data. If Name already exists, its current value is overwritten by WriteBinary. If Name does not exist, it is created.
Buffer is a data buffer containing the data to store in the registry. BufSize indicates the size of Buffer.
Note:
Data-value lengths are limited by available memory. Long values (more than 2048 bytes) should be stored as separate files, and those file names should be stored in the registry. Application elements such as icons, bitmaps, and executable files should be stored as separate files rather than as values in the registry.
If WriteBinaryData fails, an exception is raised, and the value is not written to the registry.
more 16 years ago
deLogic
[4]
gwe pke UPX buat kompres executable tapi ntar bingung, bagaimana cara upx mengkompress and bagaimana OS tau klo exe itu dah di kompres tapi hasilnya sama apakah ada dekompress ataw gmn, ada yang tahu gak ataw literaturnya ada yang tahu ?Sebenarnya OS tidak perlu dan gak mau tahu exe itu dah dikompres. Pada UPX, rutin kompresi akan mengkompres beberapa bagian dari file exe dan membuang beberapa bagian yang tidak dibutuhkan (strip relocation info). setelah proses kompresi, UPX kemudian menambahkan modul decompress disuatu tempat pada exe tersebut, dan mengubah entripoint pada file exe agar menjalankan rutin decompress terlebih dahulu. rutin decompres melakukan decompres beberapa bagian file exe di-memory (on-the-fly / in-memory decompressing), setelah decompress berhasil, entri point program dipindahkan ke entripoint yang sebenarnya ketika exe tersebut belum di-compress. untuk literatur, coba cari2 di eyang google atau di source-nya UPX.

more 16 years ago
saysansay
function DatabaseCompact
(const sdbName: WideString) : boolean;
var
JE : TJetEngine; //Jet Engine
sdbTemp : WideString; //TEMP database
sdbTempConn : WideString; //Connection string
const
SProvider = 'Provider=Microsoft.Jet.OLEDB.4.0;
Data Source=';
begin
Result:=False;
sdbTemp := ExtractFileDir(sdbName) +
'TEMP' +
ExtractFileName(sdbName);
sdbTempConn := SProvider + sdbtemp;
if FileExists(sdbTemp) then
DeleteFile(sdbTemp);
JE:= TJetEngine.Create(Application);
try
try
JE.CompactDatabase(SProvider + sdbName, sdbTempConn);
DeleteFile(sdbName);
RenameFile(sdbTemp, sdbName);
except
on E:Exception do
ShowMessage(E.Message);
end;
finally
JE.FreeOnRelease;
Result:=True;
end;
end;
NB : Imand Mana Coding Graphiknya
more 16 years ago
ImanD
makasih banyak friend!
o..ya lupa satu lagi, klo cara nyari path-nya Quick Launch& Program Files gmn?
u/ saysansay gwe buka www.esnips/web/saysansaybajakan ko ga connect sich yg bener yang mana? btw coding grafik ga ada, baru test da error mungkin cracknya kurang kali yeee.....
tolong dong situs buat download versi baru-nya dikirim ulang. and sorry gwe ga liat pesan waktu lo ngajak chatting malem2x, klo mo chating lg, kasitau kapan yeeeeee......!
u/ semua
gwe pernah download komponen u/ crystalreport for v8.5 Di topik sapa yeee....lupa! setelah gwe install ko hasilnya ngaco mulu yeah, gmn sich!

more 16 years ago
fafenail
Buat mas ImanD, Klo mau instal crystal report 8.5 buat delphi khususnya delphi 6 mang ada yang harus diubah,
Crystal Report 85 VCL
http://support.businessobjects.com/communitycs/filesandupdates/Cr85vcl.exe
Trus ini panduan buat ngrubah code-nya:
http://support.businessobjects.com/library/kbase/articles/c2009768.asp

more 16 years ago
ImanD
thnks fafenail, btw klo bt delphi7 bisa?
all my friends aku butuh banget gimana cara dapetin alamat quick launch dong please kasih tau.
urgent
more ...
- Pages:
- 1
- 2
reply |
Report Obsolete
Last Articles
Last Topic
- PascalTalk #6: (Podcast) Kuliah IT di luar negeri, susah gak sih?
by LuriDarmawan in Tutorial & Community Project more 2 years ago - PascalTalk #5: UX: Research, Design and Engineer
by LuriDarmawan in Tutorial & Community Project more 2 years ago - PascalTalk #4: Obrolan Ringan Seputar IT
by LuriDarmawan in Tutorial & Community Project more 2 years ago - PascalTalk #2: Membuat Sendiri SMART HOME
by LuriDarmawan in Tutorial & Community Project more 2 years ago - PascalTalk #3: RADically Fast and Easy Mobile Apps Development with Delphi
by LuriDarmawan in Tutorial & Community Project more 2 years ago - PascalTalk #1: Pemanfaatan Artificial Intelligence di Masa Covid-19
by LuriDarmawan in Tutorial & Community Project more 2 years ago - Tempat Latihan Posting
by LuriDarmawan in OOT more 3 years ago - Archive
- Looping lagi...
by idhiel in Hal umum tentang Pascal Indonesia more 10 years ago - [ask] koneksi ke ODBC user Dsn saat runtime dengan ado
by halimanh in FireBird more 10 years ago - Validasi menggunakan data tanggal
by mas_kofa in Hal umum tentang Pascal Indonesia more 10 years ago
Random Topic
- mint tutorial delphinya donk!!!!!!!!
by shadri in Tutorial & Community Project more 15 years ago - Transformasi ke multi thread
by pebbie in Tip n Trik Pemrograman more 14 years ago - can'n retur a result set in the given context di mysl + delp
by amakita in Hal umum tentang Pascal Indonesia more 15 years ago - Pencocokkan String ( String Matching) Delphi DanMySQL ??
by daryl_sukma_gumilar in MySQL more 13 years ago - Search di forum
by zones in Kritik & Saran more 14 years ago - Delphi on google [SEARCH !!, Before you Ask]
by eksant in OOT more 14 years ago - Form dalam Aplikasi MDI
by rho in Form Enhancement & Graphical Controls more 15 years ago - Tanya untuk buat titik di ribuan
by lumpurpanas in Hal umum tentang Pascal Indonesia more 16 years ago - Aplikasi Kamus dari Delphi
by danipedrosa in OOT more 15 years ago - QReport...
by bayu in MySQL more 15 years ago