Search found 5 matches

by fair64
Wed Jul 23, 2014 5:55 pm
Forum: PowerShell GUIs
Topic: Output data to listbox
Replies: 8
Views: 9823

Re: Output data to listbox

Whatever jvierra, if i read everything and knew everything i wouldn't have to ask questions. Its responses like yours that turn new users off. I'm glad I don't react that way when someone asks about VMWare, I try to spread the knowledge that I have in my field of expertise. In my way of thinking the...
by fair64
Wed Jul 23, 2014 4:19 pm
Forum: PowerShell GUIs
Topic: Output data to listbox
Replies: 8
Views: 9823

Re: Output data to listbox

I appreciate your feedback but thats a little presumptuous that I am just guessing my way through PS. Actually I have read many tuorials and have learned alot. I have searched for an answer before asking the question since I was unable to find the answer I figured I would ask here. A better response...
by fair64
Wed Jul 23, 2014 3:09 pm
Forum: PowerShell GUIs
Topic: Output data to listbox
Replies: 8
Views: 9823

Re: Output data to listbox

So for example if I am building an AD tool with multiple functions like listing all expired AD accounts and am using the listbox to display the results I should be able to or would like to be able to display the results of other queries like the one in question in the same listbox or would i need to...
by fair64
Wed Jul 23, 2014 3:02 pm
Forum: PowerShell GUIs
Topic: Output data to listbox
Replies: 8
Views: 9823

Re: Output data to listbox

Nothing in particular just testing to see how and what types of data can be output to to different objects. Learning...
by fair64
Wed Jul 23, 2014 11:19 am
Forum: PowerShell GUIs
Topic: Output data to listbox
Replies: 8
Views: 9823

Output data to listbox

I am having problems trying to display data in a listbox (data populates in the richtextbox correctly). This is the code I am using, I am sure its an easy fix, thanks in advance : $roles = Get-ADDomain -Server dc2 | select InfrastructureMaster, PDCEmulator, RIDMaster | Out-String $listbox1.Items.Add...