Results 1 to 7 of 7
  1. #1
    Arcruend's Avatar
    Join Date
    Jan 2010
    Gender
    male
    Posts
    185
    Reputation
    10
    Thanks
    112
    My Mood
    Tired

    Cross Hair on Vb 2008

    Ok i made this cross hair and it has a little issue....

    Pros : the cross hair works and shit...
    Cons : In the game when you shoot or Click on the cross hair it will minimize it

    So thats my issue(cons) and if you can help meh fix it i will credit ya

    and yea i did use VB 2008.

    oh and i posted it on sudden attack thing cuz i was making it for this game......
    Last edited by Arcruend; 03-06-2010 at 02:38 PM.

  2. #2
    Ryan's Avatar
    Join Date
    Jan 2009
    Gender
    male
    Posts
    7,919
    Reputation
    411
    Thanks
    998
    My Mood
    Relaxed
    Find a string that makes the program always run on top.

  3. #3
    Voltage552's Avatar
    Join Date
    Jul 2009
    Gender
    male
    Posts
    252
    Reputation
    10
    Thanks
    135
    A module.
    [php]Declare Function SetWindowPos Lib "user32" _
    (ByVal hwnd As Long, ByVal hWndInsertAfter As Long, ByVal x As Long, _
    ByVal y As Long, ByVal cx As Long, ByVal cy As Long, ByVal wFlags As Long) As Long
    Global Const SWP_NOMOVE As Long = 2
    Global Const SWP_NOSIZE As Long = 1
    Global Const FLAGS = SWP_NOMOVE Or SWP_NOSIZE
    Global Const HWND_TOPMOST As Long = -1
    Global Const HWND_NOTOPMOST As Long = -2[/php][php]SetWindowPos(Form7.hwnd, HWND_TOPMOST, 0, 0, 0, 0, FLAGS)[/php]
    [img]https://www.steliar*****m/images/star1.gif[/img][img]https://www.steliar*****m/images/star2.gif[/img][img]https://www.steliar*****m/images/star3.gif[/img][img]https://www.steliar*****m/images/star2.gif[/img][img]https://www.steliar*****m/images/star1.gif[/img]


    Don't expect any more public hacks from me.

    [SA Public]Voltage552 Hook! UNDETECTED - ALL OS

  4. #4
    Arcruend's Avatar
    Join Date
    Jan 2010
    Gender
    male
    Posts
    185
    Reputation
    10
    Thanks
    112
    My Mood
    Tired
    Quote Originally Posted by Voltage552 View Post
    A module.
    [php]Declare Function SetWindowPos Lib "user32" _
    (ByVal hwnd As Long, ByVal hWndInsertAfter As Long, ByVal x As Long, _
    ByVal y As Long, ByVal cx As Long, ByVal cy As Long, ByVal wFlags As Long) As Long
    Global Const SWP_NOMOVE As Long = 2
    Global Const SWP_NOSIZE As Long = 1
    Global Const FLAGS = SWP_NOMOVE Or SWP_NOSIZE
    Global Const HWND_TOPMOST As Long = -1
    Global Const HWND_NOTOPMOST As Long = -2[/php][php]SetWindowPos(Form7.hwnd, HWND_TOPMOST, 0, 0, 0, 0, FLAGS)[/php]
    alright. i try that.. if it works i'll credit ya ^^ thx

  5. #5
    Voltage552's Avatar
    Join Date
    Jul 2009
    Gender
    male
    Posts
    252
    Reputation
    10
    Thanks
    135
    I don't know if it works, I googled XD Let's all thank google.
    [img]https://www.steliar*****m/images/star1.gif[/img][img]https://www.steliar*****m/images/star2.gif[/img][img]https://www.steliar*****m/images/star3.gif[/img][img]https://www.steliar*****m/images/star2.gif[/img][img]https://www.steliar*****m/images/star1.gif[/img]


    Don't expect any more public hacks from me.

    [SA Public]Voltage552 Hook! UNDETECTED - ALL OS

  6. #6
    Arcruend's Avatar
    Join Date
    Jan 2010
    Gender
    male
    Posts
    185
    Reputation
    10
    Thanks
    112
    My Mood
    Tired
    Quote Originally Posted by Voltage552 View Post
    I don't know if it works, I googled XD Let's all thank google.
    haha and you for researching it ^^ i search all day and i found anything.

  7. #7
    Arcruend's Avatar
    Join Date
    Jan 2010
    Gender
    male
    Posts
    185
    Reputation
    10
    Thanks
    112
    My Mood
    Tired
    Quote Originally Posted by Voltage552 View Post
    A module.
    [php]Declare Function SetWindowPos Lib "user32" _
    (ByVal hwnd As Long, ByVal hWndInsertAfter As Long, ByVal x As Long, _
    ByVal y As Long, ByVal cx As Long, ByVal cy As Long, ByVal wFlags As Long) As Long
    Global Const SWP_NOMOVE As Long = 2
    Global Const SWP_NOSIZE As Long = 1
    Global Const FLAGS = SWP_NOMOVE Or SWP_NOSIZE
    Global Const HWND_TOPMOST As Long = -1
    Global Const HWND_NOTOPMOST As Long = -2[/php][php]SetWindowPos(Form7.hwnd, HWND_TOPMOST, 0, 0, 0, 0, FLAGS)[/php]
    yeah i dun think it works..



    and


Similar Threads

  1. [Question]Custom cross hairs.
    By RJ in forum Combat Arms Hacks & Cheats
    Replies: 15
    Last Post: 09-06-2008, 12:17 PM
  2. How to mod your computer for a fixed cross-hair
    By xxBigBuns in forum Combat Arms Hacks & Cheats
    Replies: 17
    Last Post: 08-25-2008, 04:52 PM
  3. cross hair program tut
    By GG2GG in forum Programming Tutorial Requests
    Replies: 4
    Last Post: 03-05-2008, 01:20 PM
  4. Make Your own Cross hairs
    By llvengancell in forum WarRock - International Hacks
    Replies: 6
    Last Post: 05-28-2007, 12:12 AM
  5. Make your own Warrock Cross hairs!!
    By llvengancell in forum WarRock - International Hacks
    Replies: 3
    Last Post: 05-26-2007, 10:59 PM