-
as seen on Server Fault
- Search for 'Server Fault'
When I run this cmdlet, I get the following result:
[PS] C:\Windows\system32Get-MailboxFolderStatistics user | ft FolderPath, FolderSize -autosize
FolderPath FolderSize
---------- ----------
/Top of Information Store 156 B (156 bytes)
/Calendar …
>>> More
-
as seen on Stack Overflow
- Search for 'Stack Overflow'
I have a ContextMenu with the ItemsSource bound to the selected item of a list view, like this:
<ContextMenu ItemsSource="{Binding Path=PlacementTarget.SelectedItem,
RelativeSource={RelativeSource Self}, Converter={StaticResource possibleConverter}}"/>
The possibleConverter enumerates…
>>> More
-
as seen on Stack Overflow
- Search for 'Stack Overflow'
I have a WPF Menu and a Tab control. I would like the list of menu items to be generated from the collection of TabItems on my tab control. I am binding my tab control to a collection to generate the TabItems. I have a TabItem style that uses a ContentPresenter to display the TabItem text in a TextBlock…
>>> More
-
as seen on Stack Overflow
- Search for 'Stack Overflow'
I have a set of x string items e.g("A","B","C","D","E","F")
I need to know the formula that calculates how many combinations of n items and what is the algorithm that generates all possible combinations
e.g
if we need to select 4 items from the list randomly.
those 4 items could be:
("A","B","C","D")…
>>> More
-
as seen on Stack Overflow
- Search for 'Stack Overflow'
I have a SPD workflow that is set to run when an item changes but it keeps getting triggered on new items, which is pretty annoying. I'm looking into why this is happening but I'm also looking for a way to terminate the workflow if the item is new as a temporary workaround.
I tried to compare the…
>>> More