Cheat Engine Forum Index Cheat Engine
The Official Site of Cheat Engine
 
 FAQFAQ   SearchSearch   MemberlistMemberlist   UsergroupsUsergroups   RegisterRegister 
 ProfileProfile   Log in to check your private messagesLog in to check your private messages   Log inLog in 


Delphi Ideas
Goto page 1, 2, 3  Next
 
Post new topic   Reply to topic    Cheat Engine Forum Index -> General programming
View previous topic :: View next topic  
Author Message
Gorgan123
Master Cheater
Reputation: 0

Joined: 01 Aug 2006
Posts: 256

PostPosted: Fri Jul 13, 2007 7:00 pm    Post subject: Delphi Ideas Reply with quote

(Is this the right place to post this?)
I need some ideas for programs/applications to make in delphi to help practise. Any ideas?

_________________
I am NOT Jared.
Back to top
View user's profile Send private message
gamesguru
Grandmaster Cheater
Reputation: 0

Joined: 22 Mar 2006
Posts: 926
Location: detroit

PostPosted: Fri Jul 13, 2007 9:26 pm    Post subject: Reply with quote

remake minesweeper
_________________
Back to top
View user's profile Send private message
hcavolsdsadgadsg
I'm a spammer
Reputation: 26

Joined: 11 Jun 2007
Posts: 5801

PostPosted: Fri Jul 13, 2007 9:55 pm    Post subject: Reply with quote

Calculator is the obvious answer.
Back to top
View user's profile Send private message
BRONiUS
Expert Cheater
Reputation: 0

Joined: 26 Jun 2006
Posts: 154
Location: Vilnius, Lithuania

PostPosted: Sat Jul 14, 2007 2:39 am    Post subject: Reply with quote

Hello World v2.
_________________


Rhapsody in Blue is Epic.
Back to top
View user's profile Send private message
Ouch!
How do I cheat?
Reputation: 0

Joined: 09 Jan 2007
Posts: 0

PostPosted: Sat Jul 14, 2007 5:25 am    Post subject: Reply with quote

A calculator is good starting program.
_________________
Haha, You Actually Bothered To Read This!

____________
Back to top
View user's profile Send private message
Kevin
Grandmaster Cheater Supreme
Reputation: 0

Joined: 07 Mar 2007
Posts: 1139
Location: Spiderman-World

PostPosted: Sat Jul 14, 2007 5:54 am    Post subject: Reply with quote

A webbrowser.
Back to top
View user's profile Send private message MSN Messenger
HomerSexual
Grandmaster Cheater Supreme
Reputation: 5

Joined: 03 Feb 2007
Posts: 1657

PostPosted: Sat Jul 14, 2007 7:12 am    Post subject: Reply with quote

heres what i've made

text editor, add as many features as you can
Mp3 Player, ''
WebBrowser, ''
String Encryptor
Trainers, didnt use your tut kasper Razz
attempting to make a game, it is very long and boring

_________________
Back to top
View user's profile Send private message
h4c0r-BG
Master Cheater
Reputation: 0

Joined: 29 Nov 2006
Posts: 449
Location: The yogurt country

PostPosted: Sat Jul 14, 2007 8:37 am    Post subject: Reply with quote

blankrider can you share the source of the trainer. Thanks! Very Happy

Ontopic: A simple game will be fine. Or some kind of program which will help you at school.

_________________

Back to top
View user's profile Send private message
malfunction
Grandmaster Cheater Supreme
Reputation: 0

Joined: 30 Jan 2007
Posts: 1015
Location: http://www.behindthecorner.com/

PostPosted: Sat Jul 14, 2007 8:45 am    Post subject: Reply with quote

Contact Manager FTW
programs iv made:
2 x contact mngr
text editor
games
rolodex
clock
calender
am/pm time
3pointcircle
and lots of others
(some in VB, some in Delphi)

_________________
Back to top
View user's profile Send private message
Kevin
Grandmaster Cheater Supreme
Reputation: 0

