Search Results

1
vote
2answers
1k views

Why do some wav files play in my c# directsound app but some don’t?

Hi, I've got a c# application that plays simple wav files through directsound. With the test data I had, the code worked fine. However when I used real-world data, it produced a very unhe …
1
vote
2answers
244 views

databinding a property to either of two dependency properties

I have two custom controls that are analogous to a node and the control that draws links between nodes. I would like to have both controls written as much in xaml as possible. The link s …
16
votes
8answers
1k views

“const correctness” in c#

Hi, I'm a heavy C++ user who dabbles in C# in his spare time. I'm also one of those const-correctness nazis and so not being able to do this easily in C# grates a little. The point …
0
votes
1answer
192 views

validating and adjusting a treeview label

Hi, I've got a treeview control, and have caught its after-label-edit event. I want to be able to validate the user's input and adjust it - if for instance it's too long - but I only seem …
0
votes
7answers
447 views

c# thread starts from debugger, but won’t start stand-alone

Hi, I've got a small app that searches for and stores the names of a large number of files at start-up. I'm splitting this search into several Thread objects that each search one directory …
1
vote
2answers
95 views

recording all the files in a large directory

Hi, I've got a number of directories with a large number of files in them (~10,000). I want to create a list of these files in my app, and have already threaded the io access so that the a …
2
votes
5answers
262 views

unobtrusive loggers in c#

Hi guys, I'm rolling my own logger class, and want to represent the heirarchy of logs as the app moves through different phases: log start loading loaded 400 val …
1
vote
3answers
492 views

how to get the propertyinfo of a specific property?

Hi guys, I want to get the PropertyInfo for a specific property. I could use: foreach(PropertyInfo p in typeof(MyObject).GetProperties()) { if ( p.Name == "MyProperty" …
1
vote

c# thread starts from debugger, but won’t start stand-alone

It appears I mis-understood the code I cut-and-paste'd to create my threading code. I assumed the while(!t.isAlive){} line was blocking until the thread could properly start itself, and thought it …