User xpda - Stack Overflowmost recent 30 from stackoverflow.com2009-12-18T04:53:11Zhttp://stackoverflow.com/feeds/user/14149http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1857823/datetime-addtimespan-performance-vs-datetime-adddays-hours-etc-methods/1857873#18578730Answer by xpda for DateTime.Add(TimeSpan) performance vs DateTime.AddDays/Hours/etc* methods.xpda2009-12-07T04:47:49Z2009-12-07T04:47:49Z<p>dattimeadd(timespan) is, in fact, a little faster than datetime.adddays and addhours, but not enough to matter in almost any practical case. At 500,000 iterations, it's inconclusive. At 2,000,000 iterations, you can see a difference.</p>
http://stackoverflow.com/questions/1854306/resize-bitmap-like-in-ms-paint/1856362#18563620Answer by xpda for Resize bitmap like in MS Paintxpda2009-12-06T19:38:18Z2009-12-06T19:38:18Z<p>You can set the graphics interpolation mode to nearest neighbor and then use drawimage to resize it without anti-aliasing. (pardon my vb :-) )</p>
<pre><code>Dim img As Image = Image.FromFile("c:\jpg\1.jpg")
Dim g As Graphics
pic1.Image = New Bitmap(180, 180, System.Drawing.Imaging.PixelFormat.Format32bppArgb)
g = Graphics.FromImage(pic1.Image)
g.InterpolationMode = Drawing2D.InterpolationMode.NearestNeighbor
g.DrawImage(img, 0, 0, pic1.Image.Width, pic1.Image.Height)
</code></pre>
http://stackoverflow.com/questions/1852166/startup-form-problem-in-vb-net/1854118#18541180Answer by xpda for startup form problem in vb .netxpda2009-12-06T02:06:20Z2009-12-06T02:06:20Z<p>If the code in the form emp accesses anything in the admin form (class), it will cause the admin form to be loaded. </p>
http://stackoverflow.com/questions/833740/text-is-not-getting-highlighted-in-combobox-when-selectedindex-changed-through-co/1851330#18513300Answer by xpda for Text is not getting Highlighted in Combobox when selectedindex changed through codexpda2009-12-05T06:20:26Z2009-12-05T06:20:26Z<p>Make sure the combobox tabstop property is set to true. Otherwise, you won't see the selection.</p>
http://stackoverflow.com/questions/1844841/using-a-personal-webpage-to-copyright-ideas-e-g-stories-etc/1844883#18448830Answer by xpda for Using a Personal Webpage to Copyright ideas (e.g. stories, etc)?xpda2009-12-04T04:34:29Z2009-12-04T04:34:29Z<p>You own the copyright of anything you publish, electronic or hardcopy, unless you've agreed to give someone else the copyright. Even a copyright notice is no longer necessary. If you publish on a web site, you own the copyright unless you've agreed otherwise. Sometimes you click away your rights, so you should read all the "I Agree" terms of the web site.</p>
<p>The copyright is not normally given away to a web host, but it is possible to do that in a hosting agreement. Again, you should read before you click.</p>
http://stackoverflow.com/questions/1837582/how-to-write-to-read-from-network-card-in-x86-assembly/1837613#18376130Answer by xpda for How to write to & read from network card in x86 assembly?xpda2009-12-03T04:20:28Z2009-12-03T04:20:28Z<p>You can use calls to the card itself, using inupt and output instructions or something similar. Each ethernet card is different, so you'll need documentation from the manufacturer. </p>
<p>The next level up is the DOS function calls, assuming you're usuing Windows. These will allow you to access limited features of an ethernet card using standard MSDOS calls. You can find these in old MSDOS documentation. Most of them still work on later versions of Windows, if I'm not mistaken.</p>
http://stackoverflow.com/questions/1835458/text-read-and-replace-algorithm/1837081#18370811Answer by xpda for Text read and replace algorithmxpda2009-12-03T01:25:26Z2009-12-03T01:25:26Z<p>You can do this without regular expressions using Microsoft Word. Copy the section of the code into Word. Then use a column selection (hold the alt key down and select with the mouse), then copy it to the right, and clean up with search and replace.</p>
http://stackoverflow.com/questions/1836497/vb6-convert-to-vb-net-variant-question/1836714#18367140Answer by xpda for VB6 convert to VB.net Variant questionxpda2009-12-02T23:49:43Z2009-12-02T23:49:43Z<p>It will be helpful to make all the changes you can beforehand, but if there is a question, you might save some time to waiting until after the conversion.</p>
<p>You will have a few changes to make afterward, but you can go ahead and make the .net conversion,then clean up what is left behind. </p>
<p>For example, you might convert the variant here to a string before the .net conversion, only to find out the the .net listview DragEventArgs.data is something different. (I'm not sure what it is, but it would be easier to find out after you did the conversion.)</p>
http://stackoverflow.com/questions/1829299/c-avoid-duplicating-logic-between-winform-and-usercontrol/1830792#18307921Answer by xpda for C# - Avoid duplicating logic between WinForm and UserControlxpda2009-12-02T05:16:19Z2009-12-02T05:16:19Z<p>You can make two controls A and B, each containing the same buttons and/or other input controls arranged differently. Controls A and B will have identical properties, and events. The form (or third control) will contain the event handlers that allow the logic to be contained in only one place.</p>
<p>You can display either control A or B using the visible property or by adding one to the container.controls property, the container being the containing form or control.</p>
<p>And, for example, instead of having a handler for button1 in controls A and B that handles the complete logic of the button press, the handlers for button1 in control A and B would just raise an event that will be handled by the container of control A or B.</p>
http://stackoverflow.com/questions/1824036/tabcontrol-how-can-you-remove-the-tabpage-title0Tabcontrol: How can you remove the tabpage title?xpda2009-12-01T04:40:03Z2009-12-01T05:16:37Z
<p>I have a tabcontrol used to display multiple image files in an application. I would like to remove the tabpage title when there is only one tabpage displayed, so I can use that screen space for the image. (This is similar to deselecting "Always show the tab bar" in Firefox.)</p>
<p>Is this possible to do with the tabcontrol? Or am I better off using a panel control when only one file (tab) is open?</p>
http://stackoverflow.com/questions/1819138/how-can-i-update-get-values-in-windows-form-while-moving-one-form-to-other-form/1823658#18236580Answer by xpda for How can i Update /Get values in windows form while moving one form to other form(like cookies)?xpda2009-12-01T02:36:52Z2009-12-01T02:36:52Z<p>One way to do this is to declare variables to be public, either in a global module or in any form.</p>
<pre><code>public x as double
</code></pre>
<p>If it is declared in a module, you can access it with the variable name only. To access data declared in another form, use that form name with the variable: <code>form1.x = 7</code></p>
<p>Another way is to declare a property in a form or other class.</p>
http://stackoverflow.com/questions/1805024/vb-net-word-document-insert-column-break/1810682#18106820Answer by xpda for VB.net word document Insert column breakxpda2009-11-27T21:23:35Z2009-11-27T21:23:35Z<p>You can use <code>Selection.InsertBreak Type:=wdColumnBreak</code></p>
http://stackoverflow.com/questions/1430955/winforms-order-of-load-and-activated-events/1809998#18099980Answer by xpda for Winforms - order of Load and Activated eventsxpda2009-11-27T18:00:03Z2009-11-27T18:00:03Z<p>Even though it goes against Microsoft's documentation, this can happen sometimes when you access a loading form's public variable or function from outside the form. If necessary, you can set a flag in the shown event and use it to exit the activated handler before the form has loaded.</p>
http://stackoverflow.com/questions/1807002/how-to-display-records-in-the-listview-control/1807323#18073231Answer by xpda for How to display records in the listview control?xpda2009-11-27T08:00:52Z2009-11-27T08:00:52Z<p>In listview, details mode, both columns are in a single listview item. The first column is item.text, and the rest are in item.subitems, something like this:</p>
<pre><code>dim item as ListViewItem
ListView1.Columns.Add("Account")
ListView1.Columns.Add("Name")
For Each ah In au
item = New ListViewItem
item.text = ah.Account
item.subitems.add(ah.Name)
form9.listview1.items.add(item)
next ah
</code></pre>
<p>A couple of notes: You should not show the form every time you add an item to the listview. You're better off showing the form only once. Second, the With statement is used to shortcut writing form9.listview.items. Inside the With block you can use just a period (.) instead of writing out form9.listview.items.</p>
http://stackoverflow.com/questions/1807167/winform-and-tab/1807249#18072490Answer by xpda for Winform and Tab?xpda2009-11-27T07:28:48Z2009-11-27T07:28:48Z<ol>
<li>When you are finished, click the tab order again or press Esc.</li>
<li>You can set the tab order using the Tab Index property either in design mode or at runtime.</li>
</ol>
http://stackoverflow.com/questions/1789005/creating-an-tree-graph-from-a-collection-of-objects-where-only-parent-node-is-kno/1806455#18064550Answer by xpda for Creating an tree graph from a collection of objects where only parent node is knownxpda2009-11-27T02:00:18Z2009-11-27T02:00:18Z<p>Would this be easier? You don't have to replicate the objects, do you?</p>
<pre><code>List millionsOfObjects = new List&ltSomeObject>();
FillMillonsOfObject();
foreach(SomeObject someObject in millionsOfObjects)
{
someObject.GetParent().children.add(someobject)
}
</code></pre>
http://stackoverflow.com/questions/1806189/algorithm-to-find-matching-pairs-in-a-list/1806436#18064360Answer by xpda for Algorithm to find matching pairs in a listxpda2009-11-27T01:45:17Z2009-11-27T01:45:17Z<p>(If I understand the problem...)
Here is one way to match each pair of products in the two lists.</p>
<ol>
<li>Multiply each pair N and save it to a structure with the product, and the subscripts of the elements making up the product.</li>
<li>Multiply each pair D and save it to a second instance of the structure with the product, and the subscripts of the elements making up the product.</li>
<li>Sort both structions on the product.</li>
<li>Make a merge-type pass through both sorted structure arrays. Each time you find a product from one array that is close enough to the other, you can record the two subscripts from each sorted list for a match.</li>
<li>You can also use one sorted list for an ismatch function, doing a binary search on the product.</li>
</ol>
http://stackoverflow.com/questions/1805949/how-to-improve-scanned-image-quality/1805994#18059941Answer by xpda for How to improve scanned image quality?xpda2009-11-26T22:43:12Z2009-11-26T22:43:12Z<p>I would use GDI+ and .net libraries for the basics -- acquiring, cropping, color, brightness, and contrast adjustment. You can probably find an open source library for noise and sharpening filters and histogram adjustment, or write your own.</p>
http://stackoverflow.com/questions/1804895/how-do-you-read-a-text-file-without-losing-odd-characters1How do you read a text file without losing odd characters?xpda2009-11-26T17:29:29Z2009-11-26T18:58:50Z
<p>I would like to read a text file into an array of strings using System.IO.File.ReadAllLines. However, ReadAllLines strips out some odd characters in the file that I would like to keep, such as chr(187). I've tried some different encoding options, but that doesn't help and I don't see an option for "no encoding."</p>
<p>I can use FileOpen and LineInput to read the file without modification, but this is quite a bit slower. Using FileSystemObject also works properly, but I would rather not use that.</p>
<p>What is the best way to read a text file into an array of strings without modification in .net?</p>
http://stackoverflow.com/questions/1804895/how-do-you-read-a-text-file-without-losing-odd-characters/1805137#18051370Answer by xpda for How do you read a text file without losing odd characters?xpda2009-11-26T18:43:26Z2009-11-26T18:43:26Z<p>The characters that were stripped out were at the beginning of the file. It turns out they were the byte order marks for UTF-8. File.ReadAllLines and File.ReadAllText strips out the byte order marks, while LineInput and FileSystemObject functions do not.</p>
<p>If I had explained in the question that the odd characters were at the file beginning, I imagine I would have gotten a quick answer. I'll give Jon Skeet credit for the best answer to the question I posed.</p>
http://stackoverflow.com/questions/1377015/reading-a-file-in-vb-net/1804837#18048370Answer by xpda for Reading a file in vb.netxpda2009-11-26T17:11:04Z2009-11-26T17:11:04Z<p>It's pretty slow to read a byte at a time, but Harpo's answer will do that. If you want an alternative, <code>b = System.IO.ReadAllBytes(filename)</code> will be a lot faster, and then you can process the data one byte at a time in the byte array b. Alternatively, you can use <code>s = System.IO.ReadAllText(filename)</code> and process the characters in the string s.</p>
http://stackoverflow.com/questions/1799272/does-anyone-know-of-a-way-to-view-all-compiler-warnings-for-a-vb-net-project/1800936#18009361Answer by xpda for Does anyone know of a way to view all compiler warnings for a VB.NET project?xpda2009-11-26T00:35:36Z2009-11-26T00:35:36Z<p>The official answer is apparently "No." From <a href="https://connect.microsoft.com/VisualStudio/feedback/ViewFeedback.aspx?FeedbackID=170749" rel="nofollow">Microsoft</a>: "While this issue does exist, the Visual Basic Compiler Team has decided to leave the hard limit to the reported errors because it helps with performance."</p>
http://stackoverflow.com/questions/1800428/get-rid-of-error-message-vb-net/1800442#18004420Answer by xpda for Get Rid of Error Message - VB.NETxpda2009-11-25T22:43:51Z2009-11-25T22:43:51Z<p>Try this. It should only display one message. Make sure your original message is coming from a statement after the <code>Try</code>.</p>
<pre><code>Try
code
Catch ex as exception
call msgbox (ex.message)
end try
</code></pre>
http://stackoverflow.com/questions/1798858/override-a-event-in-vb-net/1800082#18000820Answer by xpda for Override a event in VB.NETxpda2009-11-25T21:28:29Z2009-11-25T21:28:29Z<p>Can you override the handler in a derived class?</p>
<pre><code>Public Class OverriddenClass
Inherits OriginalClass
Protected Overrides Function ProcessVisibleChanged(ByRef msg as Message, value as ...) As Boolean
value = value + 1
ProcessVisibleChanged = MyBase.ProcessVisibleChanged(msg, value)
' or use OnVisibleChanged to avoid the base handler
End Function
end class
</code></pre>
http://stackoverflow.com/questions/140376/what-easter-eggs-have-you-placed-in-code/1792558#17925581Answer by xpda for What Easter Eggs have you placed in code?xpda2009-11-24T20:00:26Z2009-11-24T20:00:26Z<p>The first one I heard about was in the 1970's. A Computer Science professor where I was a studying wrote some numerical libraries (Fortran 66, if I recall). He checked the data input thoroughly, and at one point, if the input was so bad as to be unrecognizable, he output a message using Format number 981 (format statements all had statement numbers). This message, output to the printer, provided an uncomplementary description of the user's intelligence, said "Mother Nature may be trying to tell you something," and printed a huge finger in beautiful ascii graphics. Some time later, a colleague from another university called him. It seems he had used this library in a publication. You can guess the rest.</p>
<p>There are still a few stalwarts who recognize "Format 981" as a highly appropriate insult in certain situations.</p>
http://stackoverflow.com/questions/1792038/controlling-horizontal-scroll-in-richtextbox/1792403#17924030Answer by xpda for Controlling horizontal scroll in RichTextBoxxpda2009-11-24T19:33:11Z2009-11-24T19:33:11Z<p>This is a little messy, but it should work:
When you do a ScrollToCaret and the horizontal scroll position changes, it fires an HScroll event. If the HScroll event occurs when you don't want it to, you can move the horizontal scroll bar back by
1. Move the selectionstart to 1 character after the previous crlf
2. Set the selectionstart to that location, and then
3. ScrollToCaret.</p>
http://stackoverflow.com/questions/1789257/is-it-possible-to-create-eventlisteners-for-string-int-bool-at-all/1791007#17910071Answer by xpda for Is it possible to create eventlisteners for string, int, bool at all?xpda2009-11-24T15:58:24Z2009-11-24T15:58:24Z<p>It is possible to create listeners, as some of ther others have mentioned, by making a class that fires an event whenever a property changes. This is obviously a lot less efficient than just assigning a value, but there are cases where it could be useful.</p>
<p>Some languages (VB6 and some others) have the ability in debug mode to stop execution when the value of a variable changes. I haven't seen this in .net, but it's liable to be in there somewhere. :-)</p>
<p>It seems to me that using an event to signal a simple variable change could be accomplished with if statements at each assignment, unless the value that variable is being changed externally, in which case you could use a class to handle it.</p>
http://stackoverflow.com/questions/1787633/problem-with-function-now-in-vb-net/1788127#17881271Answer by xpda for Problem with function Now() in VB.NETxpda2009-11-24T06:05:38Z2009-11-24T06:13:23Z<p>Is that the difference between UCT (Greenwich Mean Time) and your local time? You can use Date.UtcNow() to get the current UTC, and DateNow() should get the local time. Check the time zone settings of your computer.</p>
http://stackoverflow.com/questions/1785819/basic-questions-about-classes-modules-and-interaction/1787506#17875060Answer by xpda for Basic questions about Classes, Modules and interactionxpda2009-11-24T03:00:15Z2009-11-24T03:00:15Z<p>Generally, if you have a function that needs to be called from more than one form, or from forms and modules, put it in the main module. If you have an exceptional case and need to call a function or sub in a form from another form or a module, you can declare it to be public:</p>
<pre><code>Public Class Form1
public sub test(i as integer)
...
end sub
end class
</code></pre>
<p>and then you can call it by referring to the class.subname:</p>
<pre><code>call form1.test(7)
</code></pre>
http://stackoverflow.com/questions/1786277/best-way-to-resize-form-controls-according-to-resolution/1787483#17874831Answer by xpda for Best way to resize form/controls according to resolution?xpda2009-11-24T02:52:39Z2009-11-24T02:52:39Z<p>You can anchor the controls in a form to the top, bottom, left or right. This makes it possible to design the form so the size can change without messing up all the controls. You can do this in Design Mode, setting the anchor property of each control.</p>
<p>There is a minimum (and maximum) size property for the form you can use to keep it from getting too small for its controls. You can use Screen.PrimaryScreen.Bounds or My.Computer.Screen.Bounds to get the screen size and set the form size accordingly, or possibly maximize the form if the screen is below a certain size.</p>
http://stackoverflow.com/questions/783238/why-windows-7-isnt-written-in-c/1854197#1854197Comment by xpda on Why Windows 7 isn't written in C#?xpda2009-12-06T03:20:52Z2009-12-06T03:20:52ZDownvote: You should explain why C# sucks -- backup your opinion.http://stackoverflow.com/questions/1844807/what-does-meanComment by xpda on What does /([^.]*)\.(.*)/ mean?xpda2009-12-04T04:39:42Z2009-12-04T04:39:42ZI think I saw that profanity once on a comic strip. Or, if you prefer, a regular expression used for searching and replacing.http://stackoverflow.com/questions/1835458/text-read-and-replace-algorithm/1837081#1837081Comment by xpda on Text read and replace algorithmxpda2009-12-03T15:48:40Z2009-12-03T15:48:40ZHere's one way: Add a space to the right of each row. In the top row, add enough spaces so it's the longest line. Select a column of all the lines, wide enough to include each name and trailing space. Paste the column far enough to the right so it doesn't overlap any text. The spaces on the first line will allow this. It will work, even though the rows are different length.http://stackoverflow.com/questions/1837582/how-to-write-to-read-from-network-card-in-x86-assembly/1837613#1837613Comment by xpda on How to write to & read from network card in x86 assembly?xpda2009-12-03T15:46:14Z2009-12-03T15:46:14ZAs yetapb said, there may be security restrictions on direct port access. You can get details on all this from the hardware manufacturer. Each manufacturer and most models are likely to be different. Sorry, I don't have any examples from the past decade.http://stackoverflow.com/questions/234075/what-is-your-best-programmer-joke/234128#234128Comment by xpda on What is your best programmer joke?xpda2009-12-03T01:54:29Z2009-12-03T01:54:29ZThe really funny thing about this one is everybody trying to explain it.http://stackoverflow.com/questions/1824036/tabcontrol-how-can-you-remove-the-tabpage-title/1824130#1824130Comment by xpda on Tabcontrol: How can you remove the tabpage title?xpda2009-12-01T22:06:50Z2009-12-01T22:06:50ZI thought that is what it is for, but it works at runtime properly without it. Maybe the handle is recreated every time a tab page is added or removed now. (vb.net 2008)http://stackoverflow.com/questions/1824036/tabcontrol-how-can-you-remove-the-tabpage-title/1824130#1824130Comment by xpda on Tabcontrol: How can you remove the tabpage title?xpda2009-12-01T17:57:11Z2009-12-01T17:57:11ZThis seems to work fine without calling checkOnePage. Is there a reason I should keep that?http://stackoverflow.com/questions/1824036/tabcontrol-how-can-you-remove-the-tabpage-title/1824130#1824130Comment by xpda on Tabcontrol: How can you remove the tabpage title?xpda2009-12-01T06:41:28Z2009-12-01T06:41:28ZIt works! (Even in vb.)http://stackoverflow.com/questions/1700510/listview-itemcheck-quirkComment by xpda on ListView ItemCheck quirk?xpda2009-11-28T18:45:47Z2009-11-28T18:45:47ZHow are you disabling your OnItemChecked handlers?http://stackoverflow.com/questions/1811384/what-is-the-best-language-for-sockets-programming/1811390#1811390Comment by xpda on What is the best language for sockets programming?xpda2009-11-28T02:55:09Z2009-11-28T02:55:09ZWhat are the most popular languages that can do that?http://stackoverflow.com/questions/1811224/why-do-people-rage-against-homework-questions-so-much/1811228#1811228Comment by xpda on Why do people rage against homework questions so muchxpda2009-11-28T01:31:42Z2009-11-28T01:31:42ZThis is an engineering q&a? I thought it was for programming.http://stackoverflow.com/questions/1807002/how-to-display-records-in-the-listview-control/1807323#1807323Comment by xpda on How to display records in the listview control?xpda2009-11-27T16:13:04Z2009-11-27T16:13:04ZThanks -- if it's the correct answer, you can click on the checkmark to mark it.http://stackoverflow.com/questions/102084/hidden-features-of-vb-net/500667#500667Comment by xpda on Hidden Features of VB.NET?xpda2009-11-27T07:30:05Z2009-11-27T07:30:05Zand the else also.http://stackoverflow.com/questions/1804895/how-do-you-read-a-text-file-without-losing-odd-characters/1804912#1804912Comment by xpda on How do you read a text file without losing odd characters?xpda2009-11-26T18:00:52Z2009-11-26T18:00:52ZGetEncoding(1252) doesn't do it. Yes, the characters are stripped out of the file. If I do a ReadAllLines immediately followed by WriteAllLines, the output file is smaller than the input file.http://stackoverflow.com/questions/1804895/how-do-you-read-a-text-file-without-losing-odd-characters/1804917#1804917Comment by xpda on How do you read a text file without losing odd characters?xpda2009-11-26T17:50:09Z2009-11-26T17:50:09ZI don't want to use raw bytes because I am processing string data. It is too slow and cumbersome to use bytes for this. I would like to be able to read a text file and be confident that I am getting the entire file with no characters missing.