Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations TouchToneTommy on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Search results for query: *

  • Users: mbrink
  • Content: Threads
  • Order by date
  1. mbrink

    GUI detection

    I'm trying to automate various processes using VBScript. However, I can't find any way to have a script detect what is being displayed to the screen. For example, one program I use prompts for a login. I could make it wait a certain amount of time, except that occasionally, the program hangs up...
  2. mbrink

    Batch logical operators

    I'm trying to write a batch program to make a daily checklist of proceedures based on what day it is. But I can't find anything for operators like AND or OR to use in IF statements for Win2K command prompt. If need be, I could use nested IFs for AND, and separate IFs for OR, but some of the...
  3. mbrink

    No sound when packaged

    Here is the code I've been using to play sounds: In a module: Public SoundOption As Boolean Public Declare Function sndPlaySound Lib "winmm.dll" Alias "sndPlaySoundA" _ (ByVal lpszSoundName As String, ByVal uFlags As Long) As Long To play it: Call sndPlaySound(App.Path +...
  4. mbrink

    Menu Bar checkmarks

    I've found how to make a checked menu item and it changes the variable the way I want, but I can't get clicking on that menu item to toggle the checkmark. It either always has the check, or always doesn't. I need code to change that property on runtime. If it helps, the item I want to have the...
  5. mbrink

    Preventing sound overlap

    My program plays sounds (WAV files using MS Multimedia Control) for various events. However, frequently events promting a sound occur in rapid succession in the code. The two ways I've figured out: 1. Each sound stops the previous one before playing, resulting in only the last one in the order...
  6. mbrink

    Graphical button background problem

    I'm making a game with a grid of grgaphical buttons, using the button background colors to indicate the start points for the players and computer opponent. Unfortunately, if a game ends with the player clicking one of the buttons in the grid and starts a new game, the last button clicked in the...
  7. mbrink

    Runtime Error 91: Object Variable or With Block variable not set

    I am making a simple game, and am having difficulty using a small form to set the name of the player. The name variable is part of a class called 'Player' and is currently set as a public variable (happened during my debugging process). the player-class variable Player1 is declared as public on...

Part and Inventory Search

Back
Top