Arsip: penjumlahan tanggal

more 16 years ago
hafiezd
maaf mas-mas semua....
mungkin pertanyaan saya basi.
1. bagaimana cara menjumlahkan karakter dengan tanggal
contoh :
3 (hari) + 02/04/2009=??? (dengan hasil 05/04/2009)
2. penjumlahan tanggal dengan tanggal...
ok mas...
thanks b4

more 16 years ago
herux
Guuuuaaampang bangeeeett.
pasti blom buka delphi help niihh??
di unit DateUtils ?

more 16 years ago
tstringlist
@herux: Guuuuaaampang bangeeeett. pasti blom buka delphi help niihh?? di unit DateUtils ?gak usah pakek DateUtils juga bisa, yang dihitung itu adalah string jadi harus di ubah dulu. coba deh liat contoh codingan ku, mungkin seperti ini yang dimaksud mas herux, atau mungkin udah ketemu solusinya.
procedure TForm1.Button1Click(Sender: TObject);
var s:string;
hasil:TDate;
begin
// 3 (hari) + 02/04/2009=??? (dengan hasil 05/04/2009)
s := '3 (hari)';
s:=Copy(s,0,Pos(' ',s)-1); //3 (hari) => 3
hasil:=StrToDate('02/04/2009')+StrToInt(s); // 3 + 02/04/2009
ShowMessage(DateToStr(hasil)); // 05/04/2009
end;
more ...
- Pages:
- 1
reply |
Report Obsolete
AI Forward

🚀 We're thrilled to partner with Alibaba Cloud for "AI Forward - Alibaba Cloud Global Developer Summit 2025" in Jakarta! Join us and explore the future of AI. Register now:
https://int.alibabacloud.com/m/1000400772/
#AlibabaCloud #DeveloperSummit #Jakarta #AIFORWARD
Last Articles
Last Topic
- PascalTalk #6: (Podcast) Kuliah IT di luar negeri, susah gak sih?
by LuriDarmawan in Tutorial & Community Project more 4 years ago - PascalTalk #5: UX: Research, Design and Engineer
by LuriDarmawan in Tutorial & Community Project more 4 years ago - PascalTalk #4: Obrolan Ringan Seputar IT
by LuriDarmawan in Tutorial & Community Project more 4 years ago - PascalTalk #2: Membuat Sendiri SMART HOME
by LuriDarmawan in Tutorial & Community Project more 4 years ago - PascalTalk #3: RADically Fast and Easy Mobile Apps Development with Delphi
by LuriDarmawan in Tutorial & Community Project more 4 years ago - PascalTalk #1: Pemanfaatan Artificial Intelligence di Masa Covid-19
by LuriDarmawan in Tutorial & Community Project more 4 years ago - Tempat Latihan Posting
by LuriDarmawan in OOT more 5 years ago - Archive
- Looping lagi...
by idhiel in Hal umum tentang Pascal Indonesia more 12 years ago - [ask] koneksi ke ODBC user Dsn saat runtime dengan ado
by halimanh in FireBird more 12 years ago - Validasi menggunakan data tanggal
by mas_kofa in Hal umum tentang Pascal Indonesia more 12 years ago
Random Topic
- [ask] Tentang penggunaan keybord atau key gan
by kepiss in Tutorial & Community Project more 13 years ago - SQL Server 2005 Express SP2 Untuk Program Client Server
by babypigs in MsSQL more 17 years ago - Buat Nomor Transaksi
by delphi1st in Tip n Trik Pemrograman more 19 years ago - GIS (Geographical information system) di delphi
by alfian in Enginering more 18 years ago - Kenapa laggiiiiii .....
by Manz in OOT more 18 years ago - Masalah Dalam Menghitung Expired Date...
by ii_irwan in Hal umum tentang Pascal Indonesia more 15 years ago - Konvesi String ke PAnsiChar
by areksby in MySQL more 18 years ago - membuat alat Input/Output via Tcomport
by Ijal_palu in Tip n Trik Pemrograman more 19 years ago - EncryptFile
by kingstoneboy in Hal umum tentang Pascal Indonesia more 18 years ago - Ngitung selisih waktu????
by khairulfahmi in Tip n Trik Pemrograman more 17 years ago