User oreon - Stack Overflowmost recent 30 from stackoverflow.com2009-12-14T21:01:47Zhttp://stackoverflow.com/feeds/user/5798http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/56478/how-to-interact-with-windows-media-player-in-c2How to interact with Windows Media Player in C#oreon2008-09-11T13:02:32Z2009-10-07T09:22:35Z
<p>Hello,</p>
<p>I am looking for a way to interact with a standalone full version of Windows Media Player.<br />
Mostly I need to know the Path of the currently played track.</p>
<p>The iTunes SDK makes this really easy but unfortunately there really isn't any way to do it with Windows Media Player, at least not in .Net(C#) without any heavy use of pinvoke, which I am not really comfortable with.</p>
<p>Thanks</p>
<p>Just to clearify: I don't want to embedded a new instance of Windows Media Player in my app, but instead control/read the "real" full version of Windows Media Player, started seperatly by the user</p>
http://stackoverflow.com/questions/1485766/c-finding-item-in-list/1485883#14858830Answer by oreon for C# finding item in List<>oreon2009-09-28T07:47:58Z2009-09-28T07:47:58Z<p>For .NET 2.0:</p>
<pre><code>list.Find(delegate(Item i) { return i.Property == someValue; });
</code></pre>
http://stackoverflow.com/questions/1431613/c-performance-setting-value-for-each-list-item0C# Performance setting value for each list item.oreon2009-09-16T08:08:44Z2009-09-16T11:47:19Z
<p>Hello,</p>
<p>I am trying to find the fasted way to set a specific property of every item in a generic list.</p>
<p>Basicly the requirement is to iterate over a list of items and resetting the IsHit property to FALSE. Only the items in a second "hit"-list should be set to TRUE afterwards.</p>
<p>My first attempt looked like this:</p>
<pre><code>listItems.ForEach(delegate(Item i) { i.IsHit = false; });
foreach (int hitIndex in hits)
{
listItems[hitIndex - 1].IsHit = true;
}
</code></pre>
<p>Note: hits is 1-based, the items list is 0-based.</p>
<p>Then i tried to improve the speed and came up with this:</p>
<pre><code>for (int i = 0; i < listItems.Count; i++)
{
bool hit = false;
for (int j = 0; j < hits.Count; j++)
{
if (i == hits[j] - 1)
{
hit = true;
hits.RemoveAt(j);
break;
}
}
if (hit)
{
this.listItems[i].IsHit = true;
}
else
{
this.listItems[i].IsHit = false;
}
}
</code></pre>
<p>I know this is a micro optimization but it is really time sensitive code, so it would make sense to improve this code beyond readibility... and just for fun of course ;-)</p>
<p>Unfortuanetly I don't really see any way to improve the code further. But I probably missed something.</p>
<p><br><br>
Thanks</p>
<p>PS: Code in C# / .NET 2.0 would be preferred.</p>
<p><hr /></p>
<p>I ended up switching to Eamon Nerbonne solution. But then I noticed something weird in my benchmarks.</p>
<p>The delegate:</p>
<pre><code>listItems.ForEach(delegate(Item i) { i.IsHit = false; });
</code></pre>
<p>is faster than:</p>
<pre><code>foreach (Item i in listItems)
{
i.IsHit = false;
}
</code></pre>
<p>How is that possible?</p>
<p>I tried to look at IL but thats just way over my head... I only see that the delegates results in fewer lines, whatever that means.</p>
http://stackoverflow.com/questions/1193026/testing-picturebox-in-white0Testing PictureBox in whiteoreon2009-07-28T09:40:33Z2009-08-27T06:21:19Z
<p>Hello,</p>
<p>I am currently evaluating the White testing framework. Pretty amazing stuff!</p>
<p>Everything looks pretty promising, but I have run into a small wall.
<br><br>
How can I test a .NET 2.0 PictureBox?
<br>There is no predefinied UIItem for that. Though there is the Image class, but how would I use it in combination with my PictureBox?
<br>I also tried to use a CustomUIItem, but with no success. How would I implement this for a my standard PictureBox?</p>
<p>What are my options? What did I miss?</p>
<p>Thanks</p>
<p><br>
<br>
Just to clearify:
<br> I know that something like this should be tested in code. Believe me I know. But unfortunately this ui automation is a requirement, unfortuanetly...</p>
<p>Now I just need a way to maybe get the image location or something. Just like I am able to get the text in any WinForms TextBox.</p>
<p><br>
Update:</p>
<p>This is a dump of the Debug.Details for my Window. I hope this helps to understand and hopefully even solve my problem.</p>
<pre><code>---------------------------
---------------------------
AutomationId: Form1
ControlType: ControlType.Window
Name: Form1
HelpText:
Bounding rectangle: 154;203;680;490
ClassName: WindowsForms10.Window.8.app.0.378734a
IsOffScreen: False
AutomationId: progressBar1
ControlType: ControlType.ProgressBar
Name:
HelpText:
Bounding rectangle: 198;488;190;23
ClassName: WindowsForms10.msctls_progress32.app.0.378734a
IsOffScreen: False
AutomationId: Progress
ControlType: ControlType.Button
Name: Start Progress
HelpText:
Bounding rectangle: 198;459;190;23
ClassName: WindowsForms10.BUTTON.app.0.378734a
IsOffScreen: False
AutomationId: PicBox
ControlType: ControlType.Pane
Name:
HelpText:
Bounding rectangle: 619;274;199;140
ClassName: WindowsForms10.Window.8.app.0.378734a
IsOffScreen: False
AutomationId: PicCombo
ControlType: ControlType.ComboBox
Name:
HelpText:
Bounding rectangle: 619;247;199;21
ClassName: WindowsForms10.COMBOBOX.app.0.378734a
IsOffScreen: False
AutomationId: 1001
ControlType: ControlType.Edit
Name:
HelpText:
Bounding rectangle: 622;250;176;15
ClassName: Edit
IsOffScreen: False
AutomationId: ListBox
ControlType: ControlType.List
Name:
HelpText:
Bounding rectangle: 0;21;199;41
ClassName: ComboLBox
IsOffScreen: True
AutomationId:
ControlType: ControlType.ListItem
Name: **********
HelpText:
Bounding rectangle: 1;22;197;13
ClassName:
IsOffScreen: True
AutomationId:
ControlType: ControlType.ListItem
Name: **********
HelpText:
Bounding rectangle: 1;35;197;13
ClassName:
IsOffScreen: True
AutomationId:
ControlType: ControlType.ListItem
Name: **********
HelpText:
Bounding rectangle: 1;48;197;13
ClassName:
IsOffScreen: True
AutomationId: DropDown
ControlType: ControlType.Button
Name: Dropdown-Schaltfläche
HelpText:
Bounding rectangle: 800;248;17;19
ClassName:
IsOffScreen: False
AutomationId: EditRadio
ControlType: ControlType.RadioButton
Name: Edit
HelpText:
Bounding rectangle: 198;420;43;17
ClassName: WindowsForms10.BUTTON.app.0.378734a
IsOffScreen: False
AutomationId: ComboRadio
ControlType: ControlType.RadioButton
Name: Combo
HelpText:
Bounding rectangle: 198;397;58;17
ClassName: WindowsForms10.BUTTON.app.0.378734a
IsOffScreen: False
AutomationId: tb1
ControlType: ControlType.Edit
Name:
HelpText:
Bounding rectangle: 198;303;190;20
ClassName: WindowsForms10.EDIT.app.0.378734a
IsOffScreen: False
AutomationId: btn2
ControlType: ControlType.Button
Name: button1
HelpText:
Bounding rectangle: 198;274;190;23
ClassName: WindowsForms10.BUTTON.app.0.378734a
IsOffScreen: False
AutomationId: btn1
ControlType: ControlType.Button
Name: button1
HelpText:
Bounding rectangle: 198;245;190;23
ClassName: WindowsForms10.BUTTON.app.0.378734a
IsOffScreen: False
AutomationId: TitleBar
ControlType: ControlType.TitleBar
Name: Form1
HelpText:
Bounding rectangle: 158;207;672;26
ClassName:
IsOffScreen: False
AutomationId: Form1
ControlType: ControlType.MenuBar
Name: Systemmenüleiste
HelpText:
Bounding rectangle: 158;207;18;25
ClassName:
IsOffScreen: False
AutomationId: Item 1
ControlType: ControlType.MenuItem
Name: System
HelpText:
Bounding rectangle: 158;207;18;25
ClassName:
IsOffScreen: False
AutomationId: Minimize
ControlType: ControlType.Button
Name: Minimieren
HelpText:
Bounding rectangle: 758;207;24;24
ClassName:
IsOffScreen: False
AutomationId: Maximize
ControlType: ControlType.Button
Name: Maximieren
HelpText:
Bounding rectangle: 782;207;24;24
ClassName:
IsOffScreen: False
AutomationId: Close
ControlType: ControlType.Button
Name: Schließen
HelpText:
Bounding rectangle: 806;207;24;24
ClassName:
IsOffScreen: False
---------------------------
OK
---------------------------
</code></pre>
http://stackoverflow.com/questions/1271562/binary-string-to-integer/1276283#12762830Answer by oreon for Binary String to Integeroreon2009-08-14T06:04:34Z2009-08-14T06:04:34Z<p>Thanks for the great and incredibly fast answer!</p>
<p>Unfortunaetly my requirements changed. Now the user can pretty much enter any format. Binary, Decimal, Hex. So I decided try - catch just provides the simplest and cleanest solution.</p>
<p>So just for good measure I am posting the code I am using now. I think it is pretty clear and even somewhat elegant, or so I think^^.</p>
<pre><code>switch (format)
{
case VariableFormat.Binary:
try
{
result = Convert.ToInt64(value, 2)
}
catch
{
// error handling
}
break;
case VariableFormat.Decimal:
try
{
result = Convert.ToInt64(value, 10)
}
catch
{
// error handling
}
break;
case VariableFormat.Hexadecimal:
try
{
result = Convert.ToInt64(value, 16)
}
catch
{
// error handling
}
break;
}
</code></pre>
<p>So thanks for encouraging me to use try - catch, I think it really improved the readibility of my code.</p>
<p>Thanks</p>
http://stackoverflow.com/questions/1271562/binary-string-to-integer2Binary String to Integeroreon2009-08-13T12:05:27Z2009-08-14T06:04:34Z
<p>Hello,</p>
<p>I have a binary string, entered by the user, which I need to convert to an integer.</p>
<p>At first I naivly used this simple line:</p>
<pre><code>Convert.ToInt32("11011",2);
</code></pre>
<p>Unfortunately this throws an exception if the user enters the integer directly.</p>
<pre><code>Convert.ToInt32("123",2); // throws Exception
</code></pre>
<p>How can I make sure that the string entered by the user actually is a binary string? </p>
<ul>
<li>try..catch....but that's just too ugly.</li>
<li>something like 'Int32.TryParse' maybe.</li>
</ul>
<p>Thanks</p>
http://stackoverflow.com/questions/1248232/combine-multiple-predicates2Combine Multiple Predicatesoreon2009-08-08T07:18:47Z2009-08-13T21:18:15Z
<p>Hello,</p>
<p>Is there any way in c# .NET 2.0! to combine multiple Predicates?</p>
<p>Let's say I have the following code.</p>
<pre><code>List<string> names = new List<string>();
names.Add("Jacob");
names.Add("Emma");
names.Add("Michael");
names.Add("Isabella");
names.Add("Ethan");
names.Add("Emily");
List<string> filteredNames = names.FindAll(StartsWithE);
static bool StartsWithE(string s)
{
if (s.StartsWith("E"))
{
return true;
}
else
{
return false;
}
}
</code></pre>
<p>This gives me:</p>
<pre><code>Emma
Ethan
Emily
</code></pre>
<p>So this is pretty cool stuff, but I know want to be able to filter using multiple predicates.</p>
<p>So I want to be able to say something like this:</p>
<pre><code>List<string> filteredNames = names.FindAll(StartsWithE OR StartsWithI);
</code></pre>
<p>In order to get:</p>
<pre><code>Emma
Isabella
Ethan
Emily
</code></pre>
<p>How can I achieve this?
Currently I am just filtering the complete list twice and combining the results afterwards. But unfortunately this is quite inefficent and even more importantly I lose the original sort order, which is not acceptable in my situation.</p>
<p>I also need to be able to iterate over any number of filters/predicates as there can be quite a lot.</p>
<p>Again it needs to be a .NET 2.0 solution unfortunately I can't use a newer version of the framework</p>
<p>Thanks a lot.</p>
http://stackoverflow.com/questions/1163975/word-vba-tabstop-problem0Word VBA Tabstop Problemoreon2009-07-22T08:58:36Z2009-07-22T09:06:05Z
<p>Hello,</p>
<p>I have the following VBA code</p>
<pre><code>Private Sub CreateQuery_Click()
Dim doc As Document
Dim i As Integer
Set doc = ActiveDocument
i = doc.Paragraphs.Count
doc.Paragraphs(i).Range.InsertParagraphAfter
i = i + 1
For j = 0 To 1000
doc.Paragraphs(i).Range.InsertParagraphAfter
i = i + 1
doc.Paragraphs(i).Range.InsertParagraphAfter
i = i + 1
With doc.Paragraphs(i)
.Range.Font.Italic = True
.Range.ListFormat.ApplyBulletDefault
.Indent
.Indent
.TabStops.Add Position:=CentimetersToPoints(3.14)
.TabStops.Add Position:=CentimetersToPoints(10)
.TabStops.Add Position:=CentimetersToPoints(11)
End With
For k = 0 To 10
With doc.Paragraphs(i)
.Range.InsertAfter "testState" & vbTab & CStr(doc.Paragraphs(i).Range.ListFormat.CountNumberedItems) & vbTab & CStr(doc.Paragraphs.Count)
.Range.InsertParagraphAfter
End With
i = i + 1
Next
i = doc.Paragraphs.Count
With doc.Paragraphs(i)
.Range.ListFormat.ApplyBulletDefault
.TabStops.ClearAll
.Outdent
.Outdent
End With
Next
i = doc.Paragraphs.Count
doc.Paragraphs(i).Range.InsertParagraphAfter
i = i + 1
End Sub
</code></pre>
<p>Basically this code just prints n numbers of lines with the specific format.</p>
<ul>
<li>Bullet list</li>
<li>Indented</li>
<li>and TabStops</li>
</ul>
<p><img src="http://files.lans-msp.de/vbscript%5Ftabstops.png" alt="alt text" /></p>
<p>The Code works perfectly for an arbitrary number of lines, but then at some point Word just stops applying the TabStops. </p>
<p>I know that if I wouldn't reset the format every 10 lines, the code would work seemingly forever (really?!?). But the every 10 line brake is a must.</p>
<p>The exact line number where everything breaks down is dependent on the amount of RAM. On my work computer with 1GB it only works until about line 800(as you can see). My computer at home with 4GB didn't show this behaviour. But I'm sure it would have shown it as well if I had it let run long enough, because in my production code(which is a bit more complex) my home computer shows the problem as well.</p>
<p>Is this some kind of memory leak or something? What did I do wrong? Is maybe, god-forbid, VBA itself the culprit here?</p>
<p>Thanks</p>
http://stackoverflow.com/questions/1119567/deleting-a-single-item-from-recycle-bin1Deleting a single item FROM recycle binoreon2009-07-13T13:52:39Z2009-07-13T14:09:17Z
<p>Hi,</p>
<p>is there anyway in C# (interop maybe) to delete a specific file in the recycle bin permanently?
<br><br>
While searching on the internet I only found ways to delete TO the recycle bin not FROM.
I also don't want to empty the whole bin, just one specific file. The specific item is already in the recycle bin.</p>
<p>How can I do this?</p>
<p>EDIT:<br></p>
<ol>
<li>I didn't put the file there myself, nor my program. Somebody else did so I have no control over that.</li>
<li>Windows Search somehow is able to find my file...?!?</li>
</ol>
<p>I found out another thing, I can actually find a file in C:\RECYCLER with the same file extension but a different name. So how can I tell if that is really the file I'm looking for?</p>
<p>Thanks</p>
http://stackoverflow.com/questions/1063338/wpf-snapping-controls6WPF snapping controlsoreon2009-06-30T12:19:37Z2009-07-02T15:38:37Z
<p>Hello everyone,</p>
<p>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 where one has to fill a given space with different kind of pieces so the whole space is filled. But with the extra twist of being in hexagonal space. </p>
<p>Just to illustrate, this is what it currently looks like in WPF:</p>
<p><img src="http://img190.imageshack.us/img190/2553/atomgridmolecule.png"></p>
<p>So basically there is a number of predefined pieces(like the orange one above) which can be "plugged" into the given grid(the gray stuff above). </p>
<p>So the result might look something like this:</p>
<p><img src="http://img30.imageshack.us/img30/2553/atomgridmolecule.png"></p>
<p>I want the user(probably only me^^) to be able to drag and drop the pieces into the grid. I want the dragging to look natural meaning having the correct offset while dragging depending on where the user clicked the piece.</p>
<p>Both grid and molecule are the same control, a custom hexagonal panel control derived from the WPF Panel class. </p>
<p>The problem is on how to do the "plugging in" and especially the "unplugging".</p>
<p>I have two ideas on how I might tackle this:</p>
<ol>
<li>Just color the cells in the grid and hiding the original piece
<ul>
<li>Pro:
<ul>
<li>Zero cost perfect alignment of the cells</li>
</ul></li>
<li>Cons:
<ul>
<li>Recreating the piece at the right spot with the correct mouse offset if dragging out, seems impossibly? hard to do</li>
</ul></li>
</ul></li>
<li>Snapping the piece to the grid and show it on top
<ul>
<li>Pro:
<ul>
<li>Dragging out is a simple dragging operation, just as dragging in</li>
</ul></li>
<li>Disadvantage:
<ul>
<li>Somehow have to align the piece with the underlying grid, some kind of snapping
<br/><br/></li>
</ul></li>
</ul></li>
</ol>
<p>So which approach should I take? Even more important how can I even implement this in WPF? Especially using a clean MVVM way.
<br/><br/><br/>
Thanks so much for your help! Any input is highly appreciated!</p>
<p>EDIT: <br/>
Thanks Aran, I thought so too.</p>
<p>But how do I actually implement this now?</p>
<ul>
<li>How can I actually get the coordinates?</li>
<li>All the orange circles are linked, so how can I "move" or better "plug" them in as one piece?</li>
</ul>
http://stackoverflow.com/questions/976551/wpf-border-around-an-itemscontrol0WPF - Border around an itemscontroloreon2009-06-10T16:01:24Z2009-06-10T16:24:17Z
<p>Hey,</p>
<p>I have an itemscontrol with a custom panel inside a usercontrol. The usercontrols size is only constrained by the parent window size.</p>
<pre><code><UserControl>
<Grid>
<Border BorderBrush="DarkGray" BorderThickness="5">
<ItemsControl ItemsSource="{Binding ActiveGame.Grid.CellsFlat}">
<ItemsControl.ItemsPanel>
<ItemsPanelTemplate>
<Wpf:HexagonalPanel/>
</ItemsPanelTemplate>
</ItemsControl.ItemsPanel>
<ItemsControl.ItemTemplate>
<DataTemplate>
<Button />
</DataTemplate>
</ItemsControl.ItemTemplate>
</ItemsControl>
</Border>
</Grid>
</UserControl>
</code></pre>
<p>I now want the border to be drawn only around the resulting panel.
But instead its drawn around the whole grid or probably more precisely at the same size as the grid.</p>
<p>I think I implemented the MeasureOverride correctly on my HexagonalPanel, it returns the correct size, so shouldn't it draw the border at that size?</p>
<p>What am I missing?</p>
<p>Thanks</p>
http://stackoverflow.com/questions/559084/sizes-and-timeouts-on-streaming-service-contract-in-wcf2Sizes and Timeouts on streaming service contract in WCForeon2009-02-17T22:48:51Z2009-02-17T23:33:04Z
<p>Hi,</p>
<p>I am currently working on a small project, where I need to send a potentially large file over the internet.</p>
<p>After some debating I decided to go with the streaming option instead of a chunking approach. The files can potentially be very big, I don't really want to specify an exact upper bound, 2GB maybe 4GB, who knows.</p>
<p>Naturally this can take a long time. Again I don't really want to have a timeout. It just takes as long as it takes, doesn't matter.</p>
<p>While poking around trying different files of varying size, I slowly, step by step, tuned the properties of my BasicHttpBinding. I am just wondering if the values I came up with are basically okay, or if they are totally evil?</p>
<pre><code>transferMode="Streamed"
sendTimeout="10675199.02:48:05.4775807"
receiveTimeout="10675199.02:48:05.4775807"
openTimeout="10675199.02:48:05.4775807"
closeTimeout="10675199.02:48:05.4775807"
maxReceivedMessageSize="9223372036854775807"
</code></pre>
<p>This just doesn't feel right somehow, these are just the maximum possible values for each underlying data structure. But I don't know what else to do.</p>
<p>So again:</p>
<p>Is this basically the right approach? Or did I completely misunderstand and misuse the framework here?</p>
<p>Thanks</p>
http://stackoverflow.com/questions/106081/how-to-create-an-axhost-solely-in-code-c0How to create an AxHost solely in code [C#]oreon2008-09-19T22:15:29Z2008-10-20T15:00:09Z
<p>Hello,</p>
<p>I'm using a COM Wrapper to interact with Windows Media Player.</p>
<p>The it is using an AxHost to somehow wrap the player, for me it's all just magic under the hood^^</p>
<p>The AxHost.AttachInterfaces looks like this</p>
<pre><code> protected override void AttachInterfaces()
{
try
{
//Get the IOleObject for Windows Media Player.
IOleObject oleObject = this.GetOcx() as IOleObject;
//Set the Client Site for the WMP control.
oleObject.SetClientSite(this as IOleClientSite);
Player = this.GetOcx() as WMPLib.WindowsMediaPlayer;
...
</code></pre>
<p>Everything is working find as long as I host this AxHost in a Windows Forms control. But I can't hook up the events in a constructor.</p>
<p>This for example doesn't work:</p>
<pre><code> public WMPMediaRating()
{
var remote = new WMPRemote.RemotedWindowsMediaPlayer();
_WMP = remote.Player;
_WMP.MediaChange += new _WMPOCXEvents_MediaChangeEventHandler(_WMP_MediaChange);
}
</code></pre>
<p>remote.Player is always null and the program crashes with a NullReferencesException.</p>
<p>The code in AttachInterfaces() is somehow only executed after the Form has been drawn, or after everything else is done.</p>
<p>I tried calling AttachInterfaces() by hand, but that didn't work either because GetOcx() returns nothing.</p>
<p><hr /></p>
<p>So how can I instantiate my AxHost-inherited control without Windows Forms, to use it for example in a console application?</p>
<p><strong>Thanks</strong></p>
http://stackoverflow.com/questions/108005/how-can-i-get-the-filetype-icon-that-windows-explorer-shows/108056#1080567Answer by oreon for How can I get the filetype icon that Windows Explorer shows?oreon2008-09-20T12:48:28Z2008-09-20T12:48:28Z<p>I used the following solution from codeproject in one of recent my projects</p>
<p><a href="http://www.codeproject.com/KB/files/fileicon.aspx" rel="nofollow">Obtaining (and managing) file and folder icons using SHGetFileInfo in C#</a></p>
<h2> </h2>
<p>The demo project is pretty self explanatory but basically you just have to do:</p>
<pre><code>private System.Windows.Forms.ListView FileView;
private ImageList _SmallImageList = new ImageList();
private ImageList _LargeImageList = new ImageList();
private IconListManager _IconListManager;
</code></pre>
<p>in the constructor:</p>
<pre><code>_SmallImageList.ColorDepth = ColorDepth.Depth32Bit;
_LargeImageList.ColorDepth = ColorDepth.Depth32Bit;
_SmallImageList.ImageSize = new System.Drawing.Size(16, 16);
_LargeImageList.ImageSize = new System.Drawing.Size(32, 32);
_IconListManager = new IconListManager(_SmallImageList, _LargeImageList);
FileView.SmallImageList = _SmallImageList;
FileView.LargeImageList = _LargeImageList;
</code></pre>
<p>and then finally when you create the ListViewItem:</p>
<pre><code>ListViewItem item = new ListViewItem(file.Name, _IconListManager.AddFileIcon(file.FullName));
</code></pre>
<p>Worked great for me.</p>
http://stackoverflow.com/questions/1271562/binary-string-to-integer/1276283#1276283Comment by oreon on Binary String to Integeroreon2009-08-17T05:26:10Z2009-08-17T05:26:10ZYeah no octal^^. The user actually has to choose in combobox which format she wants to use. I thought about your solution too, but it seemed easier with a combobox. Thanks so great input.http://stackoverflow.com/questions/1271562/binary-string-to-integer/1271571#1271571Comment by oreon on Binary String to Integeroreon2009-08-14T05:54:01Z2009-08-14T05:54:01ZThanks great solution. I actually went with it. But the requirements changed some what so I decided try - catch is the simplest and cleanest solutionhttp://stackoverflow.com/questions/1271562/binary-string-to-integerComment by oreon on Binary String to Integeroreon2009-08-14T05:52:38Z2009-08-14T05:52:38ZYou are probably right, it is not that ugly. I actually went with it now because Hex value are suddenly possible aswell. So some simple try - catches are just the simplest and easiest solution. Thanks everybody.http://stackoverflow.com/questions/1248232/combine-multiple-predicates/1248263#1248263Comment by oreon on Combine Multiple Predicatesoreon2009-08-08T11:15:06Z2009-08-08T11:15:06ZThanks! Works perfect!http://stackoverflow.com/questions/1248232/combine-multiple-predicates/1248236#1248236Comment by oreon on Combine Multiple Predicatesoreon2009-08-08T07:26:20Z2009-08-08T07:26:20ZSure I could but like in this example there is huge number of combinations. not even thinking about combining three filters...
Also again unfortunately I can use ONLY .NET 2.0http://stackoverflow.com/questions/1193026/testing-picturebox-in-white/1193057#1193057Comment by oreon on Testing PictureBox in whiteoreon2009-07-28T10:56:22Z2009-07-28T10:56:22ZNo just the path to the image or something. Just Like TextBox.Text I want to be able to get PictureBox.Imagehttp://stackoverflow.com/questions/1193026/testing-picturebox-in-white/1193057#1193057Comment by oreon on Testing PictureBox in whiteoreon2009-07-28T09:52:42Z2009-07-28T09:52:42ZI want to test my own code. Its just for evaluation. I want to automate WinForms. The image retrieval is a non-trivial task. And I now want to test if the correct image is displayed in my PictureBox. I know I probably could just test this in code. But unfortuanetly, "the visual route", is a requirement. I would have done it differently aswell...http://stackoverflow.com/questions/1163975/word-vba-tabstop-problem/1164013#1164013Comment by oreon on Word VBA Tabstop Problemoreon2009-07-28T09:42:51Z2009-07-28T09:42:51ZThis solved the problem for me. I can see that this is the cleaner way, so thats great. But I still think Word has some kind of memory leak here. Maybe this 'fix' just pushed the boundaries up a bit...
Thanks a lot anyway, my problem is gone and thats the most important thing!http://stackoverflow.com/questions/1163975/word-vba-tabstop-problem/1164013#1164013Comment by oreon on Word VBA Tabstop Problemoreon2009-07-22T09:15:36Z2009-07-22T09:15:36ZIt is not every line. I just reapply the format every block of 10 lines. In the real script way more stuff is going on between the blocks.http://stackoverflow.com/questions/1163975/word-vba-tabstop-problem/1163994#1163994Comment by oreon on Word VBA Tabstop Problemoreon2009-07-22T09:10:25Z2009-07-22T09:10:25ZNo unfortunately this doesn't work, but I do get one extra correctly formatted block. After that it still breakshttp://stackoverflow.com/questions/1119567/deleting-a-single-item-from-recycle-binComment by oreon on Deleting a single item FROM recycle binoreon2009-07-13T17:45:13Z2009-07-13T17:45:13Z1. same extension
2. cleared everything including hidden recycler folder and only deleted my file
Voila it was the only file therehttp://stackoverflow.com/questions/1119567/deleting-a-single-item-from-recycle-bin/1119655#1119655Comment by oreon on Deleting a single item FROM recycle binoreon2009-07-13T14:19:36Z2009-07-13T14:19:36ZAh I hoped it wouldn't come to this...
I'll have a lookhttp://stackoverflow.com/questions/1119567/deleting-a-single-item-from-recycle-bin/1119625#1119625Comment by oreon on Deleting a single item FROM recycle binoreon2009-07-13T14:06:50Z2009-07-13T14:06:50ZWindows Search can actually do that, but for some reasons GetFiles() returns some weird other files not even in my recycle bin.
I can't seem to get the file I'm actually looking for
Unfortunately...http://stackoverflow.com/questions/1119567/deleting-a-single-item-from-recycle-bin/1119619#1119619Comment by oreon on Deleting a single item FROM recycle binoreon2009-07-13T14:03:18Z2009-07-13T14:03:18Zno somebody else but it therehttp://stackoverflow.com/questions/1063338/wpf-snapping-controls/1072055#1072055Comment by oreon on WPF snapping controlsoreon2009-07-03T04:56:12Z2009-07-03T04:56:12ZThanks, but math isn't the problem here, just the way to implement it in WPF specifically