User xpda - Stack Overflow most recent 30 from stackoverflow.com 2009-12-18T04:53:11Z http://stackoverflow.com/feeds/user/14149 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1857823/datetime-addtimespan-performance-vs-datetime-adddays-hours-etc-methods/1857873#1857873 0 Answer by xpda for DateTime.Add(TimeSpan) performance vs DateTime.AddDays/Hours/etc* methods. xpda 2009-12-07T04:47:49Z 2009-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#1856362 0 Answer by xpda for Resize bitmap like in MS Paint xpda 2009-12-06T19:38:18Z 2009-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#1854118 0 Answer by xpda for startup form problem in vb .net xpda 2009-12-06T02:06:20Z 2009-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#1851330 0 Answer by xpda for Text is not getting Highlighted in Combobox when selectedindex changed through code xpda 2009-12-05T06:20:26Z 2009-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#1844883 0 Answer by xpda for Using a Personal Webpage to Copyright ideas (e.g. stories, etc)? xpda 2009-12-04T04:34:29Z 2009-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#1837613 0 Answer by xpda for How to write to & read from network card in x86 assembly? xpda 2009-12-03T04:20:28Z 2009-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#1837081 1 Answer by xpda for Text read and replace algorithm xpda 2009-12-03T01:25:26Z 2009-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#1836714 0 Answer by xpda for VB6 convert to VB.net Variant question xpda 2009-12-02T23:49:43Z 2009-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#1830792 1 Answer by xpda for C# - Avoid duplicating logic between WinForm and UserControl xpda 2009-12-02T05:16:19Z 2009-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-title 0 Tabcontrol: How can you remove the tabpage title? xpda 2009-12-01T04:40:03Z 2009-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#1823658 0 Answer by xpda for How can i Update /Get values in windows form while moving one form to other form(like cookies)? xpda 2009-12-01T02:36:52Z 2009-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#1810682 0 Answer by xpda for VB.net word document Insert column break xpda 2009-11-27T21:23:35Z 2009-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#1809998 0 Answer by xpda for Winforms - order of Load and Activated events xpda 2009-11-27T18:00:03Z 2009-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#1807323 1 Answer by xpda for How to display records in the listview control? xpda 2009-11-27T08:00:52Z 2009-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#1807249 0 Answer by xpda for Winform and Tab? xpda 2009-11-27T07:28:48Z 2009-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#1806455 0 Answer by xpda for Creating an tree graph from a collection of objects where only parent node is known xpda 2009-11-27T02:00:18Z 2009-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&amp;ltSomeObject&gt;(); 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#1806436 0 Answer by xpda for Algorithm to find matching pairs in a list xpda 2009-11-27T01:45:17Z 2009-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#1805994 1 Answer by xpda for How to improve scanned image quality? xpda 2009-11-26T22:43:12Z 2009-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-characters 1 How do you read a text file without losing odd characters? xpda 2009-11-26T17:29:29Z 2009-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#1805137 0 Answer by xpda for How do you read a text file without losing odd characters? xpda 2009-11-26T18:43:26Z 2009-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#1804837 0 Answer by xpda for Reading a file in vb.net xpda 2009-11-26T17:11:04Z 2009-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#1800936 1 Answer by xpda for Does anyone know of a way to view all compiler warnings for a VB.NET project? xpda 2009-11-26T00:35:36Z 2009-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#1800442 0 Answer by xpda for Get Rid of Error Message - VB.NET xpda 2009-11-25T22:43:51Z 2009-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#1800082 0 Answer by xpda for Override a event in VB.NET xpda 2009-11-25T21:28:29Z 2009-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#1792558 1 Answer by xpda for What Easter Eggs have you placed in code? xpda 2009-11-24T20:00:26Z 2009-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#1792403 0 Answer by xpda for Controlling horizontal scroll in RichTextBox xpda 2009-11-24T19:33:11Z 2009-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#1791007 1 Answer by xpda for Is it possible to create eventlisteners for string, int, bool at all? xpda 2009-11-24T15:58:24Z 2009-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#1788127 1 Answer by xpda for Problem with function Now() in VB.NET xpda 2009-11-24T06:05:38Z 2009-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#1787506 0 Answer by xpda for Basic questions about Classes, Modules and interaction xpda 2009-11-24T03:00:15Z 2009-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#1787483 1 Answer by xpda for Best way to resize form/controls according to resolution? xpda 2009-11-24T02:52:39Z 2009-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#1854197 Comment by xpda on Why Windows 7 isn't written in C#? xpda 2009-12-06T03:20:52Z 2009-12-06T03:20:52Z Downvote: You should explain why C# sucks -- backup your opinion. http://stackoverflow.com/questions/1844807/what-does-mean Comment by xpda on What does /([^.]*)\.(.*)/ mean? xpda 2009-12-04T04:39:42Z 2009-12-04T04:39:42Z I 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#1837081 Comment by xpda on Text read and replace algorithm xpda 2009-12-03T15:48:40Z 2009-12-03T15:48:40Z Here'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#1837613 Comment by xpda on How to write to & read from network card in x86 assembly? xpda 2009-12-03T15:46:14Z 2009-12-03T15:46:14Z As 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#234128 Comment by xpda on What is your best programmer joke? xpda 2009-12-03T01:54:29Z 2009-12-03T01:54:29Z The 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#1824130 Comment by xpda on Tabcontrol: How can you remove the tabpage title? xpda 2009-12-01T22:06:50Z 2009-12-01T22:06:50Z I 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#1824130 Comment by xpda on Tabcontrol: How can you remove the tabpage title? xpda 2009-12-01T17:57:11Z 2009-12-01T17:57:11Z This 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#1824130 Comment by xpda on Tabcontrol: How can you remove the tabpage title? xpda 2009-12-01T06:41:28Z 2009-12-01T06:41:28Z It works! (Even in vb.) http://stackoverflow.com/questions/1700510/listview-itemcheck-quirk Comment by xpda on ListView ItemCheck quirk? xpda 2009-11-28T18:45:47Z 2009-11-28T18:45:47Z How are you disabling your OnItemChecked handlers? http://stackoverflow.com/questions/1811384/what-is-the-best-language-for-sockets-programming/1811390#1811390 Comment by xpda on What is the best language for sockets programming? xpda 2009-11-28T02:55:09Z 2009-11-28T02:55:09Z What are the most popular languages that can do that? http://stackoverflow.com/questions/1811224/why-do-people-rage-against-homework-questions-so-much/1811228#1811228 Comment by xpda on Why do people rage against homework questions so much xpda 2009-11-28T01:31:42Z 2009-11-28T01:31:42Z This is an engineering q&amp;a? I thought it was for programming. http://stackoverflow.com/questions/1807002/how-to-display-records-in-the-listview-control/1807323#1807323 Comment by xpda on How to display records in the listview control? xpda 2009-11-27T16:13:04Z 2009-11-27T16:13:04Z Thanks -- 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#500667 Comment by xpda on Hidden Features of VB.NET? xpda 2009-11-27T07:30:05Z 2009-11-27T07:30:05Z and the else also. http://stackoverflow.com/questions/1804895/how-do-you-read-a-text-file-without-losing-odd-characters/1804912#1804912 Comment by xpda on How do you read a text file without losing odd characters? xpda 2009-11-26T18:00:52Z 2009-11-26T18:00:52Z GetEncoding(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#1804917 Comment by xpda on How do you read a text file without losing odd characters? xpda 2009-11-26T17:50:09Z 2009-11-26T17:50:09Z I 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.