Results 1 to 39 of 39

Thread: Block the Screen

  1. #1

    Thread Starter
    Fanatic Member eimroda's Avatar
    Join Date
    Jul 2000
    Location
    Philippines
    Posts
    642

    Block the Screen

    I have a business where I lend computers to customers for a certain amount for a specified number of hours. Mostly, customers rented my computers for gaming (Counter Strike, Quake 3....). I am maintaining 15 computers manually and I found it hard to keep track on the usage of the computers. What I want is that I'll make a program that is going to block the screen after the specified time (No. of minutes/hours) automatically, thus preventing the user to continue using the computer if his time is up. I created a program with such purpose by using the SetWindowPos API. I was successful when the user is only using windows apps. such as MS Office or the internet. But in terms of games, when it attempted to block the screen, all I get is a blinking screen and the game application prevailed. Is there any other API to use to solve this problem or is there any free program with such purpose whcih I can download?
    On Error GoTo Hell

    Hell:
    Kill Me


    Food For Thought:

    - Do not judge a book... if you're not a judge!


  2. #2
    Matthew Gates
    Guest
    An idea would be to add your program to startup (maybe have a password that needs to be entered in order to remove the screen) and then force windows to shut down.

    To shutdown windows, you can use the ExitWindowsEx API function.


    VB Code:
    1. Private Declare Function ExitWindowsEx Lib "user32" _
    2. (ByVal uFlags As Long, ByVal dwReserved As Long) As Long
    3.  
    4. Const EWX_LOGOFF = 0
    5. Const EWX_SHUTDOWN = 1
    6. Const EWX_REBOOT = 2
    7. Const EWX_FORCE = 4
    8.  
    9. Private Sub Form_Load()
    10.     Msgbox "Your time usage is up, please return this computer to it's owner.", 16
    11.     ExitWindowsEx EWX_FORCE Or EWX_SHUTDOWN, 0
    12. End Sub

    Than when the computer starts back up, if the person turns it back on, since the program runs at startup (use the Registry), it will block the screen and that's it. Perhaps a label saying that, "Your usage is up, please return this computer to the owner" and having a button to shutdown again or something. And than you can have a shortcut key so that you can enter in a password and remove all the settings for startup, etc.

    Just a suggestion: maybe it will work .

  3. #3
    Retired VBF Adm1nistrator plenderj's Avatar
    Join Date
    Jan 2001
    Location
    Dublin, Ireland
    Posts
    10,359
    Another approach, though I dont know if it would work or not, would be to have an application that, once the time has elapsed, uses the AlwaysOnTop code to always stay on top of other programs.

    So that should take care of things in windows.
    Then to make sure that its visible instead of other games, you could maybe make the system do the equivalent of Alt-Tab and make that app active.

    Though I cant really see 3D games being too happy with that.

    Surely it would be better if there was an app running that just emailed you or something when their time is up. Then you, or another member of staff can ask them to wrap up...
    Microsoft MVP : Visual Developer - Visual Basic [2004-2005]

  4. #4

    Thread Starter
    Fanatic Member eimroda's Avatar
    Join Date
    Jul 2000
    Location
    Philippines
    Posts
    642
    For Matthew:

    But the user have the option to resume and logging him off will also disconnect him from the current game server. When the program blocks the screen, the workstation should not be disconnected from the game server. any ideas please?

    For Plenderj:
    I have already used

    SetWindowPos hwnd, HWND_TOPMOST, 0, 0, wid, hgt, 0

    to make the program on top of other apps., but I still try to use the ctrl tab.... I know there's a solution for this since I saw some internet cafe's using a software like it, and i want to customize it to meet my needs..please help!!!!!!
    On Error GoTo Hell

    Hell:
    Kill Me


    Food For Thought:

    - Do not judge a book... if you're not a judge!


  5. #5
    Retired VBF Adm1nistrator plenderj's Avatar
    Join Date
    Jan 2001
    Location
    Dublin, Ireland
    Posts
    10,359
    How about this :

    VB Code:
    1. AppActivate Me.Caption

    with a dash of GetTickCount, a hint of DoEvents, and a smidgen of a Do Loop.
    Microsoft MVP : Visual Developer - Visual Basic [2004-2005]

  6. #6

    Thread Starter
    Fanatic Member eimroda's Avatar
    Join Date
    Jul 2000
    Location
    Philippines
    Posts
    642
    Im not familiar with GetTickCount, please show me your code, if you wont mind...please?????
    On Error GoTo Hell

    Hell:
    Kill Me


    Food For Thought:

    - Do not judge a book... if you're not a judge!


  7. #7
    Retired VBF Adm1nistrator plenderj's Avatar
    Join Date
    Jan 2001
    Location
    Dublin, Ireland
    Posts
    10,359
    Okay well you could use a timer to call this, but I personally would use GetTickCount().

    VB Code:
    1. Option Explicit
    2.  
    3. Private Declare Function GetTickCount Lib "kernel32" () As Long
    4. 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
    5.  
    6. Private Const SWP_NOMOVE = 2
    7. Private Const SWP_NOSIZE = 1
    8. Private Const SWP_WNDFLAGS = SWP_NOMOVE Or SWP_NOSIZE
    9. Private Const HWND_TOPMOST = -1
    10. Private Const HWND_NOTOPMOST = -2
    11. Private lastTick As Long
    12. Private meCaption As String
    13.  
    14. Private Sub takeControl()
    15.     Me.Show
    16.     meCaption = Me.Caption
    17.     SetTopmost Me, True
    18.     Do
    19.         DoEvents
    20.         If ((GetTickCount() - lastTick) >= 100) Then
    21.             lastTick = GetTickCount()
    22.             AppActivate meCaption
    23.         End If
    24.     Loop
    25. End Sub
    26.  
    27. Private Sub SetTopmost(frm As Form, bTopmost As Boolean)
    28.      If bTopmost = True Then
    29.           SetWindowPos frm.hWnd, HWND_TOPMOST, 0, 0, 0, 0, SWP_WNDFLAGS
    30.      Else
    31.           SetWindowPos frm.hWnd, HWND_NOTOPMOST, 0, 0, 0, 0, SWP_WNDFLAGS
    32.      End If
    33. End Sub

    You can change the 100 there to make different delays.
    Last edited by plenderj; Aug 8th, 2001 at 04:44 AM.
    Microsoft MVP : Visual Developer - Visual Basic [2004-2005]

  8. #8

    Thread Starter
    Fanatic Member eimroda's Avatar
    Join Date
    Jul 2000
    Location
    Philippines
    Posts
    642
    thank you very much...Ill try this as I get home....
    On Error GoTo Hell

    Hell:
    Kill Me


    Food For Thought:

    - Do not judge a book... if you're not a judge!


  9. #9
    Retired VBF Adm1nistrator plenderj's Avatar
    Join Date
    Jan 2001
    Location
    Dublin, Ireland
    Posts
    10,359
    I just made a modification that you might not have seen yet.
    Microsoft MVP : Visual Developer - Visual Basic [2004-2005]

  10. #10

    Thread Starter
    Fanatic Member eimroda's Avatar
    Join Date
    Jul 2000
    Location
    Philippines
    Posts
    642
    By the way, my program got no caption...
    On Error GoTo Hell

    Hell:
    Kill Me


    Food For Thought:

    - Do not judge a book... if you're not a judge!


  11. #11

    Thread Starter
    Fanatic Member eimroda's Avatar
    Join Date
    Jul 2000
    Location
    Philippines
    Posts
    642
    Sorry but I am going home now...if you wont mind (again) could you please email me if you got it perfect? Here's my email add: [email protected] please.... I need this...
    On Error GoTo Hell

    Hell:
    Kill Me


    Food For Thought:

    - Do not judge a book... if you're not a judge!


  12. #12
    Retired VBF Adm1nistrator plenderj's Avatar
    Join Date
    Jan 2001
    Location
    Dublin, Ireland
    Posts
    10,359
    Well give it a bloody caption
    Microsoft MVP : Visual Developer - Visual Basic [2004-2005]

  13. #13
    Dimension
    Guest
    me.caption = "bloddy caption"

  14. #14
    Retired VBF Adm1nistrator plenderj's Avatar
    Join Date
    Jan 2001
    Location
    Dublin, Ireland
    Posts
    10,359
    Originally posted by Dimension
    me.caption = "bloddy caption"
    VB Code:
    1. With Me
    2.     .Caption = "Blah !"
    3.     .Caption.Bloody = True
    4. End With
    Microsoft MVP : Visual Developer - Visual Basic [2004-2005]

  15. #15
    PowerPoster
    Join Date
    Aug 2000
    Location
    India
    Posts
    2,288
    Also, make your app appear as screensaver using SystemParametersInfo api call, so that Alt-Tab, Window and other shortcut keys get disabled.

  16. #16
    Frenzied Member nishantp's Avatar
    Join Date
    Jan 2001
    Location
    Where you least expect me to be
    Posts
    1,375
    Oh also...another way of doing that is once your program is on top for sure, you can disable Alt-Ctrl-Del and Alt-Tab...so the user is pretty much stuck inside your program. Set the BorderStyle to none (sorry, no caption... but maybe you can still assign something to the caption property) and use SetWindowsPos to make it sull screen. Heres a URL that demonstrates how to disable Alt-Ctrl-Del and alt-tab:

    http://www.internettrash.com/users/fdb/68_TXT.htm
    You just proved that sig advertisements work.

  17. #17
    Retired VBF Adm1nistrator plenderj's Avatar
    Join Date
    Jan 2001
    Location
    Dublin, Ireland
    Posts
    10,359
    Ah sure the Caption thing isnt all that important.
    There's better ways of doing it, I was just giving him the quickest/easiest way of doing it.
    Microsoft MVP : Visual Developer - Visual Basic [2004-2005]

  18. #18
    Frenzied Member nishantp's Avatar
    Join Date
    Jan 2001
    Location
    Where you least expect me to be
    Posts
    1,375
    Originally posted by amitabh
    Also, make your app appear as screensaver using SystemParametersInfo api call, so that Alt-Tab, Window and other shortcut keys get disabled.
    Dough!! beat me to it...
    You just proved that sig advertisements work.

  19. #19

    Thread Starter
    Fanatic Member eimroda's Avatar
    Join Date
    Jul 2000
    Location
    Philippines
    Posts
    642
    APIs I've used so far:

    SystemParametersInfo, SetWindowPos but to no avail. The screen just keep on flashing as it tried to block the screen with a 3d game currently running. I have no problem with other applications (e.g. word, excel, ie etc...) because with my current program, it successfully blocked them. My problem is when the program deals with a 3d game, it cant totally block the screen and it just keep on flashing...
    On Error GoTo Hell

    Hell:
    Kill Me


    Food For Thought:

    - Do not judge a book... if you're not a judge!


  20. #20
    Tygur
    Guest
    Is there anything wrong with forcing a shutdown when the time runs out? That would probably be easier..

  21. #21
    Frenzied Member
    Join Date
    Mar 2001
    Location
    You are HERE •™
    Posts
    1,300
    I think Tygur's right about this one.
    More than likely the 3d game is using the same API's
    The only thing I would add is you will need to change the
    password for login before you force the shutdown.

  22. #22
    PowerPoster
    Join Date
    Aug 2000
    Location
    India
    Posts
    2,288
    Originally posted by eimroda
    APIs I've used so far:

    SystemParametersInfo, SetWindowPos but to no avail. The screen just keep on flashing as it tried to block the screen with a 3d game currently running. I have no problem with other applications (e.g. word, excel, ie etc...) because with my current program, it successfully blocked them. My problem is when the program deals with a 3d game, it cant totally block the screen and it just keep on flashing...
    It might be that directx is being used which is stopping all other forms from being on Top. Try minimizing all windows present on desktop and then use your app to block the screen.

  23. #23
    Registered User Nucleus's Avatar
    Join Date
    Apr 2001
    Location
    So that's what you are up to ;)
    Posts
    2,530

    This code may come in handy

    I just threw this together, maybe it will work.

    After the time period runs out, just call this function from a timer. It will minimize all windows except your application.

    Code in Module:
    VB Code:
    1. Option Explicit
    2.  
    3. Private Declare Function GetWindowLong Lib "user32" Alias "GetWindowLongA" (ByVal hwnd As Long, ByVal nIndex As Long) As Long
    4. Private Const WS_MINIMIZEBOX = &H20000
    5. Private Const GWL_STYLE = (-16)
    6. Private Declare Function IsWindowVisible& Lib "user32" (ByVal hwnd As Long)
    7. Private Declare Function ShowWindow& Lib "user32" (ByVal hwnd As Long, ByVal nCmdShow As Long)
    8. Private Const SW_SHOWMINIMIZED = 2
    9. Private Declare Function EnumWindows Lib "user32.dll" (ByVal lpEnumFunc As Long, ByVal lParam As Long) As Long
    10. Private Declare Function FindWindowEx Lib "user32" Alias "FindWindowExA" (ByVal hWnd1 As Long, ByVal hWnd2 As Long, ByVal lpsz1 As String, ByVal lpsz2 As String) As Long
    11.  
    12.  
    13. Dim m_lHwnd             As Long
    14.  
    15. Public Sub MinimizeExcept(ByVal sCaption As String)
    16.  
    17. m_lHwnd = FindWindowEx(0, 0, vbNullString, sCaption)
    18. If m_lHwnd Then
    19.     EnumWindows AddressOf EnumWindowsProc, 0&
    20. End If
    21.  
    22. End Sub
    23.  
    24.  
    25. Public Function EnumWindowsProc(ByVal hwnd As Long, ByVal lParam As Long) As Long
    26. Dim lStyle              As Long
    27.  
    28.     If hwnd <> m_lHwnd Then
    29.         lStyle = GetWindowLong(hwnd, GWL_STYLE)
    30.         If (lStyle And WS_MINIMIZEBOX) = WS_MINIMIZEBOX And IsWindowVisible(hwnd) Then
    31.             Call ShowWindow(hwnd, SW_SHOWMINIMIZED)
    32.         End If
    33.     End If
    34.    
    35.     EnumWindowsProc = 1
    36. End Function

    Example usage:
    VB Code:
    1. Call MinimizeExcept("Security App Caption Goes Here")

  24. #24

    Thread Starter
    Fanatic Member eimroda's Avatar
    Join Date
    Jul 2000
    Location
    Philippines
    Posts
    642
    Thank guys. But logging off/shutting down the computer is not applicable since the user has the tendency to resume, meaning he is going to pay/rent again for a specified period of time and he must continue playing where he stopped, so logging him off will disconnect him from the games server and he will connect again to the server.

    To Nucleus, Ill try this one out. But my application has no caption...anyway Ill try it out...
    On Error GoTo Hell

    Hell:
    Kill Me


    Food For Thought:

    - Do not judge a book... if you're not a judge!


  25. #25
    Tygur
    Guest
    If you really don't want your form to have a caption, you can try this code. I took Nucleus's code and modified so it minimizes all windows that are not part of your app, instead of going by caption.

    VB Code:
    1. Option Explicit
    2.  
    3. Private Declare Function GetWindowLong Lib "user32" Alias "GetWindowLongA" (ByVal hwnd As Long, ByVal nIndex As Long) As Long
    4. Private Const WS_MINIMIZEBOX = &H20000
    5. Private Const GWL_STYLE = (-16)
    6. Private Declare Function IsWindowVisible& Lib "user32" (ByVal hwnd As Long)
    7. Private Declare Function ShowWindow& Lib "user32" (ByVal hwnd As Long, ByVal nCmdShow As Long)
    8. Private Const SW_SHOWMINIMIZED = 2
    9. Private Declare Function EnumWindows Lib "user32.dll" (ByVal lpEnumFunc As Long, ByVal lParam As Long) As Long
    10. Private Declare Function FindWindowEx Lib "user32" Alias "FindWindowExA" (ByVal hWnd1 As Long, ByVal hWnd2 As Long, ByVal lpsz1 As String, ByVal lpsz2 As String) As Long
    11.  
    12. Private Declare Function GetWindowThreadProcessId Lib "user32" (ByVal hwnd As Long, lpdwProcessId As Long) As Long
    13.  
    14. 'This was originally made by Nucleus, then I (Tygur) modified it.
    15. 'the "Us" in the function name refers to all the forms in this app, instead of just one
    16. Public Sub MinimizeExceptUs()
    17. EnumWindows AddressOf EnumWindowsProc, 0&
    18. End Sub
    19.  
    20.  
    21. Public Function EnumWindowsProc(ByVal hwnd As Long, ByVal lParam As Long) As Long
    22. Dim lStyle As Long
    23. Dim lThreadID As Long
    24.  
    25. lThreadID = GetWindowThreadProcessId(hwnd, ByVal 0)
    26. If lThreadID <> App.ThreadID Then
    27.     lStyle = GetWindowLong(hwnd, GWL_STYLE)
    28.     If (lStyle And WS_MINIMIZEBOX) = WS_MINIMIZEBOX And IsWindowVisible(hwnd) Then
    29.         Call ShowWindow(hwnd, SW_SHOWMINIMIZED)
    30.     End If
    31. End If
    32.  
    33. EnumWindowsProc = 1
    34. End Function

    VB Code:
    1. 'Usage:
    2. MinimizeExceptUs

  26. #26
    Lively Member venom8's Avatar
    Join Date
    Jul 2001
    Location
    Quezon City, PHIL.
    Posts
    87
    to Tygur:

    i try ur code, but i'm getting an error : "Invalid Use of AddressOf Operator" and it's pointing in

    Public Sub MinimizeExceptUs()
    EnumWindows AddressOf EnumWindowsProc, 0&
    End Sub

    i paste ur code in general declaration of Form1, then i set the caption property to " ", and i add a command button and put "MinimizeExceptUs".


    You never become a failure, unless you quit on trying!!!

  27. #27
    Tygur
    Guest
    Paste all the the code into a module. Then you can call MinimizeExceptUs from anywhere. It doesn't matter what the caption of the form is set at. You can set it to anything you want or nothing at all.

  28. #28
    Lively Member venom8's Avatar
    Join Date
    Jul 2001
    Location
    Quezon City, PHIL.
    Posts
    87
    Thank's Tygur, it works now.

    But i just want to ask u, what can u say about my suggestion to kill the program first , knowing their path, before blocking the screen?
    You never become a failure, unless you quit on trying!!!

  29. #29
    Registered User Nucleus's Avatar
    Join Date
    Apr 2001
    Location
    So that's what you are up to ;)
    Posts
    2,530
    Tygur, nice amendment, and glad that my work on minimizing windows eventually lead to something useful.

  30. #30
    Lively Member stever2003's Avatar
    Join Date
    Dec 2000
    Posts
    109
    i have a program called SecureIt, this is probably the kind of thing that you want, except i dont know if you can implement this specific program in your situation. The program's website is http://go.to/quantrix. If they don't have the program or only have an evaluation, email me at [email protected] and I'll send it to you (or post it on the site so its available to everyone)

  31. #31

    Thread Starter
    Fanatic Member eimroda's Avatar
    Join Date
    Jul 2000
    Location
    Philippines
    Posts
    642
    I have already tried tygur's code but it produced the same result. It could not minimize the 3d game that's running, thus same with my program, it only caused the screen to flash as it tried to block the screen. Anyway it is successful when blocking windows based applications such as office, ie, etc..

    By the way, forcibly logging off the user will cause him to be disconnected from the game's server, so when he logs on to windows, he must reconnect to the games server again and start all over again aside from the time consumed in logging in and reconnection.
    On Error GoTo Hell

    Hell:
    Kill Me


    Food For Thought:

    - Do not judge a book... if you're not a judge!


  32. #32

    Thread Starter
    Fanatic Member eimroda's Avatar
    Join Date
    Jul 2000
    Location
    Philippines
    Posts
    642
    Any ideas please?? I need it very urgent..
    On Error GoTo Hell

    Hell:
    Kill Me


    Food For Thought:

    - Do not judge a book... if you're not a judge!


  33. #33
    Fanatic Member
    Join Date
    Nov 2000
    Location
    Sydney Australia
    Posts
    804
    Does the game window have a minimize icon on it, like can you manually minimize the game by clicking on a button?

  34. #34

    Thread Starter
    Fanatic Member eimroda's Avatar
    Join Date
    Jul 2000
    Location
    Philippines
    Posts
    642
    No sir. The 3d game occupied the whole screen.
    On Error GoTo Hell

    Hell:
    Kill Me


    Food For Thought:

    - Do not judge a book... if you're not a judge!


  35. #35
    Registered User Nucleus's Avatar
    Join Date
    Apr 2001
    Location
    So that's what you are up to ;)
    Posts
    2,530

    Try this

    Ok well try this code then...

    In Module:
    VB Code:
    1. Option Explicit
    2.  
    3. Private Declare Function IsWindowVisible& Lib "user32" (ByVal hwnd As Long)
    4. Private Declare Function ShowWindow& Lib "user32" (ByVal hwnd As Long, ByVal nCmdShow As Long)
    5. Const SW_HIDE = 0
    6. Const SW_SHOW = 5
    7.  
    8. Private Declare Function EnumWindows Lib "user32.dll" (ByVal lpEnumFunc As Long, ByVal lParam As Long) As Long
    9. Private Declare Function FindWindowEx Lib "user32" Alias "FindWindowExA" (ByVal hWnd1 As Long, ByVal hWnd2 As Long, ByVal lpsz1 As String, ByVal lpsz2 As String) As Long
    10. Private Declare Function GetWindowThreadProcessId Lib "user32" (ByVal hwnd As Long, lpdwProcessId As Long) As Long
    11.  
    12. Private m_hiddenHwnds()     As Long
    13. Private m_hTaskBar          As Long
    14. Private m_hDeskTopIcons     As Long
    15.  
    16. ' Nucleus and Tygur
    17. ' the "Us" in the function name refers to all the forms in this app, instead of just one
    18. Public Sub HideExceptUs()
    19.     m_hDeskTopIcons = FindWindowEx(0&, 0&, "Progman", vbNullString)
    20.     m_hTaskBar = FindWindowEx(0&, 0&, "Shell_TrayWnd", vbNullString)
    21.     EnumWindows AddressOf EnumWindowsProc, 0&
    22. End Sub
    23.  
    24. Public Sub Unhide()
    25. On Error Resume Next
    26.  
    27. Dim i               As Long
    28.  
    29. For i = 0 To UBound(m_hiddenHwnds)
    30.     ShowWindow m_hiddenHwnds(i), SW_SHOW
    31. Next
    32.  
    33. Erase m_hiddenHwnds
    34. End Sub
    35.  
    36.  
    37.  
    38. Public Function EnumWindowsProc(ByVal hwnd As Long, ByVal lParam As Long) As Long
    39. Dim lThreadID       As Long
    40.  
    41. If hwnd <> m_hTaskBar And hwnd <> m_hDeskTopIcons Then
    42.  
    43.     lThreadID = GetWindowThreadProcessId(hwnd, ByVal 0)
    44.     If lThreadID <> App.ThreadID Then
    45.    
    46.         If IsWindowVisible(hwnd) Then
    47.            
    48.             On Error Resume Next
    49.             ReDim Preserve m_hiddenHwnds(UBound(m_hiddenHwnds) + 1)
    50.             If Err Then ReDim m_hiddenHwnds(0)
    51.             On Error GoTo 0
    52.             m_hiddenHwnds(UBound(m_hiddenHwnds)) = hwnd
    53.             ShowWindow hwnd, SW_HIDE
    54.    
    55.         End If
    56.     End If
    57.    
    58. End If
    59.  
    60. EnumWindowsProc = 1
    61.  
    62. End Function

    Example usage, create 2 command buttons then add this code:

    VB Code:
    1. Private Sub Command1_Click()
    2.  
    3. HideExceptUs
    4.  
    5. End Sub
    6.  
    7. Private Sub Command2_Click()
    8.  
    9. Unhide
    10.  
    11. End Sub

  36. #36
    I wonder how many charact
    Join Date
    Feb 2001
    Location
    Savage, MN, USA
    Posts
    3,704
    So, my question is, there are actually people out there who will RENT computers just to game? Interesting... if you don't mind indulging us.... how profitable is this side venture of yours?

  37. #37
    Hyperactive Member
    Join Date
    May 2001
    Posts
    306

    Just a thought

    I've never done what your trying to do, but I have played my share of games (like Quake and such) and I've had times where another program, say AIM would pop up a message from someone and it would automatically minimize my Game Screen. I'm not sure how or why, but it happens.

    This probably won't be any help at all but maybe you can start up a game and find something that minimizes it. Also if I were to hit the 'Windows' key on my keyboard it would do the same thing. Not sure if this works in all games but it has worked in the ones i've played.

  38. #38
    Frenzied Member Skitchen8's Avatar
    Join Date
    Feb 2001
    Location
    Binghamotn, NY
    Posts
    1,943
    um... alt+tab does that too
    Government is another way to say better…than…you.
    It’s like ice but no pick, a murder charge that won’t stick,
    it’s like a whole other world where you can smell the food,
    but you can’t touch the silverware.
    Huh, what luck. Fascism you can vote for.
    Humph, isn’t that sweet?
    And we’re all gonna die some day, because that’s the American way
    -Stone Sour

  39. #39
    Hyperactive Member
    Join Date
    May 2001
    Posts
    306
    I thought alt tab would also, just wasn't sure. anyhow maybe he can have VB send those key strokes, Minimize the game, throw up the block Screen and then disable alt tab.

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  



Click Here to Expand Forum to Full Width