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 gkittelson 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: *

  1. simspace

    Can I create a child process using WMI VB scripting?

    Here's why I want to do this... When an app is started by clicking on it, it becomes a child process of the explorer process. The same is true for all apps that are loaded when Windows starts up. If you kill the explorer process using the "End Process Tree" context menu option in the task...
  2. simspace

    Can I create a child process using WMI VB scripting?

    Using WMI VB scripting, I would like to create/attach multiple child processes to a parent process, such as the explorer process. Any ideas how this can be done? Below is my code that fails. Thanks! Chris Option Explicit dim wmi, rootProcessName, rootProcess, objStartup, objConfig...
  3. simspace

    Help with PIVOT without aggregate function

    Well, I got the answer from a SQL forum. Here it is... SELECT * FROM (SELECT p.user_id, pit.data_name, pi.item_value FROM profile p JOIN profile_item pi ON pi.profile_id = p.profile_id JOIN profile_item_type pit ON pit.profile_item_type_id = pi.profile_item_type_id AND pit.data_name in...
  4. simspace

    Help with PIVOT without aggregate function

    I need to turn the following SQL results into a pivot table I don't beleieve an aggregate function will help with this one. The query is simplified for the purpose of this post. I have used the SQL 2005 PIVOT operator to show columns of aggregated data. However, I'm not sure how to turn the...

Part and Inventory Search

Back
Top