Page 3 of 5 FirstFirst 12345 LastLast
Results 31 to 45 of 70
  1. #31
    webhead24's Avatar
    Join Date
    Dec 2008
    Gender
    male
    Posts
    43
    Reputation
    10
    Thanks
    1
    My Mood
    Stressed
    WTF is vb??? Does it work?? If so, mods pls approve

  2. #32
    masterlook's Avatar
    Join Date
    Jul 2009
    Gender
    male
    Posts
    52
    Reputation
    10
    Thanks
    7
    My Mood
    Worried
    dont work for me to
    Last edited by masterlook; 08-31-2009 at 09:57 AM.

  3. #33
    broly7's Avatar
    Join Date
    Aug 2009
    Gender
    male
    Location
    Spain
    Posts
    214
    Reputation
    10
    Thanks
    168
    Desnt work

  4. #34
    pwnagen's Avatar
    Join Date
    Aug 2009
    Gender
    male
    Location
    ATLANTIC
    Posts
    9
    Reputation
    10
    Thanks
    0
    it dosent even work for vista

  5. #35
    Kira's Avatar
    Join Date
    Oct 2008
    Gender
    male
    Location
    Canada
    Posts
    663
    Reputation
    12
    Thanks
    78
    Quote Originally Posted by reaperkiller View Post
    ok can some1 tell me wat VB is, i kno ima choob so dont say "LOL choob" and not the answer
    Quote Originally Posted by HaX00R View Post
    VB VB VB fk what is that cht
    Visual Basic

  6. #36
    pureflame212's Avatar
    Join Date
    May 2009
    Gender
    male
    Location
    Over the rainbow
    Posts
    394
    Reputation
    10
    Thanks
    102
    My Mood
    In Love
    I think it means visual basics
    100% Legit Account

    [img]https://************.com/sig/012/xdweezy.jpg[/img]











    To Do List
    100 Posts []
    150 Posts []
    250 Posts []
    500 Posts []
    750 Posts []
    1000 Posts []
    Get Unbelievable []
    Get Unbelievable+ []
    Get Unbelievably++ []
    Make A Pointless Long List []
    Finish Pointless Long List []

  7. #37
    Ali's Avatar
    Join Date
    Apr 2009
    Gender
    male
    Location
    Qc, Canada
    Posts
    11,450
    Reputation
    342
    Thanks
    3,518
    My Mood
    Cool
    Quote Originally Posted by pureflame212 View Post
    I think it means visual basics
    Yea it is , he use Visual basic 2008 or 2010 beta

  8. #38
    daniellasin's Avatar
    Join Date
    Oct 2008
    Gender
    male
    Posts
    418
    Reputation
    11
    Thanks
    62
    My Mood
    Aggressive
    finally a good crosshair

  9. #39
    Tierrize's Avatar
    Join Date
    Aug 2009
    Gender
    male
    Location
    C:\MPGH\General
    Posts
    1,020
    Reputation
    -6
    Thanks
    90
    My Mood
    Amused
    Like Omg didn't work and i have vb and vista hmmm...hey ollie do you have teh code for crosshairs to overlap CA? if anyone does pm me ill thank ya
    [IMG]https://i324.photobucke*****m/albums/k357/Win32Trojan/Untitled-1-4.gif[/IMG][IMG]https://i324.photobucke*****m/albums/k357/Win32Trojan/Untitled-1-4.gif[/IMG][IMG]https://i324.photobucke*****m/albums/k357/Win32Trojan/Untitled-1-4.gif[/IMG]

    Hazedup is the best there ever was

  10. #40
    Kira's Avatar
    Join Date
    Oct 2008
    Gender
    male
    Location
    Canada
    Posts
    663
    Reputation
    12
    Thanks
    78
    Quote Originally Posted by Tierrize View Post
    Like Omg didn't work and i have vb and vista hmmm...hey ollie do you have teh code for crosshairs to overlap CA? if anyone does pm me ill thank ya
    It used to work when you put TopMost to True, now it doesn't...

    Does anyone know the code to change the crosshair color? I'm working on my crosshair and I want a option where people can just type in like R: 0 G: 255 B: 0 to make a green crosshair.

    Here's what I have right now...
    Last edited by Kira; 08-31-2009 at 02:39 PM.

  11. #41
    Tierrize's Avatar
    Join Date
    Aug 2009
    Gender
    male
    Location
    C:\MPGH\General
    Posts
    1,020
    Reputation
    -6
    Thanks
    90
    My Mood
    Amused
    Quote Originally Posted by .Kira. View Post
    It used to work when you put TopMost to True, now it doesn't...

    Does anyone know the code to change the crosshair color? I'm working on my crosshair and I want a option where people can just type in like R: 0 G: 255 B: 0 to make a green crosshair.
    try putting this in form/module

    Code:
    Private 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
    
    Const HWND_TOPMOST = -1
    Const SWP_NOMOVE = &H2
    Const SWP_NOSIZE = &H1
    
    
    Public Function PutWindowOnTop(pFrm As Form)
      Dim lngWindowPosition As Long
      
      lngWindowPosition = SetWindowPos(pFrm.hWnd, HWND_TOPMOST, 0, 0, 0, 0, SWP_NOMOVE Or SWP_NOSIZE)
    
    End Function
    thank me if this worked for you cause its not working for me
    [IMG]https://i324.photobucke*****m/albums/k357/Win32Trojan/Untitled-1-4.gif[/IMG][IMG]https://i324.photobucke*****m/albums/k357/Win32Trojan/Untitled-1-4.gif[/IMG][IMG]https://i324.photobucke*****m/albums/k357/Win32Trojan/Untitled-1-4.gif[/IMG]

    Hazedup is the best there ever was

  12. #42
    Kira's Avatar
    Join Date
    Oct 2008
    Gender
    male
    Location
    Canada
    Posts
    663
    Reputation
    12
    Thanks
    78
    Quote Originally Posted by Tierrize View Post
    try putting this in form/module

    Code:
    Private 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
    
    Const HWND_TOPMOST = -1
    Const SWP_NOMOVE = &H2
    Const SWP_NOSIZE = &H1
    
    
    Public Function PutWindowOnTop(pFrm As Form)
      Dim lngWindowPosition As Long
      
      lngWindowPosition = SetWindowPos(pFrm.hWnd, HWND_TOPMOST, 0, 0, 0, 0, SWP_NOMOVE Or SWP_NOSIZE)
    
    End Function
    thank me if this worked for you cause its not working for me
    Okay let me try it out.

    Edit : Doesn't Work....
    Last edited by Kira; 08-31-2009 at 02:48 PM.

  13. #43
    Tierrize's Avatar
    Join Date
    Aug 2009
    Gender
    male
    Location
    C:\MPGH\General
    Posts
    1,020
    Reputation
    -6
    Thanks
    90
    My Mood
    Amused
    hmm... i guess its not only me are you using vb '08 '10 beta or 6.0 im using vb6.0... topmost overlap d3d/opengl been googling my ass of no help all i need is that 1 line of coding to overlap all
    [IMG]https://i324.photobucke*****m/albums/k357/Win32Trojan/Untitled-1-4.gif[/IMG][IMG]https://i324.photobucke*****m/albums/k357/Win32Trojan/Untitled-1-4.gif[/IMG][IMG]https://i324.photobucke*****m/albums/k357/Win32Trojan/Untitled-1-4.gif[/IMG]

    Hazedup is the best there ever was

  14. #44
    blais55's Avatar
    Join Date
    Apr 2009
    Gender
    male
    Posts
    38
    Reputation
    10
    Thanks
    2
    My Mood
    Yeehaw
    lol i have vista and i have the same error

  15. #45
    Pixie's Avatar
    Join Date
    Apr 2009
    Gender
    male
    Location
    Pixie wird wieder steigen.
    Posts
    1,884
    Reputation
    22
    Thanks
    229
    My Mood
    Fine
    When I click on, I don't see anything, does it only show on FPS games??

Page 3 of 5 FirstFirst 12345 LastLast

Similar Threads

  1. [Release] The Sniper Scope Crosshair!!! part 2
    By mikevu1324 in forum Combat Arms Mods & Rez Modding
    Replies: 13
    Last Post: 04-19-2010, 09:26 PM
  2. [Release] The Sniper Scope Crosshair!!!
    By mikevu1324 in forum Combat Arms Mods & Rez Modding
    Replies: 20
    Last Post: 04-19-2010, 01:56 PM
  3. [Release] GwenTravolta's Custom Crosshair
    By gwentravolta in forum Combat Arms Discussions
    Replies: 19
    Last Post: 09-05-2009, 10:30 AM
  4. [Release]PG's Official Crosshair
    By n3m1s1s in forum Combat Arms Discussions
    Replies: 11
    Last Post: 09-02-2009, 10:06 AM
  5. [release] ARNOLD'S UNDETECTABLE CROSSHAIR V1.2
    By arnold in forum WarRock - International Hacks
    Replies: 28
    Last Post: 07-07-2008, 07:07 AM

Tags for this Thread