User Ozgur Ozcitak - Stack Overflowmost recent 30 from stackoverflow.com2009-12-07T20:03:53Zhttp://stackoverflow.com/feeds/user/976http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/487661/how-do-i-suspend-painting-for-a-control-and-its-children/1789944#17899441Answer by Ozgur Ozcitak for How do I suspend painting for a control and its children?Ozgur Ozcitak2009-11-24T13:04:07Z2009-11-24T13:04:07Z<p>I usually use a little modified version of ngLink' <a href="http://stackoverflow.com/questions/487661/how-do-i-suspend-painting-for-a-control-and-its-children/487757#487757">answer</a>.</p>
<pre><code>public class MyControl : Control
{
internal int suspendCounter = 0;
internal void SuspendDrawing()
{
if(suspendCounter == 0)
SendMessage(this.Handle, WM_SETREDRAW, false, 0);
suspendCounter++;
}
internal void ResumeDrawing()
{
suspendCounter--;
if(suspendCounter == 0)
{
SendMessage(this.Handle, WM_SETREDRAW, true, 0);
this.Refresh();
}
}
}
</code></pre>
<p>This allows suspend/resume calls to be nested. You must make sure to match each <code>SuspendDrawing</code> with a <code>ResumeDrawing</code>. Hence, it wouldn't probably be a good idea to make them public.</p>
http://stackoverflow.com/questions/1650357/how-can-i-underline-some-part-of-a-multi-line-text-with-gdi1How can I underline some part of a multi-line text with GDI?Ozgur Ozcitak2009-10-30T15:05:56Z2009-11-02T21:35:41Z
<p>I am using <code>Graphics.DrawString</code> to draw my usercontrol's text like this:</p>
<pre><code>protected override void OnPaint(PaintEventArgs e)
{
RectangleF bounds = DisplayRectangle;
bounds.Inflate(-4, -4); // Padding
StringFormat format = new StringFormat();
format.Alignment = StringAlignment.Near;
format.LineAlignment = StringAlignment.Near;
format.Trimming = StringTrimming.None;
using (Brush bFore = new SolidBrush(ForeColor))
{
g.DrawString(Text, Font, bFore, bounds, format);
}
}
</code></pre>
<p>If control's <code>Text</code> is wider than the <code>DisplayRectangle</code>, <code>DrawString</code> nicely breaks the <code>Text</code> into multiple lines at word boundaries. </p>
<p>Now I want to underline some words from <code>Text</code>, but I couldn't work it out. I tried splitting the <code>Text</code>, then <code>MeasureString</code> the string just before an underlined part starts, <code>DrawString</code> the normal part, then <code>DrawString</code> the underlined part. But this works only if <code>Text</code> is single-line.</p>
<p>I am sure using a child <code>LinkLabel</code> or <code>RichTextBox</code> to render my control's text will solve this, but I don't like the idea of using a child control just to underline a few words. Is there another way?</p>
http://stackoverflow.com/questions/210650/validate-image-from-file-in-c/1655682#16556820Answer by Ozgur Ozcitak for Validate image from file in C#Ozgur Ozcitak2009-10-31T21:26:57Z2009-10-31T21:26:57Z<p>You can use <code>Image.FromStream</code> function without validating image data in a try block. This way, you let the framework decide if the image file is valid without the performance penalty of reading the entire image data.</p>
<p>An example:</p>
<pre><code>static bool IsValidImage(Stream imageStream)
{
bool isValid = false;
try
{
// Read the image without validating image data
using (Image img = Image.FromStream(stream, false, false))
{
isValid = true;
}
}
catch
{
;
}
return isValid;
}
</code></pre>
<p>See this SO post for more information: <a href="http://stackoverflow.com/questions/420337/a-question-about-image-fromstream-in-net">A question about Image.FromStream in .NET</a></p>
http://stackoverflow.com/questions/43738/defaultvalue-for-system-drawing-systemcolors1DefaultValue for System.Drawing.SystemColorsOzgur Ozcitak2008-09-04T13:18:16Z2009-10-19T19:52:57Z
<p>I have a line color property in my custom grid control. I want it to default to <code>Drawing.SystemColors.InactiveBorder</code>. I tried:</p>
<pre><code>[DefaultValue(typeof(System.Drawing.SystemColors), "InactiveBorder")]
public Color LineColor { get; set; }
</code></pre>
<p>But it doesn't seem to work. How do I do that with the default value attribute?</p>
http://stackoverflow.com/questions/49269/reading-default-application-settings-in-c5Reading default application settings in C#Ozgur Ozcitak2008-09-08T07:30:47Z2009-10-19T19:47:25Z
<p>I have a number of application settings (in user scope) for my custom grid control. Most of them are color settings. I have a form where the user can customize these colors with a button for reverting to default color settings. By default value I mean what I set in Settings.settings at design time. Is there a way to read the default settings from Properties.Settings? I was hoping there would be something like:</p>
<pre><code>Color defCellColor = Properties.Settings.Default.CellBackgroundColor.DefaultValue;
</code></pre>
<p>or even:</p>
<pre><code>Color defCellColor = (Color)Properties.Settings.Default.GetDefaultValue("CellBackgroundColor");
</code></pre>
<p>For example:</p>
<ol>
<li>I have a user setting named "CellBackgroundColor" in Properties.Settings.</li>
<li>At design time I set the value of CellBackgroundColor to Color.White using the IDE.</li>
<li>User sets CellBackgroundColor to Color.Black in my program.</li>
<li>I save the settings with Properties.Settings.Default.Save();</li>
<li>User clicks on the "Restore Default Colors" button.</li>
</ol>
<p>Now, Properties.Settings.Default.CellBackgroundColor returns Color.Black. How do I go back to Color.White?</p>
http://stackoverflow.com/questions/1566069/how-to-provide-custom-code-for-initializecomponent/1578319#15783191Answer by Ozgur Ozcitak for How to provide custom code for InitializeComponent?Ozgur Ozcitak2009-10-16T14:14:49Z2009-10-16T14:14:49Z<p>What I wanted to achieve was to customize the <code>InitializeComponent</code> code produced by my custom component. I found this MSDN article which describes how to do that:</p>
<p><a href="http://msdn.microsoft.com/en-us/library/ms973818.aspx" rel="nofollow">Customizing Code Generation in the .NET Framework Visual Designers</a></p>
<p>It appears that I need to write a <a href="http://msdn.microsoft.com/en-us/library/system.componentmodel.design.serialization.codedomserializer.aspx" rel="nofollow"><code>CodeDomSerializer</code></a> for my component, and generate a collection of <a href="http://msdn.microsoft.com/en-us/library/system.codedom.codeexpression.aspx" rel="nofollow"><code>CodeExpression</code></a>'s describing my custom initialization code.</p>
http://stackoverflow.com/questions/1566069/how-to-provide-custom-code-for-initializecomponent2How to provide custom code for InitializeComponent?Ozgur Ozcitak2009-10-14T12:56:50Z2009-10-16T14:14:49Z
<p>When you modify column headers of a ListView at design time, the designer generates code to serialize column headers at run-time:</p>
<pre><code>private void InitializeComponent()
{
this.listView1 = new System.Windows.Forms.ListView();
this.columnHeader1 = new System.Windows.Forms.ColumnHeader();
this.columnHeader2 = new System.Windows.Forms.ColumnHeader();
this.listView1.Columns.AddRange(new System.Windows.Forms.ColumnHeader[] {
this.columnHeader1,
this.columnHeader2
});
}
</code></pre>
<p>How does the forms-designer know that it should call the constructor for each column followed by a call to the AddRange method of the Columns property of the ListView? I need this for a ListView like UserControl I am writing.</p>
http://stackoverflow.com/questions/200237/where-can-i-learn-more-about-c0x/200254#20025424Answer by Ozgur Ozcitak for Where can I learn more about C++0x?Ozgur Ozcitak2008-10-14T07:28:29Z2009-07-23T20:00:17Z<ul>
<li>ISO C++ committee's <a href="http://www.open-std.org/jtc1/sc22/wg21/" rel="nofollow">web site</a>.</li>
<li>Bjarne Stroustrup's <a href="http://www.research.att.com/~bs" rel="nofollow">web site</a>.
<ul>
<li>Especially his <a href="http://www.research.att.com/~bs/C++0xFAQ.html" rel="nofollow">C++0x FAQ</a></li>
<li>Also his <a href="http://www.research.att.com/~bs/rules.pdf" rel="nofollow">article (pdf)</a> in C++ User's Journal</li>
</ul></li>
<li>The <a href="http://en.wikipedia.org/wiki/C%2B%2B0x" rel="nofollow">wikipedia article</a> is very comprehensive.</li>
<li>The GCC C++ compiler has <a href="http://gcc.gnu.org/projects/cxx0x.html" rel="nofollow">experimental support for C++0x</a>, with the <code>-std=c++0x</code> compiler switch.</li>
</ul>
http://stackoverflow.com/questions/292307/selecting-unique-elements-from-a-list-in-c2Selecting Unique Elements From a List in C#Ozgur Ozcitak2008-11-15T08:21:29Z2009-07-06T09:19:55Z
<p>How do I select the unique elements from the list <code>{0, 1, 2, 2, 2, 3, 4, 4, 5}</code> so that I get <code>{0, 1, 3, 5}</code>, effectively removing the repeated elements <code>{2, 4}</code>?</p>
http://stackoverflow.com/questions/49755/design-pattern-for-undo-engine28Design Pattern for Undo EngineOzgur Ozcitak2008-09-08T13:58:06Z2009-06-30T06:04:43Z
<p>I'm writing a structural modeling tool for a civil enginering application. I have one huge model class representing the entire building, which include collections of nodes, line elements, loads, etc. which are also custom classes. </p>
<p>I have already coded an undo engine which saves a deep-copy of the model class after each modification to the model. Now I started thinking if I could have coded differently. Instead of saving the deep-copies, I could perhaps save a list of each modifier action with a corresponding reverse modifier. So that I could apply the reverse modifiers to the current model to undo, or the modifiers to redo. </p>
<p>I can imagine how you would carry out simple commands that change object properties, etc. But how about complex commands? Like inserting new node objects to the model and adding some line objects which keep references to the new nodes.</p>
<p>How would one go about implementing that?</p>
http://stackoverflow.com/questions/852572/does-the-number-of-columns-returned-affect-the-speed-of-a-query/852644#8526442Answer by Ozgur Ozcitak for Does the number of columns returned affect the speed of a query?Ozgur Ozcitak2009-05-12T12:58:09Z2009-05-12T12:58:09Z<p>Regardless of performance issues, it is good practice to always enumerate all fields in your queries.</p>
<ul>
<li>What if you decide to add a TEXT or BLOB column in the future that is used for a particular query? Your SELECT * will return the additional data whether you need it or not.</li>
<li>What if you rename a column? Your SELECT * will always work, but the relying code will be broken.</li>
</ul>
http://stackoverflow.com/questions/818315/how-do-you-iterate-through-an-array-in-fortran/818351#8183514Answer by Ozgur Ozcitak for how do you iterate through an array in fortran?Ozgur Ozcitak2009-05-03T23:40:41Z2009-05-03T23:40:41Z<p>In Fortran 90 you can do array iteration like:</p>
<pre><code>do i = lbound(realResults), ubound(realResults)
! do something with realResults(i)
end do
</code></pre>
http://stackoverflow.com/questions/92006/how-do-i-determine-if-a-random-string-sounds-like-english13How do I determine if a random string sounds like English?Ozgur Ozcitak2008-09-18T12:20:20Z2009-01-28T00:19:41Z
<p>I have an algorithm that generates strings based on a list of input words. How do I separate only the strings that sounds like English words? ie. discard <strong>RDLO</strong> while keeping <strong>LORD</strong>.</p>
<p><strong>EDIT:</strong> To clarify, they do not need to be actual words in the dictionary. They just need to sound like English. For example <strong>KEAL</strong> would be accepted.</p>
http://stackoverflow.com/questions/416926/minimizing-the-sum-of-a-special-function-over-a-list7Minimizing the sum of a special function over a listOzgur Ozcitak2009-01-06T15:19:50Z2009-01-07T09:25:04Z
<p>Say I have a list and I want it arranged so that the sum of a certain function operating over its consecutive elements is minimum. </p>
<p>For example consider the list <code>{ 1, 2, 3, 4 }</code> and sum <code>a^b</code> for consecutive pairs <code>(a,b)</code> over the entire list. ie. <code>1^2 + 2^3 + 3^4 = 90</code>. By inspection, the minimum sum is achieved when the list is arranged as <code>{ 2, 3, 1, 4 } => (2^3 + 3^1 + 1^4 = 12</code>).</p>
<p>Note that the sum is not looping (ie. I do not consider <code>last^first</code>) and order is important <code>(2^3 != 3^2)</code> and also <code>a^b</code> could be any function operating over any number of consecutive elements.</p>
<p>Is there a name for such an algorithm and is there established ways of implementing it?</p>
<p><strong>EDIT:</strong> I have reworded the question since I had incorrectly labeled this as a sorting problem. As pointed out, this is more of an optimization problem.</p>
http://stackoverflow.com/questions/385305/efficient-maths-algorithm-to-calculate-intersections/385828#3858280Answer by Ozgur Ozcitak for Efficient maths algorithm to calculate intersectionsOzgur Ozcitak2008-12-22T09:09:55Z2008-12-22T09:09:55Z<p>Below is my line-line intersection as described in <a href="http://mathworld.wolfram.com/Line-LineIntersection.html" rel="nofollow">MathWorld</a>. For general collision detection/intersection you may want to look at the <a href="http://en.wikipedia.org/wiki/Separating_Axis_Theorem" rel="nofollow">Separating Axis Theorem</a>. I found <a href="http://www.harveycartel.org/metanet/tutorials/tutorialA.html" rel="nofollow">this tutorial</a> on SAT very informative.</p>
<pre><code> /// <summary>
/// Returns the intersection point of the given lines.
/// Returns Empty if the lines do not intersect.
/// Source: http://mathworld.wolfram.com/Line-LineIntersection.html
/// </summary>
public static PointF LineIntersection(PointF v1, PointF v2, PointF v3, PointF v4)
{
float tolerance = 0.000001f;
float a = Det2(v1.X - v2.X, v1.Y - v2.Y, v3.X - v4.X, v3.Y - v4.Y);
if (Math.Abs(a) < float.Epsilon) return PointF.Empty; // Lines are parallel
float d1 = Det2(v1.X, v1.Y, v2.X, v2.Y);
float d2 = Det2(v3.X, v3.Y, v4.X, v4.Y);
float x = Det2(d1, v1.X - v2.X, d2, v3.X - v4.X) / a;
float y = Det2(d1, v1.Y - v2.Y, d2, v3.Y - v4.Y) / a;
if (x < Math.Min(v1.X, v2.X) - tolerance || x > Math.Max(v1.X, v2.X) + tolerance) return PointF.Empty;
if (y < Math.Min(v1.Y, v2.Y) - tolerance || y > Math.Max(v1.Y, v2.Y) + tolerance) return PointF.Empty;
if (x < Math.Min(v3.X, v4.X) - tolerance || x > Math.Max(v3.X, v4.X) + tolerance) return PointF.Empty;
if (y < Math.Min(v3.Y, v4.Y) - tolerance || y > Math.Max(v3.Y, v4.Y) + tolerance) return PointF.Empty;
return new PointF(x, y);
}
/// <summary>
/// Returns the determinant of the 2x2 matrix defined as
/// <list>
/// <item>| x1 x2 |</item>
/// <item>| y1 y2 |</item>
/// </list>
/// </summary>
public static float Det2(float x1, float x2, float y1, float y2)
{
return (x1 * y2 - y1 * x2);
}
</code></pre>
http://stackoverflow.com/questions/203918/macron-in-vba-editor/203946#2039461Answer by Ozgur Ozcitak for Macron in VBA editorOzgur Ozcitak2008-10-15T07:28:52Z2008-10-15T07:39:12Z<p>You can use ChrW to generate Unicode characters:</p>
<pre><code>Mid(strclip, markloc, 1) = ChrW(257)
</code></pre>
http://stackoverflow.com/questions/200151/search-for-object-in-generic-list/200182#2001822Answer by Ozgur Ozcitak for Search for Object in Generic ListOzgur Ozcitak2008-10-14T06:32:22Z2008-10-14T06:57:50Z<p>Generally you need to use predicates:</p>
<pre><code>list.Add(New Customer(1, "A"))
list.Add(New Customer(2, "B"))
Private Function HasID1(ByVal c As Customer) As Boolean
Return (c.ID = 1)
End Function
Dim customerWithID1 As Customer = list.Find(AddressOf HasID1)
</code></pre>
<p>Or with inline methods:</p>
<pre><code>Dim customerWithID1 As Customer = list.Find(Function(p) p.ID = 1)
</code></pre>
http://stackoverflow.com/questions/189155/where-can-i-find-facial-detection-software-algorithms-etc/189191#1891912Answer by Ozgur Ozcitak for Where can I find facial detection software, algorithms, etc?Ozgur Ozcitak2008-10-09T20:58:34Z2008-10-09T20:58:34Z<p>This is not a complete answer but it might help. Eigen-vectors are also used in face recognition: <a href="http://en.wikipedia.org/wiki/Eigenface" rel="nofollow">eigenfaces</a>.</p>
http://stackoverflow.com/questions/114859/how-to-prevent-creating-intermediate-objects-in-cascading-operators2How to prevent creating intermediate objects in cascading operators?Ozgur Ozcitak2008-09-22T13:27:25Z2008-09-30T12:29:05Z
<p>I use a custom Matrix class in my application, and I frequently add multiple matrices:</p>
<pre><code>Matrix result = a + b + c + d; // a, b, c and d are also Matrices
</code></pre>
<p>However, this creates an intermediate matrix for each addition operation. Since this is simple addition, it is possible to avoid the intermediate objects and create the result by adding the elements of all 4 matrices at once. How can I accomplish this?</p>
<p>NOTE: I know I can define multiple functions like <code>Add3Matrices(a, b, c)</code>, <code>Add4Matrices(a, b, c, d)</code>, etc. but I want to keep the elegancy of <code>result = a + b + c + d</code>.</p>
http://stackoverflow.com/questions/148182/where-can-i-download-opengl-for-windows-vista/148207#1482072Answer by Ozgur Ozcitak for where can i download opengl for windows vistaOzgur Ozcitak2008-09-29T10:29:28Z2008-09-29T10:29:28Z<p>OpenGL 1.1 header files are included in the Platform SDK. If you need to work with a more recent version this may help: <a href="http://www.gamedev.net/reference/articles/article1929.asp" rel="nofollow">Moving Beyond OpenGL 1.1 for Windows</a> </p>
http://stackoverflow.com/questions/130166/clicking-command-button-from-other-workbook/130325#1303252Answer by Ozgur Ozcitak for "Clicking" Command Button from other workbookOzgur Ozcitak2008-09-24T22:31:14Z2008-09-24T22:31:14Z<p>You can use <code>Application.Run</code> for that:</p>
<pre><code>Run "OtherWorkbook.xls!MyOtherMacro"
</code></pre>
http://stackoverflow.com/questions/101718/drawing-a-variable-width-line-in-opengl-no-gllinewidth/102156#1021562Answer by Ozgur Ozcitak for Drawing a variable width line in openGL (No glLineWidth).Ozgur Ozcitak2008-09-19T14:16:09Z2008-09-19T19:29:26Z<p>You can draw two triangles:</p>
<pre><code>// Draws a line between (x1,y1) - (x2,y2) with a start thickness of t1 and
// end thickness t2.
void DrawLine(float x1, float y1, float x2, float y2, float t1, float t2)
{
float angle = atan2(y2 - y1, x2 - x1);
float t2sina1 = t1 / 2 * sin(angle);
float t2cosa1 = t1 / 2 * cos(angle);
float t2sina2 = t2 / 2 * sin(angle);
float t2cosa2 = t2 / 2 * cos(angle);
glBegin(GL_TRIANGLES);
glVertex2f(x1 + t2sina1, y1 - t2cosa1);
glVertex2f(x2 + t2sina2, y2 - t2cosa2);
glVertex2f(x2 - t2sina2, y2 + t2cosa2);
glVertex2f(x2 - t2sina2, y2 + t2cosa2);
glVertex2f(x1 - t2sina1, y1 + t2cosa1);
glVertex2f(x1 + t2sina1, y1 - t2cosa1);
glEnd();
}
</code></pre>
http://stackoverflow.com/questions/102278/active-flag-or-not/102414#1024141Answer by Ozgur Ozcitak for `active' flag or not?Ozgur Ozcitak2008-09-19T14:45:35Z2008-09-19T14:51:35Z<p>Both approaches have their uses. In a forum engine I developed, I used an active flag in the user table, because I had to display posts by inactive users as well. For the forum replies, I chose to move inactive (soft-deleted) replies to another table, since regular users need not see the deleted posts, only moderators needed that.</p>
http://stackoverflow.com/questions/97283/how-can-i-determine-the-name-of-the-currently-focused-process-in-c/97517#975175Answer by Ozgur Ozcitak for How can I determine the name of the currently focused process in C#Ozgur Ozcitak2008-09-18T22:09:56Z2008-09-18T22:25:05Z<p>I am assuming you want to get the name of the process owning the currently focused window. With some P/Invoke:</p>
<pre><code> // The GetForegroundWindow function returns a handle to the foreground window
// (the window with which the user is currently working).
[System.Runtime.InteropServices.DllImport("user32.dll")]
private static extern IntPtr GetForegroundWindow();
// The GetWindowThreadProcessId function retrieves the identifier of the thread
// that created the specified window and, optionally, the identifier of the
// process that created the window.
[System.Runtime.InteropServices.DllImport("user32.dll")]
private static extern Int32 GetWindowThreadProcessId(IntPtr hWnd, out uint lpdwProcessId);
// Returns the name of the process owning the foreground window.
private string GetForegroundProcessName()
{
IntPtr hwnd = GetForegroundWindow();
// The foreground window can be NULL in certain circumstances,
// such as when a window is losing activation.
if (hwnd == null)
return "Unknown";
uint pid;
GetWindowThreadProcessId(hwnd, out pid);
foreach (System.Diagnostics.Process p in System.Diagnostics.Process.GetProcesses())
{
if (p.Id == pid)
return p.ProcessName;
}
return "Unknown";
}
</code></pre>
http://stackoverflow.com/questions/97097/what-is-the-c-version-of-vb-nets-inputdialog/97156#971564Answer by Ozgur Ozcitak for What is the C# version of VB.net's InputDialog?Ozgur Ozcitak2008-09-18T21:25:56Z2008-09-18T21:25:56Z<p>Add a reference to Microsoft.VisualBasic, InputBox is in the Microsoft.VisualBasic.Interaction namespace:</p>
<pre><code>string input = Microsoft.VisualBasic.Interaction.InputBox("Prompt", "Title", "Default", 0, 0);
</code></pre>
http://stackoverflow.com/questions/62188/stack-overflow-code-golf/62379#623792Answer by Ozgur Ozcitak for Stack overflow code golfOzgur Ozcitak2008-09-15T12:35:03Z2008-09-15T12:35:03Z<p><strong>Lisp</strong></p>
<pre><code>(defun x() (x)) (x)
</code></pre>
http://stackoverflow.com/questions/56443/create-drop-down-list-options-from-enum-in-a-datagridview/56483#564836Answer by Ozgur Ozcitak for Create drop down list options from enum in a DataGridViewOzgur Ozcitak2008-09-11T13:04:26Z2008-09-11T13:33:58Z<p>I do not know if that would work with a DataGridView column but it works with ComboBoxes:</p>
<pre><code>comboBox1.DataSource = Enum.GetValues(typeof(MyEnum));
</code></pre>
<p>and:</p>
<pre><code>MyEnum value = (MyEnum)comboBox1.SelectedValue;
</code></pre>
<p>UPDATE: It works with DataGridView columns too, just remember to set the value type.</p>
<pre><code>DataGridViewComboBoxColumn col = new DataGridViewComboBoxColumn();
col.Name = "My Enum Column";
col.DataSource = Enum.GetValues(typeof(MyEnum));
col.ValueType = typeof(MyEnum);
dataGridView1.Columns.Add(col);
</code></pre>
http://stackoverflow.com/questions/50605/signed-to-unsigned-conversion-in-c-is-it-always-safe/50632#506328Answer by Ozgur Ozcitak for signed to unsigned conversion in C - is it always safe?Ozgur Ozcitak2008-09-08T20:44:26Z2008-09-08T20:44:26Z<p>When you cast from signed to unsigned (and vice versa) the internal representation of the number does not change. What changes is how the compiler interprets the sign bit. So yes, aside from the possible overflows, it is safe to cast from signed to unsigned, though the result will probably be much larger after changing sign.</p>
http://stackoverflow.com/questions/43775/modulus-operation-with-negatives-values-weird-thing/43799#437990Answer by Ozgur Ozcitak for Modulus operation with negatives values - weird thing ??Ozgur Ozcitak2008-09-04T13:53:07Z2008-09-04T13:53:07Z<p>The result depends on the language. Python returns the sign of the divisor, where for example c# returns the sign of the dividend (ie. -2 % 5 returns -2 in c#).</p>
http://stackoverflow.com/questions/1650357/how-can-i-underline-some-part-of-a-multi-line-text-with-gdi/1663812#1663812Comment by Ozgur Ozcitak on How can I underline some part of a multi-line text with GDI?Ozgur Ozcitak2009-11-03T10:08:18Z2009-11-03T10:08:18ZThanks, I guess this is the best I can do. I also tried using MeasureCharacterRanges on word boundaries, but it doesn't seem to work with multi-line text.http://stackoverflow.com/questions/1650357/how-can-i-underline-some-part-of-a-multi-line-text-with-gdi/1663812#1663812Comment by Ozgur Ozcitak on How can I underline some part of a multi-line text with GDI?Ozgur Ozcitak2009-11-03T10:04:45Z2009-11-03T10:04:45ZThe two lines with xPos = 0 above. Shouldn't they be xPos = xPos + w1?http://stackoverflow.com/questions/1566069/how-to-provide-custom-code-for-initializecomponent/1569003#1569003Comment by Ozgur Ozcitak on How to provide custom code for InitializeComponent?Ozgur Ozcitak2009-10-16T14:16:20Z2009-10-16T14:16:20ZThanks for taking the time to answer, what I need is more than what automatic serialization can provide. I found a MSDN article today described in my post below.http://stackoverflow.com/questions/101718/drawing-a-variable-width-line-in-opengl-no-gllinewidth/102156#102156Comment by Ozgur Ozcitak on Drawing a variable width line in openGL (No glLineWidth).Ozgur Ozcitak2009-06-05T23:39:16Z2009-06-05T23:39:16ZIt turned out this is not what the OP wanted (see his answer below). But I'd love to see a simpler algorithm, if you would care to share it.http://stackoverflow.com/questions/852572/does-the-number-of-columns-returned-affect-the-speed-of-a-query/852681#852681Comment by Ozgur Ozcitak on Does the number of columns returned affect the speed of a query?Ozgur Ozcitak2009-05-16T20:05:39Z2009-05-16T20:05:39Z+1 for mentioning caching. This may be desired when you know beforehand that you won't be changing the schema.http://stackoverflow.com/questions/814757/headless-internet-browserComment by Ozgur Ozcitak on headless internet browser?Ozgur Ozcitak2009-05-02T12:38:52Z2009-05-02T12:38:52ZWhy instantiate a browser if you are not going to display it? There are libraries in most languages for transferring files through URLs. Tell us your implementation language and we might point you in the right direction.http://stackoverflow.com/questions/169529/how-to-efficiently-filter-a-large-listviewitemcollection/169556#169556Comment by Ozgur Ozcitak on How to efficiently filter a large LIstViewItemCollection?Ozgur Ozcitak2009-03-06T13:51:13Z2009-03-06T13:51:13ZI don't think this is possible, unless you owner draw the list view.http://stackoverflow.com/questions/450233/generic-list-moving-an-item-within-the-list/450272#450272Comment by Ozgur Ozcitak on Generic List - moving an item within the listOzgur Ozcitak2009-01-16T12:52:49Z2009-01-16T12:52:49Z@Garry Isn't the end result going to be the same?http://stackoverflow.com/questions/11743/useful-math-for-programmers/11996#11996Comment by Ozgur Ozcitak on Useful math for programmersOzgur Ozcitak2009-01-07T14:40:45Z2009-01-07T14:40:45Z+1 for project euler reference.http://stackoverflow.com/questions/416926/minimizing-the-sum-of-a-special-function-over-a-list/417030#417030Comment by Ozgur Ozcitak on Minimizing the sum of a special function over a listOzgur Ozcitak2009-01-07T14:35:06Z2009-01-07T14:35:06ZGood explanation, thanks. I just thought since my distance function is working on consecutive elements, there might be a clever way of reducing this to a simpler problem rather than brute forcing all permutations.http://stackoverflow.com/questions/416926/minimizing-the-sum-of-a-special-function-over-a-list/417383#417383Comment by Ozgur Ozcitak on Minimizing the sum of a special function over a listOzgur Ozcitak2009-01-07T09:00:27Z2009-01-07T09:00:27ZThis works for (1 2 3 4). But when I try (1 2 3 4 5) it returns (4 3 2 1 5) with a cost of 76. However, a better solution exists: (4 2 3 1 5) with a cost of 28.http://stackoverflow.com/questions/416926/minimizing-the-sum-of-a-special-function-over-a-listComment by Ozgur Ozcitak on Minimizing the sum of a special function over a listOzgur Ozcitak2009-01-06T15:38:45Z2009-01-06T15:38:45Z@Binary Worrier: What I'm (haplessly) trying to ask is: How do you sort a list when you need to consider the entire list rather than comparing elements one-by-one?
@balabaster: Right. Thanks.http://stackoverflow.com/questions/292307/selecting-unique-elements-from-a-list-in-c/292632#292632Comment by Ozgur Ozcitak on Selecting Unique Elements From a List in C#Ozgur Ozcitak2008-12-23T09:27:39Z2008-12-23T09:27:39ZThis works but you need to change
counts[item]++;
into
if (counts.ContainsKey(item)) counts[item]++; else counts.Add(item, 1);http://stackoverflow.com/questions/292307/selecting-unique-elements-from-a-list-in-c/292834#292834Comment by Ozgur Ozcitak on Selecting Unique Elements From a List in C#Ozgur Ozcitak2008-12-23T09:26:06Z2008-12-23T09:26:06ZThis is the .NET 2.0 version of what CVertex posted. It also returns the duplicate elements.http://stackoverflow.com/questions/292307/selecting-unique-elements-from-a-list-in-cComment by Ozgur Ozcitak on Selecting Unique Elements From a List in C#Ozgur Ozcitak2008-11-17T09:38:04Z2008-11-17T09:38:04ZThanks for the correction. I fixed it.