Lost Password?

Go Back   CodeCall Programming Forum > Software Development > Delphi/Python

Delphi/Python Forum for discussing Borland Delphi and Python coding techniques, tips and tricks. Ask your python questions here.

Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1 (permalink)  
Old 04-01-2008, 09:48 AM
hydenisama's Avatar   
hydenisama hydenisama is offline
Newbie
 
Join Date: Apr 2008
Location: Bandung, Indonesia
Posts: 7
Rep Power: 0
hydenisama is on a distinguished road
Send a message via MSN to hydenisama Send a message via Yahoo to hydenisama
Default How to Make IT Dictionary Software ?

Hi friends... I Want to make software with delphi. It's an assignment from my teacher for this semester. What should i start to study about ?
Help me with the tutorial guys...
What database should i use ? i believe There must be a great programmer will help me... I'm a newbie, bro !
Please....
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote

Sponsored Links
  #2 (permalink)  
Old 04-01-2008, 11:29 AM
WingedPanther's Avatar   
WingedPanther WingedPanther is offline
Super Mod
 
Join Date: Jul 2006
Age: 35
Posts: 1,751
Last Blog:
Game software (GURPS)
Rep Power: 24
WingedPanther is a name known to allWingedPanther is a name known to allWingedPanther is a name known to allWingedPanther is a name known to allWingedPanther is a name known to allWingedPanther is a name known to all
Default Re: How to Make IT Dictionary Software ?

FireBird is a good database that was open-sourced from Borland's Interbase DB. You can really use most any DB, however. The real question, however, is what do you want to create? Using a database for a calculator program, for instance, makes almost no sense.

Do you know the basic programming constructs? Loops, if-then-else, etc? Will you have to create new components or just use the ones that are part of Delphi? Have you done any Delphi/Pascal programming in the past? How about Java (you can carry over a LOT of Java concepts to Delphi)?
__________________
CodeCall Blog | CodeCall Wiki | Shareware | Linux Forum
Chat with other CodeCall members on IRC; connect to irc.codecall.net and join #codecall
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #3 (permalink)  
Old 04-02-2008, 12:49 AM
hydenisama's Avatar   
hydenisama hydenisama is offline
Newbie
 
Join Date: Apr 2008
Location: Bandung, Indonesia
Posts: 7
Rep Power: 0
hydenisama is on a distinguished road
Send a message via MSN to hydenisama Send a message via Yahoo to hydenisama
Default Re: How to Make IT Dictionary Software ?

Ok man ! i have try pascal or delphi before.. But i can't imagine how to start. Anyone have basic programming with delphi? Can i ? Please
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #4 (permalink)  
Old 04-02-2008, 10:49 AM
WingedPanther's Avatar   
WingedPanther WingedPanther is offline
Super Mod
 
Join Date: Jul 2006
Age: 35
Posts: 1,751
Last Blog:
Game software (GURPS)
Rep Power: 24
WingedPanther is a name known to allWingedPanther is a name known to allWingedPanther is a name known to allWingedPanther is a name known to allWingedPanther is a name known to allWingedPanther is a name known to all
Default Re: How to Make IT Dictionary Software ?

What are the specifications for your project? A lot of the time, people get stuck because they don't have a clear goal in mind. Do you just want to display a list of IT terms and their definitions, have a search capacity, something else? Without a vision of what you want the software to do, we can't give you much advice.
__________________
CodeCall Blog | CodeCall Wiki | Shareware | Linux Forum
Chat with other CodeCall members on IRC; connect to irc.codecall.net and join #codecall
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #5 (permalink)  
Old 04-03-2008, 01:35 AM
hydenisama's Avatar   
hydenisama hydenisama is offline
Newbie
 
Join Date: Apr 2008
Location: Bandung, Indonesia
Posts: 7
Rep Power: 0
hydenisama is on a distinguished road
Send a message via MSN to hydenisama Send a message via Yahoo to hydenisama
Default Re: How to Make IT Dictionary Software ?

Just when we click a button we can know what the mean of an IT word. I need more about the description to make the storage of IT vocabulary. Therefore i need some database connection.
How to make database?
How to interact with the database?
And What database should i use ?
Thank You Bro !
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote

