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 


[RELEASE] Easy Launch v.1.8 by AndrewMan
Goto page 1, 2  Next
 
Post new topic   Reply to topic    Cheat Engine Forum Index -> Computer Talk
View previous topic :: View next topic  
Author Message
AndrewMan
Grandmaster Cheater Supreme
Reputation: 0

Joined: 01 Aug 2007
Posts: 1257

PostPosted: Sat Mar 22, 2008 9:30 am    Post subject: [RELEASE] Easy Launch v.1.8 by AndrewMan Reply with quote

VERSION 1.9 COMING SOON


I renamed Daily Helper to Easy Launch.

Hope you like. This is v.1.8 Please email [email protected] or send me a msg if there are any bugs!

I already something under "FAQ/How To Use" has a bug, so don't complain about it, I will fix it when Version 2 is out.

Things I need help with for Version 2:

-The "Kill" feature has some bugs in it. I need help setting up a more efficient way to kill a process.
-I need someone to help with Registry keys for saving info.
-Someone to tell me how to code HotKeys
-I need a more efficient UI.
-I need help setting up a tray icon, and a way to auto-load on startup (I think I know how to do auto-load on startup).

~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~

Screenie:





Download v.1.8 (latest version):

Ziddu: http://www.ziddu.com/download.php?uid=bLGenZipbrKenOKnZ6qhkZSoZKybm5em7

Rapidshare: http://rapidshare.com/files/101496982/Easy_Launch_v.1.8.zip

(I prefer Ziddu, but choose whatever you want)

_________________


Last edited by AndrewMan on Sat May 24, 2008 2:02 am; edited 6 times in total
Back to top
View user's profile Send private message
Heartless
I post too much
Reputation: 0

Joined: 03 Dec 2006
Posts: 2436

PostPosted: Sat Mar 22, 2008 9:36 am    Post subject: Reply with quote

When is 2.0 coming out?
_________________
What dosen't kill you, usually does the second time.
Back to top
View user's profile Send private message
AndrewMan
Grandmaster Cheater Supreme
Reputation: 0

Joined: 01 Aug 2007
Posts: 1257

PostPosted: Sat Mar 22, 2008 12:56 pm    Post subject: Reply with quote

Soon. Right now I am very busy and its gonna take me like a week or two to make v.2
_________________
Back to top
View user's profile Send private message
Madman
I post too much
Reputation: 1

Joined: 04 May 2006
Posts: 3978

PostPosted: Sat Mar 22, 2008 1:30 pm    Post subject: Reply with quote

I don't think you'll have to look far for somebody to design a better GUI, lol. Laughing
Back to top
View user's profile Send private message
0veriderJ
Advanced Cheater
Reputation: 0

Joined: 12 Feb 2008
Posts: 97

PostPosted: Sat Mar 22, 2008 3:23 pm    Post subject: Reply with quote

Nice, so a few weeks till version 2.0 ?
_________________
Back to top
View user's profile Send private message
AndrewMan
Grandmaster Cheater Supreme
Reputation: 0

Joined: 01 Aug 2007
Posts: 1257

PostPosted: Sat Mar 22, 2008 6:23 pm    Post subject: Reply with quote

0veriderJ wrote:
Nice, so a few weeks till version 2.0 ?


Yep. As soon as I can get some people to help me with hotkeys...

_________________
Back to top
View user's profile Send private message
Pseudo Xero
I post too much
Reputation: 0

Joined: 16 Feb 2007
Posts: 2607

PostPosted: Sat Mar 22, 2008 6:29 pm    Post subject: Reply with quote

AndrewMan wrote:
0veriderJ wrote:
Nice, so a few weeks till version 2.0 ?


Yep. As soon as I can get some people to help me with hotkeys...

RegisterHotKey() or GetAsyncKeyState()...

_________________
haxory' wrote:
can't VB do anything??
windows is programmed using VB right? correct me if im wrong.

so all things in windows you have like the start menu is a windows form too.
Back to top
View user's profile Send private message
AndrewMan
Grandmaster Cheater Supreme
Reputation: 0

Joined: 01 Aug 2007
Posts: 1257

PostPosted: Sat Mar 22, 2008 7:43 pm    Post subject: Reply with quote

Xenophobe wrote:
AndrewMan wrote:
0veriderJ wrote:
Nice, so a few weeks till version 2.0 ?


Yep. As soon as I can get some people to help me with hotkeys...

RegisterHotKey() or GetAsyncKeyState()...


Thanks Rolling Eyes

Edit: Doesnt work with VB.Net

2nd Edit:

P
Code:
rivate Sub Form1_KeyDown(ByVal sender As Object, ByVal e As System.Windows.Forms.KeyEventArgs) Handles MyBase.KeyDown
        If e.KeyCode = System.Windows.Forms.Keys.F11 Then
            MsgBox("F11 Key was pressed")
        End If
    End Sub


Now it works...

_________________
Back to top
View user's profile Send private message
Pseudo Xero
I post too much
Reputation: 0

Joined: 16 Feb 2007
Posts: 2607

PostPosted: Sat Mar 22, 2008 7:58 pm    Post subject: Reply with quote

