Forum: Pascal and Delphi Nov 23rd, 2005 |
| Replies: 4 Views: 6,273 jwentings story is a good one.
There is a little more sweet and sour in this. A fellow called Anders Hejlsberg worked for many years at Borland. His talents gave us Turbo Pascal and later... |
Forum: Pascal and Delphi Nov 13th, 2005 |
| Replies: 4 Views: 6,273 Delphi is a rapid development system using Object Pascal for its language. A fancy IDE, like Visual C++ uses C++. Delphi came first. |
Forum: Pascal and Delphi Nov 13th, 2005 |
| Replies: 4 Views: 2,060 Can you temporarily add a few write statements to your code to display and follow the value of cant_op? |
Forum: Pascal and Delphi Nov 12th, 2005 |
| Replies: 4 Views: 2,060 What does your for loop code look like? The compiler obviously has a reason to skip! |
Forum: Pascal and Delphi Mar 19th, 2005 |
| Replies: 3 Views: 3,171 Are there any good and free Pascal compilers out there? |
Forum: Pascal and Delphi Feb 27th, 2005 |
| Replies: 0 Views: 10,413 The code shows you how to create a window without a titlebar that can be dragged with the mouse. Set the FormStyle property to fsStayOnTop. The form contains a small 18 button calculator. When you... |
Forum: Pascal and Delphi Feb 6th, 2005 |
| Replies: 0 Views: 18,876 You can look at a selected file's date and time stamp and change it with this Delphi program. XP files need a little extra TLC, but it's taken care of too. |
Forum: Pascal and Delphi Feb 3rd, 2005 |
| Replies: 0 Views: 33,542 A data stream is used to load a bitmap image and convert it to a jpeg image. The converted image is displayed and saved to a .jpg file. |
Forum: Pascal and Delphi Dec 31st, 2004 |
| Replies: 1 Views: 11,328 The function Delay() allows access to other events during the delay. For instance a certain key could be used to interrupt a lenghty delay. The Win32 API function Sleep() ignores events, maybe it... |
Forum: Pascal and Delphi Dec 19th, 2004 |
| Replies: 0 Views: 6,276 This Delphi procedure sends the text contained in a multiline editbox (memo in Delphi lingo) to a printer. The font and font size can be specified. |
Forum: Pascal and Delphi Dec 18th, 2004 |
| Replies: 0 Views: 10,169 Just to give you an idea what Delphi can do, here is a plot of the ever popular sin(x). I have put enough information into the code comments so you can build the form. The PaintBox Paint Event... |
Forum: Pascal and Delphi Dec 18th, 2004 |
| Replies: 3 Views: 8,833 I think Borland gave one of the older versions (4?) of Delphi away for free. Check their site. |
Forum: Pascal and Delphi Dec 17th, 2004 |
| Replies: 2 Views: 10,826 A function that takes a string and returns the number of words in the string. An example of using pointers in Pascal. |
Forum: Pascal and Delphi Dec 17th, 2004 |
| Replies: 3 Views: 8,833 This is Delphi code, just testing if there is some interest. |