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

    (VB.Net - FileVersionInfo.GetVersionInfo) Is there a VBScript equivalent?

    I'm trying to convert a script I've created in VB.Net to VBScript. I am unable to replicate the Class FileVersionInfo.GetVersionInfo features. Anyone done something like this before?
  2. bakerm

    Get Sound Card Friendly Name

    Is there a way via VBScript to get the Friendly Name for the sound card that is installed on the machine? Thanks in advance for any help.
  3. bakerm

    Update WEP Key

    Hello all, I need to find a way to update the WEP Key value via VB 6. I am writing a VB app that is used for further customization of new machines that have just been imaged. I have lloked brifly at the Wireless Provisioning Services articles, I am not sure that that is what I need. Has...
  4. bakerm

    Get "Program FIles" folder location

    What is the easiest way to get the location for the "Program Files Folder"? Typically it will be located at C:\Program Files, but not always in our environment. Is there a functionality similar to the GetWindowsDirectory API that will give me this information? Thanks for any help you can offer!
  5. bakerm

    AD - Get Account Profile Information

    Hello, I'm trying to get the profile path for a specific user in Active Directory. I have the following code that will return all users: Const ADS_PROPERTY_CLEAR = 1 Set objOU = GetObject("LDAP://ou=Users,dc=Work,dc=com") objOU.Filter = Array("user") For Each objUser In objOU...
  6. bakerm

    Get current users profile path

    How can you get the currently logged on users' profile path? I need to get something like the following: C:\Documents and Settings\User Thanks in advance for any help.
  7. bakerm

    Is it possible to enable or disable a device?

    I need to know if it is possible to dissable a device with VB code. There are some unique circumstances in my workplace in which this could be very usefull. The user can only run under one account so individual settings per account are out of the picture. Thanks in advance for any suggestions!
  8. bakerm

    Display MsgBox without buttons.

    Hello all, I need to display a message to the user without any available interaction. I tried using the msgbox and .popup methods but both will display with buttons that the user can click, I nedd to display the message on a form minus buttons. I need to have the message display for 15...
  9. bakerm

    Can you call Windows API's from VB Script?

    I am trying to use functionality contained within th User32.dll. Can this be done with VB Script? Thanks in advance for any information!
  10. bakerm

    QUERY QUESTION

    Hello. I have what is probably a very basic SQL question for you guys but is driving me crazy. I have two tables: A and B Example: Table A has 500 rows that meet certain search criteria. Table B has 450 rows that meet the same search criteria used for table A. The tables should return the...
  11. bakerm

    Add selected list box items to clipboard

    Does anyone know the best way to add the selected items from a list box to the clipboard? I am using a List Box control with MultiSelect set to 2-Extended. This will allow the user to select multiple items. Any help will be greatly appreciated! Thanks!
  12. bakerm

    How do you get a list of Windows permissions

    I need to write an application that will get a list of the users that have been assigned permissions for the machine on which the app will be running. I have been browsing thru the api documentation on MS.com and didn't see anything that looked like what I need. Thanks in advance for any help...
  13. bakerm

    Read a text file from bottom to top

    I need to read a text file from the last line up. I have no problem itterating through a file from beginning to end, but this has provided some puzzlement for me. Thanks in advance for your help!
  14. bakerm

    VB with OutLook question

    Hello All!!!! Is there a way to get a list of names, like the mailing list, from OuLook via VB code. Thanks in adavance for any help!
  15. bakerm

    TextStream question

    Is there a way to search for a string within a textstream object without going line by line? I have tried using instr() and I get the following err: Invalid procedure call or argument Thanks!!!!
  16. bakerm

    Monitor a Shelled .bat file

    I have written a program that will allow a user to start as many instances of a .bat file, using the SHELLEXUCUTE API, they want. Each instance may vary in the amount of time it takes to finnish, depending on server load. I would like to know if anyone has any ideas on how to monitor each...
  17. bakerm

    "Open" File Statement Question

    Newbie question for you guys.... Is there a way using the Open statement to open a .txt file read one line at a time, modify that line if needed, and write the line back into the location it came from in the file? Any help is greatly appreciated!
  18. bakerm

    AVI - COPY FILE

    Cananyone tell me where to get a copy of the windows CopyFile.avi? Thanks!
  19. bakerm

    Show Folders Only in Common Dialog

    I need to allow the users to navigata a network and find folders only, I don't want them to see any file names inside the folder. Tried the .filter and couldn't get the desired results. I am not sure i was using it correctly. Any help will be greatly appreciated!!!
  20. bakerm

    How to display multiple parameters on one form.

    A newbie question for all the experts. I have a report, Crystal 8.5, that requires three params: Employee Num, Start Date and End Date. I created a param for each. I have not found a way to have all the required params to show on one form. At this time you have to select each from a list box...

Part and Inventory Search

Back
Top