AndrewMan wrote:
Xenophobe wrote:
AndrewMan wrote:
0veriderJ wrote:
Nice, so a few weeks till version 2.0 ?


Yep. As soon as I can get some people to help me with hotkeys...

RegisterHotKey() or GetAsyncKeyState()...


Thanks Rolling Eyes

Edit: Doesnt work with VB.Net

2nd Edit:

P
Code:
rivate Sub Form1_KeyDown(ByVal sender As Object, ByVal e As System.Windows.Forms.KeyEventArgs) Handles MyBase.KeyDown
        If e.KeyCode = System.Windows.Forms.Keys.F11 Then
            MsgBox("F11 Key was pressed")
        End If
    End Sub


Now it works...

You're welcome. Rolling Eyes

_________________
haxory' wrote:
can't VB do anything??
windows is programmed using VB right? correct me if im wrong.

so all things in windows you have like the start menu is a windows form too.
Back to top
View user's profile Send private message
AndrewMan
Grandmaster Cheater Supreme
Reputation: 0

Joined: 01 Aug 2007
Posts: 1257

PostPosted: Sat Mar 22, 2008 11:17 pm    Post subject: Reply with quote

Xenophobe wrote:
AndrewMan wrote:
Xenophobe wrote:
AndrewMan wrote:
0veriderJ wrote:
Nice, so a few weeks till version 2.0 ?


Yep. As soon as I can get some people to help me with hotkeys...

RegisterHotKey() or GetAsyncKeyState()...


Thanks Rolling Eyes

Edit: Doesnt work with VB.Net

2nd Edit:

P
Code:
rivate Sub Form1_KeyDown(ByVal sender As Object, ByVal e As System.Windows.Forms.KeyEventArgs) Handles MyBase.KeyDown
        If e.KeyCode = System.Windows.Forms.Keys.F11 Then
            MsgBox("F11 Key was pressed")
        End If
    End Sub


Now it works...

You're welcome. Rolling Eyes


Haha, it was actually a totally different code, but thanks for giving me an idea on how to do it. Shocked

_________________
Back to top
View user's profile Send private message
Pseudo Xero
I post too much
Reputation: 0

Joined: 16 Feb 2007
Posts: 2607

PostPosted: Sun Mar 23, 2008 12:13 am    Post subject: Reply with quote

AndrewMan wrote:
Xenophobe wrote:
AndrewMan wrote:
Xenophobe wrote:
AndrewMan wrote:
0veriderJ wrote:
Nice, so a few weeks till version 2.0 ?


Yep. As soon as I can get some people to help me with hotkeys...

RegisterHotKey() or GetAsyncKeyState()...


Thanks Rolling Eyes

Edit: Doesnt work with VB.Net

2nd Edit:

P
Code:
rivate Sub Form1_KeyDown(ByVal sender As Object, ByVal e As System.Windows.Forms.KeyEventArgs) Handles MyBase.KeyDown
        If e.KeyCode = System.Windows.Forms.Keys.F11 Then
            MsgBox("F11 Key was pressed")
        End If
    End Sub


Now it works...

You're welcome. Rolling Eyes


Haha, it was actually a totally different code, but thanks for giving me an idea on how to do it. Shocked

I know it was, I was being sarcastic, just like you. Razz

_________________
haxory' wrote:
can't VB do anything??
windows is programmed using VB right? correct me if im wrong.

so all things in windows you have like the start menu is a windows form too.
Back to top
View user's profile Send private message
hcavolsdsadgadsg
I'm a spammer
Reputation: 26

Joined: 11 Jun 2007
Posts: 5801

PostPosted: Sun Mar 23, 2008 2:01 am    Post subject: Reply with quote

You actually have to have the form focused for that to work, as far as I know.

Using RegisterHotKey or GetAsyncKeyState won't cause such an issue
Back to top
View user's profile Send private message
jason744
Grandmaster Cheater
Reputation: 0

Joined: 25 Nov 2007
Posts: 638

PostPosted: Sun Mar 23, 2008 3:55 am    Post subject: Reply with quote

Add Pidgin to the IM.
Back to top
View user's profile Send private message
MrQuidam
Advanced Cheater
Reputation: 0

Joined: 15 Mar 2008
Posts: 78

PostPosted: Sun Mar 23, 2008 6:20 pm    Post subject: Reply with quote

Ha, cool. I made something like this, except it has all my installed MMORPGs in it, and any hacks that I have for it are in a sub cat for each game. Still kinda buggy, but its helped me keep things nice and easy.
Back to top
View user's profile Send private message MSN Messenger
._-Hacker-_.
Newbie cheater
Reputation: 0

Joined: 21 Mar 2008
Posts: 11
Location: My Computer

PostPosted: Sun Mar 30, 2008 6:08 pm    Post subject: Reply with quote

i have a really really really noobie question...............wut does it do
Back to top
View user's profile Send private message
Display posts from previous:   
Post new topic   Reply to topic    Cheat Engine Forum Index -> Computer Talk All times are GMT - 6 Hours
Goto page 1, 2  Next
Page 1 of 2

 
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 cannot download files in this forum


Powered by phpBB © 2001, 2005 phpBB Group

CE Wiki   IRC (#CEF)   Twitter
Third party websites