| View previous topic :: View next topic |
| Author |
Message |
AndrewMan Grandmaster Cheater Supreme
Reputation: 0
Joined: 01 Aug 2007 Posts: 1257
|
Posted: Sat Mar 22, 2008 9:30 am Post subject: [RELEASE] Easy Launch v.1.8 by AndrewMan |
|
|
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 |
|
 |
Heartless I post too much
Reputation: 0
Joined: 03 Dec 2006 Posts: 2436
|
Posted: Sat Mar 22, 2008 9:36 am Post subject: |
|
|
When is 2.0 coming out?
_________________
What dosen't kill you, usually does the second time. |
|
| Back to top |
|
 |
AndrewMan Grandmaster Cheater Supreme
Reputation: 0
Joined: 01 Aug 2007 Posts: 1257
|
Posted: Sat Mar 22, 2008 12:56 pm Post subject: |
|
|
Soon. Right now I am very busy and its gonna take me like a week or two to make v.2
_________________
|
|
| Back to top |
|
 |
Madman I post too much
Reputation: 1
Joined: 04 May 2006 Posts: 3978
|
Posted: Sat Mar 22, 2008 1:30 pm Post subject: |
|
|
I don't think you'll have to look far for somebody to design a better GUI, lol.
|
|
| Back to top |
|
 |
0veriderJ Advanced Cheater
Reputation: 0
Joined: 12 Feb 2008 Posts: 97
|
Posted: Sat Mar 22, 2008 3:23 pm Post subject: |
|
|
Nice, so a few weeks till version 2.0 ?
_________________
|
|
| Back to top |
|
 |
AndrewMan Grandmaster Cheater Supreme
Reputation: 0
Joined: 01 Aug 2007 Posts: 1257
|
Posted: Sat Mar 22, 2008 6:23 pm Post subject: |
|
|
| 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 |
|
 |
Pseudo Xero I post too much
Reputation: 0
Joined: 16 Feb 2007 Posts: 2607
|
Posted: Sat Mar 22, 2008 6:29 pm Post subject: |
|
|
| 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 |
|
 |
AndrewMan Grandmaster Cheater Supreme
Reputation: 0
Joined: 01 Aug 2007 Posts: 1257
|
Posted: Sat Mar 22, 2008 7:43 pm Post subject: |
|
|
| 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
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 |
|
 |
Pseudo Xero I post too much
Reputation: 0
Joined: 16 Feb 2007 Posts: 2607
|
Posted: Sat Mar 22, 2008 7:58 pm Post subject: |
|
|
| 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
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.
_________________
| 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 |
|
 |
AndrewMan Grandmaster Cheater Supreme
Reputation: 0
Joined: 01 Aug 2007 Posts: 1257
|
Posted: Sat Mar 22, 2008 11:17 pm Post subject: |
|
|
| 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
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.  |
Haha, it was actually a totally different code, but thanks for giving me an idea on how to do it.
_________________
|
|
| Back to top |
|
 |
Pseudo Xero I post too much
Reputation: 0
Joined: 16 Feb 2007 Posts: 2607
|
Posted: Sun Mar 23, 2008 12:13 am Post subject: |
|
|
| 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
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.  |
Haha, it was actually a totally different code, but thanks for giving me an idea on how to do it.  |
I know it was, I was being sarcastic, just like you.
_________________
| 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 |
|
 |
hcavolsdsadgadsg I'm a spammer
Reputation: 26
Joined: 11 Jun 2007 Posts: 5801
|
Posted: Sun Mar 23, 2008 2:01 am Post subject: |
|
|
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 |
|
 |
jason744 Grandmaster Cheater
Reputation: 0
Joined: 25 Nov 2007 Posts: 638
|
Posted: Sun Mar 23, 2008 3:55 am Post subject: |
|
|
| Add Pidgin to the IM.
|
|
| Back to top |
|
 |
MrQuidam Advanced Cheater
Reputation: 0
Joined: 15 Mar 2008 Posts: 78
|
Posted: Sun Mar 23, 2008 6:20 pm Post subject: |
|
|
| 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 |
|
 |
._-Hacker-_. Newbie cheater
Reputation: 0
Joined: 21 Mar 2008 Posts: 11 Location: My Computer
|
Posted: Sun Mar 30, 2008 6:08 pm Post subject: |
|
|
| i have a really really really noobie question...............wut does it do
|
|
| Back to top |
|
 |
|