Joined: 07 Mar 2007
Posts: 1139
Location: Spiderman-World

PostPosted: Sat Jul 14, 2007 9:26 am    Post subject: Reply with quote

h4c0r,

ShockwaveFlash1.LoadMovie(0, edit1.text) // Edit1.text can be changed with flash game url.

ShockwaveFlash1.SetVariable(edit2.text, edit3.text) // You can use if you want to set a variable like Lives, then not being able to edit it like with a text box.
Shockwaveflash1.SetVariable ('Lives', '99')
Back to top
View user's profile Send private message MSN Messenger
HomerSexual
Grandmaster Cheater Supreme
Reputation: 5

Joined: 03 Feb 2007
Posts: 1657

PostPosted: Sat Jul 14, 2007 9:54 am    Post subject: Reply with quote

what kevinnn said ^^^^^

i also made a contact book, reminded me lol

try to make one of those

ListBox
Add contact
Delete
Move Up
Move Down

Use my dat tut to figure out how to save the contacts each time you open it

ill post my source if anyone wants

its smexy

_________________
Back to top
View user's profile Send private message
Kevin
Grandmaster Cheater Supreme
Reputation: 0

Joined: 07 Mar 2007
Posts: 1139
Location: Spiderman-World

PostPosted: Sat Jul 14, 2007 10:15 am    Post subject: Reply with quote

blank, i would really love to see the source, for learning purposses Very HappyVery Happy

i love looking through sources, which is probably one of the best ways to learn in delphi (helped me making hotkeys, autoclickers, and alot more!)

Also Gorgan, try use hotkeys for your features.

drop a timer and double click it.

begin
if odd(GetAsyncKey VK_RETURN) then
begin
webbrowser1.navigate(edit1.text)
end;

not 100% sure its a correct code... but it should work like this: when you click enter, your webbrowser loads the url you entered in edit1.
Back to top
View user's profile Send private message MSN Messenger
DeltaFlyer
Grandmaster Cheater
Reputation: 0

Joined: 22 Jul 2006
Posts: 666

PostPosted: Sat Jul 14, 2007 2:43 pm    Post subject: Reply with quote

That wastes CPU power.

Just add something like this to the event handler that does the handling for key down:

Code:

if Key = Chr(13) then
 {do whatever}

_________________

Wow.... still working at 827... what's INCA thinking?
zomg l33t hax at this place (IE only). Over 150 people have used it, what are YOU waiting for?
Back to top
View user's profile Send private message
hcavolsdsadgadsg
I'm a spammer
Reputation: 26

Joined: 11 Jun 2007
Posts: 5801

PostPosted: Sat Jul 14, 2007 4:13 pm    Post subject: Reply with quote

But does doing that actually work while your program doesn't have focus?
Back to top
View user's profile Send private message
DeltaFlyer
Grandmaster Cheater
Reputation: 0

Joined: 22 Jul 2006
Posts: 666

PostPosted: Sat Jul 14, 2007 7:05 pm    Post subject: Reply with quote

slovach wrote:
But does doing that actually work while your program doesn't have focus?


Now why would anyone want the web browser to refresh when the program doesn't have focus? Whoever is using the program would lag him/herself to hell if he/she is programming while having that code running in the background.

_________________

Wow.... still working at 827... what's INCA thinking?
zomg l33t hax at this place (IE only). Over 150 people have used it, what are YOU waiting for?
Back to top
View user's profile Send private message
Display posts from previous:   
Post new topic   Reply to topic    Cheat Engine Forum Index -> General programming All times are GMT - 6 Hours
Goto page 1, 2, 3  Next
Page 1 of 3

 
Jump to:  
You cannot post new topics in this forum
You cannot reply to topics in this forum
You cannot edit your posts in this forum
You cannot delete your posts in this forum
You cannot vote in polls in this forum
You cannot attach files in this forum
You can download files in this forum


Powered by phpBB © 2001, 2005 phpBB Group

CE Wiki   IRC (#CEF)   Twitter
Third party websites