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: TalosBlack
  • Content: Threads
  • Order by date
  1. TalosBlack

    volume control

    Is there a command where i can change the windows volume ... or change the volume of the sound i'm playing in another way. I would like to automate setting volume to the highest setting. This is for a program i'm making to test a circuit's output. I tried searching on MSDN but couldn't find...
  2. TalosBlack

    exe problem... clicking on exe != Execute program

    When i double click on the exe of my program I get a window to come up with a black screen and a flashing cursor. It seems as if the program is in some kind of infinite loop before i output anything to the screen. However, when i am in C++ (MS Visual Studio 6) and hit ctrl 5 ... or the execute...
  3. TalosBlack

    responding to system message box

    I am having trouble responding to system message boxes. I am writting a program that causes Windows (2000) to basically say are you sure you want to continue? YES/NO. What do i need to do in my program to get it to respond YES? (Or NO or OK or whatever but in this case YES) Thanks a lot for...
  4. TalosBlack

    DropFiles....Context Menu Handler

    I am trying to unravel and add functionality to a context menu handler i found online. The program adds a right click option to context menus for files. Right now it uses *foperation* and i have it running what amounts to be a copy function (i know how to easily change this to a move, delete...
  5. TalosBlack

    Disabling a Field in Outlook

    I use the following code to disable/enable a field in Outlook. The problem is the field starts as enabled no matter what i do. I would like for the field to start disabled and only enable when the checkbox is marked. Sub CheckBox1_Click() Set CheckBox1 =...
  6. TalosBlack

    Outlook enabling/disabling fields

    I am trying to use VBScript to make an OutLook form for the first time. I can't figure out what i need to do to refer to a specific field. By looking at online documentation i thought that somehting like this might work: Sub CheckBox1_Click() Set HMM = CheckBox1.Value If HMM.Value=True Then...
  7. TalosBlack

    shortcuts their targets and retreiving stats (last mod/size)

    I am writting a program that retreivew file statistics of all the files in a given directory. I want to be able to retreive data about a file that is reffered to by a link in the directory i am searching. Ex. c:\Folder\Shortcut to destination.lnk whose target is c:\destination.txt. I found...
  8. TalosBlack

    target of a shortcut

    Can someone explain to me or tell me what i should read to understand what link targets that look like this means: C:\Ateasy\Ateasy.exe /CC:\ateasy\J8142\cfg\180s-01.cfg /LC:\ateasy\j8142\prg\180sC00.prg I understand c:\Ateasy\Ateasy.exe ... there is a folder on the c drive that contains the...
  9. TalosBlack

    Searching from the begining of a text file ...seekg() ?

    I am trying to search a text file for a given string. After i do that search i would like to search it for another string. I was wondering how i can start searching at the begining of the text file. I thought i should use seekg(0) and i made a practice program that does just that. ( I am...
  10. TalosBlack

    check if a link has a valid path before trying to jump to that path

    I want to check if a path is valid before i set my directory as that path. The reason being if i try to jump to that path i get a windows error and have to hit ok before my program finishes. I want my program to finish without prompting that a network connection is unavailable. (The reason i'm...
  11. TalosBlack

    Compairing character strings and ints of other

    I am trying to compare date from a file which i infile from a text file to data from and actual file which i get through looking at it's attributes. The problems is i am checking that: A. the files names are the same, B. The file size is the same, and C. That the date modified is the same. The...
  12. TalosBlack

    Switching to network directories

    I am trying to use the _chdir() command inorder to jump to a network directory and investigate that directories file tree. I have the program querry the user for the destination drive. The program outputs an error for using the _chdir command (not a compilation error just the command fails and...
  13. TalosBlack

    C++ Displaying ShortCut Target

    I was wondering if anyone knows what command i need to display a .LNK's target. I need to do this so if i have a shortcut to a folder in a file tree my program will be able to go to that folder. I have my program going through all the folders already by doing a recursive search implemented...
  14. TalosBlack

    File Directory Search moving through shortcuts

    I am writing a program that explores a file tree it moves through the directories and files and takes certain information from the files to compare it to another file. I have figured out how to use the _findfirst and _findnext commands to move through a directory. The problem is i need to be...
  15. TalosBlack

    Display files in directory

    I am Trying to make a program which looks through all the files and folders in a given file directory and then saves some of the information about this file and compares it to a file of the same name in another folder. (This program is basically checking to see if the archived version of a file...

Part and Inventory Search

Back
Top