Jul 6, 2008

Delphi & (Object) Pascal

Free Web Hosting > Computers & Tech > Programming > Programming General > Delphi & (Object) Pascal
free web hosting

Delphi & (Object) Pascal


Got an Opinion! Express your Views! (no registration):-
Add your Reply/ Opinion/ Views/ Comments/ Suggestion/ Questions/ Queries etc.
Posts with decent grammar & English will be accepted and please refrain from profanities.
For asking a Question, We recommend you to sign-up (for free) so that you can track the topic easily.

Nature of your Post*: Opinion/ Reply/ Comments
Question/Query
Feedback to us.
       
Name   Email
Title/Question*

(Maximum characters: 10,000)
You have characters left.
Confirm Code:

Recent Queries:-
  1. pascal lazarus tutorial download - 12.82 hr back.
  2. delphi clone - 15.76 hr back.
  3. free pascal dll example lazarus - 26.99 hr back.
  4. find object class delphi - 43.49 hr back.
  5. make game using pascal - 45.97 hr back.
  6. delphi get answer from command line - 48.39 hr back.
  7. calling a dll with multiple forms in delphi - 54.51 hr back.
Similar Topics

Keywords : delphi pascal

  1. Delphi - Tfilestream - Object Persistence... use TFileStream (1)
    OK. This tutorial may be helpful to people who use Delphi, for anyone else... it will probably be
    boring /smile.gif' border='0' style='vertical-align:middle' alt='smile.gif' /> . This tutorial is
    going to explain briefly how to use the TFileStream Class. For anyone who has wanted to say... save
    any data from a listbox and during run-time you wanted to append different information to it, or
    throughout the applications running time and then save the information when the application closes
    then you should use the TFileSteam Class. The great thing about this is it can re...
  2. Some Questions About Pascal (not H/w Help) - Just a few questions (0)
  3. How To Call A Dll From Delphi - Last article I showed how to create a DLL, now we are going to learn h (0)
    In this example, we are going to use a Form, 2 text box (which the user should enter the both real
    numbers) and a button. See the Source example: unit usadll; interface uses Windows, Messages,
    SysUtils, Classes, Graphics, Controls, Forms, Dialogs, StdCtrls; type TForm1 = class(TForm)
    Label1: TLabel; Label2: TLabel; Button1: TButton; Edit1: TEdit; Edit2: TEdit; procedure
    Button1Click(Sender: TObject); private { Private declarations } public { Public declarations } end;
    function Max(a, b : double):double;stdcall; var Form1: TForm1; implementation {$R *....
  4. Creating Dll With Delphi - show how to pass functions and procedures in DELPHI (0)
    First of all, I'd like to apologise because my English is not tha good. Well, It's a very
    popular doubt. like How can I use a DLL? How can I create one? What is it for? So, DLL or Dynamic
    Link Libraries, allows a set of functions developed in one especific programmer language to be used
    for softwares developed in other language. For example, you can create a DLL in DELPHI and use it
    with a software developed in C++ for example. So, let's get started: Select the Item NEW in the
    menu FILE to show the dialog box NEW ITEMS. Now select DLL and OK to generate ...
  5. Uploading File Using Delphi To A Php Upload Script - delphi 6 would be prefered (4)
    simple question: how to upload files using delphi, using http protokol that will be received by php
    script ? ex: delphi ---------------> www.giveittome.com/whereisit.php thanks Oncom Beureum...
  6. Game In Pascal With Good Graphics - (0)
    I am going to write game in pascal (go-kart racing) I choosed pascal becouse:it's using Dos
    (borland pascal7.0) and dos requres less resources /smile.gif" style="vertical-align:middle"
    emoid=":)" border="0" alt="smile.gif" /> i had made simple
    games in pascal already i need :Vesa graphics /huh.gif" style="vertical-align:middle"
    emoid=":huh:" border="0" alt="huh.gif" /> ,mouse /mellow.gif" style="vertical-align:middle"
    emoid=":mellow:" border="0" alt="mellow.gif" /> pleese help me!...
  7. Borland Delphi [resources] - (0)
    I don't think there is too many Delphi developers on here (though I think there is a few), I
    would regardless like to share the resources (websites) that I use myself for help with this great
    IDE/language. Delphi Basics : http://www.delphibasics.co.uk Very useful for not only a beginner
    but a reference for anyone, it also has information and tutorials for the .NET version. Delphi
    Pages : http://www.delphipages.com/threads The ONLY Delphi forum (aside from game programming
    specific ones) that I frequent. It also has a nice list of free/shareware/commercial...
  8. Pascal For Beginners - Part Two - Conditions and loops (0)
    This is the second part of my Pascal tutorial for beginners. Here is what the complete tutorial
    contains, and it might get expanded (some parts are not written yet): Part One Introduction
    What do you need to start? The program layout (organisation) and syntax Variables And what if
    there is an error? "Hello World" Input & Output Examples Swapping numbers Reading and writing
    multiple variables Part Two Conditions The IF condition The CASE condition Loops
    The FOR loop The WHILE loop The REPEAT loop Examples Checking whether a num...
  9. Resources For Beginner Delphi Programmer ? - Delphi 7.0 Personal (11)
    Hi, I've just purcased Borland Delphi 7.0 Personal, as I've have an idea to an publication
    that I wish to create. But I seemed much more complicated than I was expected. I've been
    working with webdesigning for several years, and also PHP programming, but never worked with any
    core programming applications like this. My question is as follow. Do anyone have any expirence
    about Delphi, and do any knows where to find turtorials or even better samples, as I really like to
    try this out and then further as it looks funny and cool. My application idea is somethi...
  10. Pascal For Beginners - Part One - The syntax, variables, input and output (7)
    This is the first part of my Pascal tutorial for beginners. Here is what the complete tutorial
    contains, and it might get expanded (some parts are not written yet): Part One Introduction
    What do you need to start? The program layout (organisation) and syntax Variables And what if
    there is an error? "Hello World" Input & Output Examples Swapping numbers Reading and writing
    multiple variables Part Two Conditions The IF condition The CASE condition Loops
    The FOR loop The WHILE loop The REPEAT loop Examples Checking whether a numb...
  11. Delphi 6 And XP - (2)
    My old Delphi 4 will not run on an XP system. Does Delphi 6 run in an XP environment and/or will an
    application developed in Delphi 6 run in an XP environment?...
  12. Hide Delphi's Splash Screen - Delphi 6 - (0)
    Hi is it possible to hide Delphi's splash screen at the beginning, Delphi 6? I tried
    "delphi32.exe -ns" but doesn't work, is there a new switch for this? Does anybody have a list
    of switch commands for delphi32.exe command line execution?...
  13. Keyboard Simulation - Low-level / Pascal / Delphi / Keyboard input simulation (3)
    I'm trying to simulate a key press in an external program (actually a game). Using the
    keybd_event does work for regular Windows programs (like Notepad, for example), but not for the
    game. I suppose this happens because it uses DirectX libraries, and also this simulation provided by
    keybd_event isn't, let's say, low-level enough. Would someone be able to help me on this?
    I'm using currently Delphi (Pascal), but if needed I suppose I can manage to apply some assembly
    code or something. Thanks in advance....
  14. Help: Change Language On Fly With Delphi - delphi 5-8 (3)
    Hi guys, what is the best option for delphi if I want to change languages on fly in my applications?
    thx Wojta...
  15. Can Delphi Be Used For Distributed Appz? - (1)
    I am about to start a project that will require me to write a client program which will access a
    database (mysql) across the internet. Will Delphi 2006 Professional have the tools I need to do
    this, or will I need to get Enterprise or Architect. Note that we are not planning on using model
    driven architecture in this project, so buying Enterprise or Architect for Bold or ECO isn't
    required. Thanks wojta...
  16. List Of Delphi Keyboard Shortcut - Very Useful - (2)
    Code Insight Code Parameters : Ctrl-Shift-Space Code Completion : Ctrl-Space Code
    Templates : Ctrl-J Class Completion Class Completion : Ctrl-Shift-C Class Nav
    Up Ctrl-Shift-Up Class Nav Down Ctrl-Shift-Down Code Browsing (D6 and above) Symbol Browsing :
    Alt-Up Browse Forward : Alt-Right Browse Backward : Alt-Left Message Window Previous
    Message : Alt-F7 Next Message : Alt-F8 IDE Windows Code Explorer : Ctrl-Shift-E Project
    Manager : Ctrl-Alt-F11 Window List : Alt-0 (zero) Object Inspector : F11 Debugger Windows
    Event Log :...
  17. Where Can I Find Free Skin Component For Delphi - (1)
    Somebody knows some component delphi that I allow to use skin in my application? If possible that he
    is free....
  18. Delphi 2006 And C++builder 2006 - (0)
    Borland announced Borland Developer Studio, a multi-language developer environment for Microsoft®
    Windows® and .NET applications. the new versions of Borland Delphi 2006, Borland C++Builder 2006,
    previously codenamed "DeXter", and C#Builder 2006 are included in this Developer Studio together.
    According to Borland website, those new products will come with powerful new productivity and
    performance-boosting capabilities. The good thing is you purchase any of these individual products,
    you will get full support for all four languages. Good, isn;t it?? This Developer Stud...
  19. Free Open Source Delphi Clone - Lazarus (1)
    I had recently uninstalled Delphi, since it was too much of a strain on my system. m^e then advised
    me to look for light weight Pascal Compilers. I followed his excellent advice and after some time
    browsing and searching, I stumbled across Lazarus . Needless to say I hit the download button,
    and much to my surprise it looked just like Delphi, perhaps a few alterations here and there, but
    overall it's identical. /smile.gif' border='0' style='vertical-align:middle' alt='smile.gif'
    /> But then free, also there are versions available for Linux AND Windows AND Mac O...



Looking for Delphi, &, (Object), Pascal

Searching Video's for Delphi, &, (Object), Pascal
advertisement




Delphi & (Object) Pascal



 

 

 

 

ADD REPLY / Got an Opinion! Remove these ADs! RAPID SEARCH! Free Web Hosting [X]
Express your Opinions, Thoughts or Contribute more info. to help others.
Ask your Doubts & Queries to get answers, So that "Together We can help others!"
Register FREE for AD-FREE forum, Create your own topics, Ask Questions, track topics, setup subscriptions & notifications and Get a Free Website w/ Email and FTP.
500MB Space *No Ads*, CPanel, FTP, PHP, MySQL, EMails - 100% FREE