Sponsored Links
  #6 (permalink)  
Old 04-03-2008, 01:37 AM
hydenisama's Avatar   
hydenisama hydenisama is offline
Newbie
 
Join Date: Apr 2008
Location: Bandung, Indonesia
Posts: 7
Rep Power: 0
hydenisama is on a distinguished road
Send a message via MSN to hydenisama Send a message via Yahoo to hydenisama
Default Re: How to Make IT Dictionary Software ?

Can i have an e-book about delphi and data structure ?
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #7 (permalink)  
Old 04-03-2008, 10:45 AM
WingedPanther's Avatar   
WingedPanther WingedPanther is offline
Super Mod
 
Join Date: Jul 2006
Age: 35
Posts: 1,751
Last Blog:
Game software (GURPS)
Rep Power: 24
WingedPanther is a name known to allWingedPanther is a name known to allWingedPanther is a name known to allWingedPanther is a name known to allWingedPanther is a name known to allWingedPanther is a name known to all
Default Re: How to Make IT Dictionary Software ?

A google search for Delphi tutorials returned numerous useful results.
If your IT Dictionary is going to be static, you can use many different ways to store it, including a database. If it will be dynamic, you will need either a database or a file to store it on.
Making and interacting with a database depends a little bit on the type of database you use, but a TQuery is the standard object for interacting with it. You will need to learn SQL to work with the data. The database you choose doesn't really matter, since you aren't doing anything that is likely to be sensitive to issues like scaling well.

I would recommend that you stop worrying about the database for a moment, and start worrying about what, from a user's perspective, the program has to accomplish. If this is an assignment where you HAVE to use certain technologies, then figure out what that technology has to do with providing the functionality. For example, don't buy an Oracle license for $2000 dollars, if a text file will do the job. After you determine what needs to be done, and what techniques/technologies you need to do the job, you can ask questions like "which database should I use?"
__________________
CodeCall Blog | CodeCall Wiki | Shareware | Linux Forum
Chat with other CodeCall members on IRC; connect to irc.codecall.net and join #codecall
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #8 (permalink)  
Old 04-05-2008, 01:41 AM
hydenisama's Avatar   
hydenisama hydenisama is offline
Newbie
 
Join Date: Apr 2008
Location: Bandung, Indonesia
Posts: 7
Rep Power: 0
hydenisama is on a distinguished road
Send a message via MSN to hydenisama Send a message via Yahoo to hydenisama
Default Re: How to Make IT Dictionary Software ?

Ok thats enough for now i want to search about my project. is that good if i use ADO object ? I'm still learn that.
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #9 (permalink)  
Old 04-06-2008, 08:15 AM
WingedPanther's Avatar   
WingedPanther WingedPanther is offline
Super Mod
 
Join Date: Jul 2006
Age: 35
Posts: 1,751
Last Blog:
Game software (GURPS)
Rep Power: 24
WingedPanther is a name known to allWingedPanther is a name known to allWingedPanther is a name known to allWingedPanther is a name known to allWingedPanther is a name known to allWingedPanther is a name known to all
Default Re: How to Make IT Dictionary Software ?

ADO can be used if you want. It will save you from having to install BDE with your software.
__________________
CodeCall Blog | CodeCall Wiki | Shareware | Linux Forum
Chat with other CodeCall members on IRC; connect to irc.codecall.net and join #codecall
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
Reply



Currently Active Users Viewing This Thread: 1 (0 members and 1 guests)
 
Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On

Similar Threads
Thread Thread Starter Forum Replies Last Post
Successfully Selling Your Software Jordan Tutorials, Classes and Code 9 05-19-2008 07:25 AM
How to make Dumplings ahsan16 The Lounge 2 01-11-2007 10:55 PM
How much do you make from Software Sells RobSoftware Business and Legal 6 01-09-2007 06:05 PM
What kind of software do you make? Kaabi General Programming 7 08-24-2006 05:13 PM


All times are GMT -5. The time now is 10:18 AM.

Contest Stats

dargueta ........ 93.00000
John ........ 87.50000
Xav ........ 50.00000
MeTh0Dz ........ 20.00000
gaylo565 ........ 18.00000
Johnnyboy ........ 3.00000

Contest Rules

Ads