2
votes
5answers
4k views
How to interact with Windows Media Player in C#
Hello,
I am looking for a way to interact with a standalone full version of Windows Media Player.
Mostly I need to know the Path of the currently played track.
The iTunes SDK …
0
votes
1answer
715 views
How to create an AxHost solely in code [C#]
Hello,
I'm using a COM Wrapper to interact with Windows Media Player.
The it is using an AxHost to somehow wrap the player, for me it's all just magic under the hood^^
The A …
2
votes
1answer
244 views
Sizes and Timeouts on streaming service contract in WCF
Hi,
I am currently working on a small project, where I need to send a potentially large file over the internet.
After some debating I decided to go with the streaming option instead …
6
votes
1answer
295 views
WPF snapping controls
Hello everyone,
my current free-time project, in order to dive into WPF MVVM, is a "digital" copy of an old puzzle I used to play a lot in my childhood. It basically is a simple puzzle wher …
1
vote
3answers
141 views
Deleting a single item FROM recycle bin
Hi,
is there anyway in C# (interop maybe) to delete a specific file in the recycle bin permanently?
While searching on the internet I only found ways to delete TO the recycle bin n …
2
votes
4answers
165 views
Combine Multiple Predicates
Hello,
Is there any way in c# .NET 2.0! to combine multiple Predicates?
Let's say I have the following code.
List<string> names = new List<string>();
nam …
2
votes
2answers
182 views
Binary String to Integer
Hello,
I have a binary string, entered by the user, which I need to convert to an integer.
At first I naivly used this simple line:
Convert.ToInt32("11011",2);
…
0
votes
3answers
361 views
C# Performance setting value for each list item.
Hello,
I am trying to find the fasted way to set a specific property of every item in a generic list.
Basicly the requirement is to iterate over a list of items and resetting the Is …
7
votes
How can I get the filetype icon that Windows Explorer shows?
I used the following solution from codeproject in one of recent my projects
Obtaining (and managing) file and fold …
0
votes
Binary String to Integer
Thanks for the great and incredibly fast answer!
Unfortunaetly my requirements changed. Now the user can pretty much enter any format. Binary, Decimal, Hex. So I decided try - catch just pr …
0
votes
C# finding item in List<>
For .NET 2.0:
list.Find(delegate(Item i) { return i.Property == someValue; });
…
