|
Rather than linking to an unknown (read potentially unsafe) source, you could give details of those components which you are missing.
However, from the reply from Amarnath S, finding those missing components was not difficult.
TXiProgressBar[^]
TZipForge[^]
TdxCheckbox[^]
TFreeButton via the link here[^]
TAdvStringGrid[^]
Torry.net keep their web site bookmarked as you can find most Delphi/C++Builder components via them.
modified 1-Aug-19 21:02pm.
|
|
|
|
|
I have tried to contact to the programmer but he/she is almost unreachable. He shared this source code in a forum but his membership is deleted now.
Thank you for the links you have provided. I downloaded all components it needs, but I think I can't succesfully install the components. I don't have experience and knowledge about Delphi so I can't solve the problem. That's why I need someone to compile and send it to me.
|
|
|
|
|
SimpleData wrote: I downloaded all components it needs, but I think I can't succesfully install the components.
Did you download the correct version of the components for your version of Delphi? If the installation of these components failed, what were the error messages telling you? If you are trying to supporting an existing program, have you tried to contact the original developers of that program for source code and documentation? Has you present customer given you any hints as to the next stage if you are unable to support this existing program?
Delphi, it is in an unfortunate position. When Borland lost its way it lost countless customers and countless developers and its credibility fell through the floor. This in turn has the capacity to becomes a nightmare in terms of maintaining existing customers' software.
You have a choice to muddle on the best you can or suggest to the customer that the only solution is to replace these problematic programs with current development techniques and current development products.
As source code for many Delphi and C++Builder components were never released, and original developers of these components are no longer available for one reason or another, leaves you with effectively one conclusion - namely - to start afresh with new. But if starting anew is not an option, you could try utility programs such as Resource Hacker/[^] and the hacker's (read Cracking) "w32dsm89" programs to give you hints of what the program and its supporting DLLs do, but that is potentially a very hard and very time consuming thing to do and thus far too expensive to perform. Please note, using cracking programs such as "w32dsm89" I personally do not recommend, it could get you into trouble!
modified 1-Aug-19 21:02pm.
|
|
|
|
|
I am pretty sure that I have the correct version of components. But when I am trying to install some of these components, I can't because I don't have .pas files of this components. (I am a newbie in Delphi, maybe there is an other way )
Only thing I am trying to do is compiling this project. I have deleted references to XiProgressBar and the commands which needs XiProgressBar because it was not that important.
|
|
|
|
|
Were you able to compile the project. I'll be gald to help you but i realize i'm late in the game!
|
|
|
|
|
I couldn't compile it yet. If you can, I would be very glad.
|
|
|
|
|
Can you Send you All Components Code and All Project source Code to Me?
This is My Email : fanronghua@126.com.
I'll help you , and I'll send your source code after build all project for success.
|
|
|
|
|
Hi
Thank you for your interest to help. But I have successfully compiled the code with the help of chambers120@suddenlink .
|
|
|
|
|
Are there any decent external editors suitable for Delphi?
I am using D2007, but I find the alignment of the begin/else/end blocks such a pain to be able to see which ones pair up.
I usually use VS2008 or Notepad++ for the c* languages, selecting any '{' will automatically highlight the closing '}'
|
|
|
|
|
I have used this in past;
http://www.gexperts.org/[^]
I know a great deal of developers that love it, it should do all that you need.
|
|
|
|
|
Thanks very much.
As it happens, I already had it installed, and have used it a few years ago when doing C++ Builder applications, but hadn't really delved much beyond the grep and comment/uncomment functions.
Time to dig deeper. 
|
|
|
|
|
|
Hi all...
I've got a problem with a crystal report app (Delphi) and I need Help. I got the following code to work on two machines but it keeps failing on the client server. Can someone tell me why. PS The client server works with a XBase driver the two Machines I got it to work on runs a foxpro driver. That is the only thing I can pick up thats different...
dtmVision.crGeneric.Tables.ItemIndex :=0; dtmVision.crGeneric.Tables.Item.Name :='System.dbf'; dtmVision.crGeneric.Tables.ItemIndex :=0; dtmVision.crGeneric.Tables.Item.Path :=sDBPathForVision; dtmVision.crGeneric.Tables.ItemIndex:=1; dtmVision.crGeneric.Tables.Item.Name:='Customer.dbf'; dtmVision.crGeneric.Tables.ItemIndex :=1; dtmVision.crGeneric.Tables.Item.Path :=sDBPathForVision; dtmVision.crGeneric.Tables.ItemIndex := 2; dtmVision.crGeneric.Tables.Item.Name :=sFnTempTRans; dtmVision.crGeneric.Tables.ItemIndex :=2; dtmVision.crGeneric.Tables.Item.Path :=ExtractFilePath(sFnTempTRans);
crGeneric is of type TCrpe
Stephen Lintott Bsc IT (RAU)
|
|
|
|
|
I have inherited a Delphi project, and as a non-Delphi programmer I am only just getting to grips with its various strange idiosyncrasies.
One aspect of the application I am working on relates to an ADOQuery, and the formats with dates.
The query is written parameterized, however I have noticed incorrect datasets particularly at the start of a new month. I am guessing this is due to the SQL syntax normally using the US date format, whereas the system date is in the UK format.
I googled a few attempts at setting the date format, and found that using the parameterized is the best version, as then it doesn't matter what format is passed.
However I can't get the suggested methods to compile, using the AsDateTime:
adoQuery.Parameters.ParamByName('TimeNow').AsDateString
Example from http://en.allexperts.com/q/Delphi-1595/2009/2/School-Project-2.htm[^]
Any hints on how to handle this situation?
|
|
|
|
|
Hello,
I would do like this;
adoQuery.Parameters.ParamByName('TimeNow').DataType := ftDateTime;
adoQuery.Parameters.ParamByName('TimeNow').Value := mydatevalue;
|
|
|
|
|
Only
adoQuery.Parameters.ParamByName('TimeNow').Value := mydatevalue;
will work without problem
I Love T-SQL
"Don't torture yourself,let the life to do it for you."
If my post helps you kindly save my time by voting my post.
|
|
|
|
|
Thanks to both for the replies.
After some experimentation, I found that it was necessary to set the DataType for the parameter, else it did not give correct datasets for the query.
|
|
|
|
|
just kidding 
|
|
|
|
|
Too slow.[^]
ahmed zahmed wrote: just kidding
(I wasn't).
Today's lesson is brought to you by the word "niggardly". Remember kids, don't attribute to racism what can be explained by Scandinavian language roots.
-- Robert Royall
|
|
|
|
|
How to make VB6 compile in Delphi!!!!!!
Well someone had to....
Today's lesson is brought to you by the word "niggardly". Remember kids, don't attribute to racism what can be explained by Scandinavian language roots.
-- Robert Royall
|
|
|
|
|
I'm afraid you have to convert your VB code manually to Delphi.
This statement is false.
|
|
|
|
|
dan neely wrote: Well someone had to....
No doubt about it!
Just give them time.
In the mean-time could you please tell me what is going to happen to me over the next week?
Henry Minute
Do not read medical books! You could die of a misprint. - Mark Twain
Girl: (staring) "Why do you need an icy cucumber?"
“I want to report a fraud. The government is lying to us all.”
|
|
|
|
|
Just add \\ to the beginning of lines!
|
|
|
|
|
then
first , you can press cttl+ a.
second, press Del.
then you can build it .
|
|
|
|
|
I am working with Delphi 7 and Crystal 10 and I need to set the Page Orientation before printing... Does anyone know how to do this?
Stephen Lintott Bsc IT (RAU)
|
|
|
|