No one has voted on any posts yet. Votes from other community members are used to determine a member's reputation amongst their peers.
5 Posted Topics
[QUOTE=jrismd;1138011]Hi Good Day! I have problem in delphi i cannot load image (jpeg) into QRDBImage on Quick Report, I used memdata and data source, code: procedure TfrmEntityModule.actCOPExecute(Sender: TObject); var frm: Trep_EDR; OrganizedGroup: TRoOrganizedGroup; begin frm := nil; OrganizedGroup := nil; frm := Trep_EDR.Create(Self); OrganizedGroup := sMainApp.MCISService.GetOrganizedGroup(txtEntityNo.Text); try frm.mds2.Close; frm.mds2.Open; frm.mds2.Edit; …
[QUOTE=seto.girl;1103284]hi I want my delphi DB that I made to export to excel file how it is possible?and the most important thing is delphi reports that I made I want them to export as excel files ,plz help me !!:([/QUOTE] This is very simple actually ...I have also written some …
[QUOTE=delphiuser1111;1137270]Hi, this is the first time i have ever used Delphi and was wondering if you could help me; i understand how to writeln etc. but I'm having trouble with programs such as making a program that requires the user to write a message, and how many times they would …
try this function below and see if it works.. function IsPrime(const n: int64): boolean; var i: cardinal; en: extended; begin if n <> 2 then begin en := n; for i := 2 to round(sqrt(en)) do if n mod i = 0 then begin result := false; exit; end; end; …
I have been coding in Delphi for about 17 years and I also code in 7 other languages. I love Delphi and prefer Delphi because in my opinion it kicks A$$ over all of the other languages. My second most powerful language would be C# I like it as well …
The End.
wylddev