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 SkipVought 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. Shift838

    Issue creating registry key on remote computer

    I am running my powershell from my machine as an administrator domain account that as local admin access on a server. I am trying to create a registry key with the below and the code works to copy my directory, but when trying to create the new registry key it fails. # Check if you can ping...
  2. Shift838

    Working with Variables

    I am working on extracting a variable with powershell for a Citrix farm. I use: $farmname = Get-XAFarm | Select-Object farmname this puts the below into the variable FarmName -------- MY FARM NAME HERE I just need to pull the farm name itself or trim the rest off. So i don't need...
  3. Shift838

    Service Status

    I am trying to query a service to get it's state (running, stopped, etc). I am dumping it to a CSV file. There may be an easier way to do this. I have it working but when it dumps to the CSV file for status I see: @{Status=Running} I just want to see 'Running'. I thought that I could just...
  4. Shift838

    Multiple process execution for program

    I was launching the above code with a button on the main form. I tried to implement my code via a module but it still freezes the form until the process is closed. I was able to successfully implement separate threads by the below code additions. I just copied my entire code that references...
  5. Shift838

    Multiple process execution for program

    I am working on a vb .net application to run a dos based executable that emulates old arcade systems. The problem I am having is that i can execute one process only at a time. When I exit that process I can then execute another one. I want to be able to execute multiple processes of the same...
  6. Shift838

    Get erros from command line and Display in Application

    softhemc, Worked like a charm! Thanks..
  7. Shift838

    Get erros from command line and Display in Application

    using the below code with 'softhemc' recommendation works, but now I would only like to display it if it errors. So currently with the below code it will display it if it errors or if you exit normally it will send blank string. How can I only get it to work if it receives an actual error...
  8. Shift838

    Get erros from command line and Display in Application

    I am coding a GUI Interface to execute an executable that executes via a command line. I want to retrieve any errors that when running the executable with arguments that it may generate. the code below seem to work to display the last message if it runs successfully when you exit the program...
  9. Shift838

    Allow multiple processes to run

    I am developing a program that runs an old emulator for some older type video game systems. I want to be able to allow the process to be launched multiple times or maybe up to 10 instances of this to be running at one time in separate windows. My current code is: Dim MessProcess As New...
  10. Shift838

    issues starting java jar file with in VB .NET

    guess I should have worked on it for a few minutes longer. I figured it out. it was syntax.. If chksbridge.Checked = True Then Dim TIITProcess As New ProcessStartInfo TIITProcess.FileName = "java" TIITProcess.Arguments = "-jar tiimagetool.jar BRIDGE " &...
  11. Shift838

    issues starting java jar file with in VB .NET

    I am attempting to start java with arguments calling a jar file and other switches. the java pops up for just a millisecond but I don't know what its doing or not doing. The code I am using is: If chksbridge.Checked = True Then Dim TIITProcess As New ProcessStartInfo...
  12. Shift838

    Rich Text Box

    I am coding a simple web site and wanting to pull in a text file to a text box but have it recognized html tags like <b> for bold, etc and display it correctly. Is there a control that I need to use on the ASP.net form. I am using VB .net for my backend. It's small amount of code to pull the...
  13. Shift838

    Button control acting odd after grammatically resetting.

    that's what I get for trying to write this code when I was on ambien! It should have been Cyan all the way through. Good catch Andrzejek, i usually use Cyan, don't know why i typed Aqua. Must have been the ambien.. works like it should with the change to all the correct colors! Thanks...
  14. Shift838

    Button control acting odd after grammatically resetting.

    I have a form with some buttons on it and when the button is clicked it changes the background color. Pretty simple and that part works fine when the form is first ran. The issue I am having is if I hit another button on the form that is a 'RESET' button, that resets the background colors of...
  15. Shift838

    Powershell script to change feature permissions in IIS

    I am trying to create a script to follow a citrix doc to enable IIS and XML integration. (article CTX125107) Link One of the steps is to Edit Feature permissions within a Virtual Directory and Web Application. It must be changed to 'Execute' I am sure there is a one liner for powershell that...
  16. Shift838

    64bit/32bit compile

    What is the best option to allow for an application to run on both 32bit and 64bit OS' regardless of CPU type. I see options for 'Any CPU' which I select, should I select 'Prefer 32bit' ?
  17. Shift838

    change default windows application icon for app

    Properties show: 256 x 256 pixels 32 bit depth 361kb
  18. Shift838

    change default windows application icon for app

    it does not. it has the default windows application icon, even though I have set it. when launched it shows the right icon in the task bar, but that's it.
  19. Shift838

    change default windows application icon for app

    That is what I thought, but I did that and it works as far as the icon in the task bar changes and the icon on the application title (left corner), but the shortcut or the icon in Windows explorer still shows the default windows application icon.
  20. Shift838

    change default windows application icon for app

    I am trying to figure out how to change the default windows application icon on my project. I can get the icon to change that appears in the task bar when the application is running, but I want to change the default windows application icon to the actual executable, so it shows the icon in...

Part and Inventory Search

Back
Top