User xsl - Stack Overflowmost recent 30 from stackoverflow.com2009-12-22T21:46:50Zhttp://stackoverflow.com/feeds/user/11387http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1420825/windows-mobile-c-wait-until-variable-changes0Windows Mobile/C: Wait until variable changesxsl2009-09-14T10:45:23Z2009-09-14T11:20:45Z
<p>I'm currently writing a wrapper library for windows mobile in C/C++. I have to implement and export the following functions:</p>
<pre><code>void start_scanning();
int wait_for_scanning_result();
void stop_scanning();
</code></pre>
<p><code>start_scanning()</code> is called to start the scanning process. <code>wait_for_scanning_result()</code> will wait until a result is available and return it, and <code>stop_scanning</code> will abort the process.</p>
<p>The library I am using has a callback function that is executed when a result is available.</p>
<pre><code>void on_scanning_result(int result)
{
/* My code goes here */
}
</code></pre>
<p>Unfortunately I have to implement the functions above, so my plan was to solve it like this:</p>
<pre><code>void on_scanning_result(int result)
{
scan_result_available = 1;
scan_result = result;
}
int wait_for_scanning_result()
{
/* ... wait until scan_result_available == 1 */
return scan_result;
}
</code></pre>
<p>I have no idea how to do this in windows/C and I would be very glad if someone could help me or tell me which functions I have to use to accomplish this. </p>
http://stackoverflow.com/questions/1063181/sta-mta-and-ole-nightmare1STA, MTA and OLE nightmarexsl2009-06-30T11:31:19Z2009-09-08T09:50:33Z
<p>I have to include a .NET application into another .NET application as a plugin. The plugin interface requires me to inherit from a template form. The form is then attached in a MDI when the plugin is loaded.</p>
<p>Everything is working so far, but whenever I register for drag and drop events, set the autocomplete mode for a combobox or at various other situations I get the following exception:</p>
<blockquote>
<p>...the current thread must be set to
single thread apartment (STA) mode
before OLE calls can be made. Ensure
that your Main function has
STAThreadAttribute marked on it...</p>
</blockquote>
<p>The main application is running in MTA and developed by another company, so there is nothing I can do about it. </p>
<p>I tried to do the things that cause these exceptions in STA threads, but that didn't solve the problem either. </p>
<p>Has anyone been in the same situation? Is there anything I can do to solve the problem?</p>
http://stackoverflow.com/questions/1063181/sta-mta-and-ole-nightmare/1393053#13930530Answer by xsl for STA, MTA and OLE nightmarexsl2009-09-08T09:50:33Z2009-09-08T09:50:33Z<p>Update: The company released a new STA version. The question is no longer relevant.</p>
http://stackoverflow.com/questions/174430/log4net-could-not-find-schema-information-messages5Log4Net "Could not find schema information" messagesxsl2008-10-06T14:11:18Z2009-07-31T11:22:44Z
<p>I decided to use <a href="http://logging.apache.org/log4net/index.html" rel="nofollow">log4net</a> as a logger for a new webservice project. Everything is working fine, but I get a lot of messages like the one below, for every log4net tag I am using in my <code>web.config</code>:</p>
<blockquote>
<p>Could not find schema information for
the element 'log4net'...</p>
</blockquote>
<p>Below are the relevant parts of my <code>web.config</code>:</p>
<pre><code> <configSections>
<section name="log4net"
type="log4net.Config.Log4NetConfigurationSectionHandler, log4net" />
</configSections>
<log4net>
<appender name="RollingFileAppender" type="log4net.Appender.RollingFileAppender">
<file value="C:\log.txt" />
<appendToFile value="true" />
<rollingStyle value="Size" />
<maxSizeRollBackups value="10" />
<maximumFileSize value="100KB" />
<staticLogFileName value="true" />
<layout type="log4net.Layout.PatternLayout">
<conversionPattern value="%date [%thread] %-5level: %message%newline" />
</layout>
</appender>
<logger name="TIMServerLog">
<level value="DEBUG" />
<appender-ref ref="RollingFileAppender" />
</logger>
</log4net>
</code></pre>
<p>Solved:</p>
<ol>
<li>Copy every log4net specific tag to a separate <code>xml</code>-file. Make sure to use <code>.xml</code> as file extension.</li>
<li><p>Add the following line to <code>AssemblyInfo.cs</code>:</p>
<p><code>[assembly: log4net.Config.XmlConfigurator(ConfigFile = "xmlFile.xml", Watch = true)]</code></p></li>
</ol>
<p><a href="http://stackoverflow.com/users/20774/nemo">nemo</a> added:</p>
<blockquote>
<p>Just a word of warning to anyone
follow the advice of the answers in
this thread. There is a possible
security risk by having the log4net
configuration in an xml off the root
of the web service, as it will be
accessible to anyone by default. Just
be advised if your configuration
contains sensitive data, you may want
to put it else where.</p>
</blockquote>
http://stackoverflow.com/questions/964396/absolute-path-confused-ubuntu/964402#9644021Answer by xsl for absolute path... confused (ubuntu)xsl2009-06-08T11:13:04Z2009-06-08T11:13:04Z<p>If the binary is in the <code>data</code> directory use <code>file.t</code> instead of <code>data/file.t</code>.</p>
http://stackoverflow.com/questions/355670/is-returning-early-from-a-function-more-elegant-than-an-if-statement/355684#35568417Answer by xsl for Is returning early from a function more elegant than an if statement?xsl2008-12-10T10:58:54Z2009-06-08T09:40:49Z<p>In most cases, returning early reduces the complexity and makes the code more readable.</p>
<p>It's also one of the techniques applied in <a href="http://ssdl-wiki.cs.technion.ac.il/wiki/index.php/Spartan%5Fprogramming" rel="nofollow">Spartan programming</a>:</p>
<blockquote>
<p><strong>Minimal use of Control</strong></p>
<ol>
<li>Minimizing the use of conditionals by using specialized
constructs such ternarization,
inheritance, and classes such as Class
Defaults, Class Once and Class
Separator</li>
<li>Simplifying conditionals with early <code>return</code>.</li>
<li>Minimizing the use of looping constructs, by using action applicator
classes such as Class Separate and
Class FileSystemVisitor.</li>
<li>Simplifying logic of iteration with early exits (via <code>return</code>,
<code>continue</code> and <code>break</code> statements).</li>
</ol>
</blockquote>
<p>In your example, I would choose option 2, as it makes the code more readable. I use the same technique when checking function parameters.</p>
http://stackoverflow.com/questions/748411/is-there-a-capitalizefirstletter-method/748420#7484206Answer by xsl for Is there a CapitalizeFirstLetter method?xsl2009-04-14T16:39:46Z2009-04-14T21:20:41Z<p>A simple extension method, that will capitalize the first letter of a string. As Karl pointed out, this assumes that the first letter is the right one to change and is therefore not perfectly culture-safe. </p>
<pre><code>public static string CapitalizeFirstLetter(this String input)
{
if (string.IsNullOrEmpty(input))
return input;
return input.Substring(0, 1).ToUpper(CultureInfo.CurrentCulture) +
input.Substring(1, input.Length - 1);
}
</code></pre>
<p>You can also use <a href="http://msdn.microsoft.com/en-us/library/system.globalization.textinfo.totitlecase.aspx" rel="nofollow">System.Globalization.CultureInfo.CurrentCulture.TextInfo.ToTitleCase</a>.
The function will convert the first character of <strong>each word</strong> to upper case. So if your input string is <code>have fun</code> the result will be <code>Have Fun</code>.</p>
<pre><code> public static string CapitalizeFirstLetter(this String input)
{
if (string.IsNullOrEmpty(input))
return input;
return CultureInfo.CurrentCulture.TextInfo.ToTitleCase(input);
}
</code></pre>
<p>See <a href="http://stackoverflow.com/questions/72831/how-do-i-capitalize-first-letter-of-first-name-and-last-name-in-c">this question</a> for more information.</p>
http://stackoverflow.com/questions/729276/compact-framework-failed-to-use-inputpanel-in-a-control1Compact Framework: Failed to use InputPanel in a controlxsl2009-04-08T09:44:18Z2009-04-08T15:01:34Z
<p>I developed a control that uses the PDA's <code>InputPanel</code> to interact with the user. The relevant part of the code is below:</p>
<pre><code>namespace MyNamespace
{
// ...
using Microsoft.WindowsCE.Forms;
// ...
public class MyControl
{
// ...
public InputPanel MyPanel { get; set; }
// ...
}
}
</code></pre>
<p>Whenever I try to drag the <code>Control</code> to a <code>Form</code>, I get the following error:</p>
<blockquote>
<p>System.IO.FileNotFoundException: Could
not load file or assembly
‘Microsoft.WindowsCE.Forms,
Version=2.0.0.0, Culture=neutral,<br />
PublicKeyToken=969db8053d3322ac’ or
one of its dependencies. The system
cannot find the file specified. File
name: ‘Microsoft.WindowsCE.Forms,
Version=2.0.0.0, Culture=neutral,
PublicKeyToken=969db8053d3322ac’</p>
</blockquote>
<p>If I remove the <code>InputPanel</code> line from <code>MyControl</code> I can add it to the <code>Form</code> without any problems. Once the <code>Control</code> is added I can add the line again and the whole program compiles and works fine. </p>
<p>As soon as the form with the <code>Control</code> is viewed in the Designer, it crashes with a similar error as written above and I can't add it to any other <code>Form</code> again.</p>
<p>I am using Visual Studio 2008 SP1 with the Windows Mobile 6 SDK.</p>
<p><hr /></p>
<p>So my questions is: Has anyone experienced a similar problem or found a workaround? </p>
<p><hr /></p>
<p>EDIT: Gave up and used the parent form as a property. The form implements IInputPanel which is basically an interface with an InputPanel getter. Nevertheless ctake's answer was really insightful and introduced me to XMTA.</p>
http://stackoverflow.com/questions/70377/remove-vsmacros80-directory0Remove VSMacros80 directoryxsl2008-09-16T08:32:09Z2009-03-23T09:24:38Z
<p>Is there any way to prevent Visual Studio from creating a VSMacros80 folder in my default project directory?</p>
http://stackoverflow.com/questions/593951/outofmemoryexception-on-mobile-device2OutOfMemoryException On Mobile Devicexsl2009-02-27T08:21:01Z2009-02-27T08:36:17Z
<p>I'm developing an application that uses a mobile device to take a photo and send it using a webservice. But after I've taken 4 photos I am getting an <code>OutOfMemoryException</code> in the code below. I tried calling <code>GC.Collect()</code> but it didn't help either. Maybe someone here could be give me an advice how to handle this problem.</p>
<pre><code>public static Bitmap TakePicture()
{
var dialog = new CameraCaptureDialog
{
Resolution = new Size(1600, 1200),
StillQuality = CameraCaptureStillQuality.Default
};
dialog.ShowDialog();
// If the filename is empty the user took no picture
if (string.IsNullOrEmpty(dialog.FileName))
return null;
// (!) The OutOfMemoryException is thrown here (!)
var bitmap = new Bitmap(dialog.FileName);
File.Delete(dialog.FileName);
return bitmap;
}
</code></pre>
<p>The function is called by an event handler:</p>
<pre><code>private void _pictureBox_Click(object sender, EventArgs e)
{
_takePictureLinkLabel.Visible = false;
var image = Camera.TakePicture();
if (image == null)
return;
image = Camera.CutBitmap(image, 2.5);
_pictureBox.Image = image;
_image = Camera.ImageToByteArray(image);
}
</code></pre>
http://stackoverflow.com/questions/84209/adding-a-guideline-to-the-editor-in-visual-studio22Adding a guideline to the editor in Visual Studioxsl2008-09-17T15:04:28Z2009-02-20T06:37:00Z
<p>I've always been searching for a way to make Visual Studio draw a guideline (a vertical line after a certain amount of characters). I recently found <a href="http://blogs.msdn.com/saraford/archive/2004/11/15/257953.aspx" rel="nofollow">a simple solution</a> I would like to share:</p>
<p>If you are using Visual Studio 2008 (*) open the registry at <code>HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\9.0\Text Editor</code> and add a new string called <code>Guides</code> with the value <code>RGB(230,230,230), 80</code>. The first part specifies the color, while the other one (<code>80</code>) is the column the line will be displayed. </p>
<p>If you restart Visual Studio, the vertical line will appear:</p>
<p><img src="http://img168.imageshack.us/img168/4044/previewvk7.jpg" alt="Screenshot of Visual Studio" /></p>
<p>(*) Registry paths for various version of Visual Studio:</p>
<pre><code>2003: HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\7.1\Text Editor
2005: HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\8.0\Text Editor
2008: HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\9.0\Text Editor
2008 Express: HKEY_CURRENT_USER\Software\Microsoft\VCExpress\9.0\Text Editor
</code></pre>
<p><a href="http://stackoverflow.com/questions/332574/how-can-i-see-where-the-tab-stops-are-in-the-sql-server-management-studio-editor">This also works in SQL Server 2005 and probably other versions.</a></p>
http://stackoverflow.com/questions/446108/regular-expression-for-no-blank-space-b-w-text/446165#4461651Answer by xsl for regular expression for no blank space b/w textxsl2009-01-15T09:36:41Z2009-01-15T09:36:41Z<p>I don't know if it is the regular expression you are looking for but, <code>[:space:]</code> will match any whitespace character, while <code>[:blank:]</code> will match space and tab characters only.</p>
<p>Both are used inside square brackets, e.g. <code>[[:space:]]</code></p>
http://stackoverflow.com/questions/362342/valid-css-xhtml-logo-generator/362354#3623545Answer by xsl for Valid CSS, XHTML logo generatorxsl2008-12-12T10:02:12Z2008-12-12T22:26:59Z<p>You probably mean <a href="http://antipixel.com/blog/archives/2002/10/22/steal_these_buttons.html" rel="nofollow">antipixel's icons</a> and <a href="http://www.lucazappa.com/brilliantMaker/buttonImage.php" rel="nofollow">LucaZappa's Brilliant Button Maker</a>.</p>
<p><img src="http://img353.imageshack.us/img353/1368/stealthesebuttonsli4.gif" alt="Picture of the icons" /></p>
<p>From the <a href="http://antipixel.com" rel="nofollow">antipixel website</a>:</p>
<blockquote>
<p><strong>If you want them, they’re yours</strong>,
<strong>gratis, no strings attached.</strong></p>
<p><strong>Pull them straight off the main page</strong>
<strong>here if you want, and if you’d like to</strong>
<strong>change anything about them, go ahead</strong>
<strong>and do that.</strong> I’m posting the Photoshop
files below so you can download those
and change anything you want. You do
not need to give me credit or provide
a link back here or anything like
that. (Some people are already using
them and at least one kind soul has
posted such a link back here. You
don’t need to do that anymore, but
thank you for being a more than decent
person.)</p>
</blockquote>
<p><a href="http://www.antipixel.com/blog/archives/2002/10/23/rss_buttons.html" rel="nofollow">RSS buttons are also available.</a></p>
http://stackoverflow.com/questions/358893/what-are-the-text-editors-capable-of-recording-macros/358914#3589145Answer by xsl for What are the text editors capable of recording macros?xsl2008-12-11T10:28:43Z2008-12-11T10:28:43Z<p>Wikipedia has a <a href="http://en.wikipedia.org/wiki/Comparison_of_text_editors" rel="nofollow">comparison of text editors</a>. The table in the <a href="http://en.wikipedia.org/wiki/Comparison_of_text_editors#Extra_features" rel="nofollow">extra features section</a> will allow you to group them by macro support.</p>
http://stackoverflow.com/questions/353545/how-to-use-same-database-and-same-program-for-two-different-locales-in-net/353619#3536191Answer by xsl for How to use same database and same program for two different locales in .NETxsl2008-12-09T17:46:46Z2008-12-09T17:46:46Z<p>If you built the query using string concatenation, use parameters instead.
So instead of writing:</p>
<pre><code> var query = "insert into tblproducts(productId,Price) values('" + article + "','"
+ price + ')';
</code></pre>
<p>use <a href="http://msdn.microsoft.com/library/yy6y35y8.aspx" rel="nofollow">OleDbParameters</a>:</p>
<pre><code> var query = "insert into tblproducts(productId,Price) values(?,?)"
var cmd = new OleDbCommand(query, connection);
cmd.Parameters.Add("@article", OleDbType.VarChar).Value = article;
cmd.Parameters.Add("@price", OleDbType.Single).Value = price;
</code></pre>
<p>This will save you a lot of troubles, including localization issues.</p>
http://stackoverflow.com/questions/353380/what-is-a-line-of-code/353420#3534206Answer by xsl for What is a line of code?xsl2008-12-09T16:40:31Z2008-12-09T16:40:31Z<p>Have a look at the <a href="http://en.wikipedia.org/wiki/Source_lines_of_code" rel="nofollow">Wikipedia Article</a>, especially the "<a href="http://en.wikipedia.org/wiki/Source_lines_of_code#Measuring_SLOC" rel="nofollow">Measuring SLOC</a>" section:</p>
<blockquote>
<p>There are two major types of SLOC
measures: physical SLOC and logical
SLOC. Specific definitions of these
two measures vary, but the most common
definition of physical SLOC is a count
of lines in the text of the program's
source code including comment lines.
Blank lines are also included unless
the lines of code in a section
consists of more than 25% blank lines.
In this case blank lines in excess of
25% are not counted toward lines of
code.</p>
<p>Logical SLOC measures attempt to
measure the number of "statements",
but their specific definitions are
tied to specific computer languages
(one simple logical SLOC measure for
C-like programming languages is the
number of statement-terminating
semicolons). It is much easier to
create tools that measure physical
SLOC, and physical SLOC definitions
are easier to explain. However,
physical SLOC measures are sensitive
to logically irrelevant formatting and
style conventions, while logical SLOC
is less sensitive to formatting and
style conventions. Unfortunately, SLOC
measures are often stated without
giving their definition, and logical
SLOC can often be significantly
different from physical SLOC.</p>
<p>Consider this snippet of C code as an
example of the ambiguity encountered
when determining SLOC:</p>
<pre><code>for (i=0; i<100; ++i) printf("hello"); /* How many lines of code is this? */
</code></pre>
<p>In this example we have:</p>
<ul>
<li>1 Physical Lines of Code LOC</li>
<li>2 Logical Lines of Code lLOC (for statement and printf statement)</li>
<li>1 Comment Line</li>
</ul>
<p>[...]</p>
</blockquote>
http://stackoverflow.com/questions/301750/404-hijacking/301780#30178015Answer by xsl for 404 Hijackingxsl2008-11-19T12:41:39Z2008-11-19T13:43:21Z<p>It’s not your fault and it’s certainly not your responsibility. Keep the HTTP status codes, they are useful. If some of your users decide to install a browser plugin which handles 404 status codes, don't try to work around it.</p>
<p><a href="http://googlewebmastercentral.blogspot.com/2008/08/farewell-to-soft-404s.html" rel="nofollow">There is a Google Webmaster Central Blog post about this topic</a>:</p>
<blockquote>
<p>[...] are
confusing for users, and furthermore
search engines may spend much of their
time crawling and indexing
non-existent, often duplicative URLs
on your site. This can negatively
impact your site's crawl
coverage - because of the time Googlebot
spends on non-existent pages, your
unique URLs may not be discovered as
quickly or visited as frequently.</p>
</blockquote>
http://stackoverflow.com/questions/289626/how-to-loop-files-in-linux-from-svn-status/289690#2896901Answer by xsl for how to loop files in linux from svn statusxsl2008-11-14T10:14:45Z2008-11-14T10:27:52Z<p>I could not test it with real subversion output, but this should do the job:</p>
<pre><code>svn st | cut -c8- | while read file; do expand -t4 $file > "$file-temp"; mv "$file-temp" "$file"; done
</code></pre>
<p><code>svn st | cut -c8- </code> will generate a list of files without subversion flags. <code>read</code> will then save each entry in the variable <code>$file</code> and <code>expand</code> is used to replace the tabs with four spaces in each file.</p>
http://stackoverflow.com/questions/289565/what-is-lts-long-term-support/289569#2895696Answer by xsl for What is LTS (Long Term Support)?xsl2008-11-14T09:12:06Z2008-11-14T09:12:06Z<p><a href="https://wiki.ubuntu.com/LTS" rel="nofollow">From the Ubuntu Wiki:</a></p>
<blockquote>
<p>LTS is an abbreviation for “Long Term
Support”.</p>
<p>We issue a new desktop and server
release every six months. That means
you'll always have the latest and
greatest applications that the open
source world has to offer.</p>
<p>Ubuntu is designed with security in
mind. You get free security updates
for at least 18 months on the desktop
and server.</p>
<p>With the Long Term Support (LTS)
version you get three years support on
the desktop, and five years on the
server. There is no extra fee for the
LTS version, we make our very best
work available to everyone on the same
free terms. Upgrades to new versions
of Ubuntu are and always will be free
of charge.</p>
</blockquote>
http://stackoverflow.com/questions/287404/using-regular-expressions-to-do-mass-replace-in-notepad-and-vim/287415#2874154Answer by xsl for Using regular expressions to do mass replace in Notepad++ and Vimxsl2008-11-13T16:29:50Z2008-11-13T16:29:50Z<p>This will remove the <code>option</code> tag and just leave the letters in vim:</p>
<pre><code>:%s/<option.*>//g
</code></pre>
http://stackoverflow.com/questions/268475/h1-in-article-page-site-title-or-article-title/268506#26850613Answer by xsl for H1 in article page - site title or article title?xsl2008-11-06T12:30:34Z2008-11-06T12:30:34Z<p>There is a <a href="http://www-mit.w3.org/QA/Tips/Use_h1_for_Title" rel="nofollow">W3C recommendation</a> about this topic:</p>
<blockquote>
<p><code><h1></code> is the HTML element for the
first-level heading of a document:</p>
<ul>
<li><p>If the document is basically
stand-alone, for example Things to See
and Do in Geneva, the top-level
heading is probably the same as the
title. </p></li>
<li><p>If it is part of a
collection, for example a section on
Dogs in a collection of pages about
pets, then the top level heading
should assume a certain amount of
context; just write <code><h1>Dogs</h1></code>
while the title should work in any
context: Dogs - Your Guide to Pets.</p></li>
</ul>
</blockquote>
http://stackoverflow.com/questions/264950/using-samba-for-random-access-without-mounting-the-file-system/264963#2649631Answer by xsl for Using Samba for random access without mounting the file system?xsl2008-11-05T12:13:19Z2008-11-05T13:56:05Z<p>Try to use <code>smbmount</code> to mount the filesystem without root permissions:</p>
<pre><code>mkdir ~/temp
smbmount //{server}/{share} ~/temp -o username=username={username},password={password}
</code></pre>
<p><em>Edit: Updated to use <code>smbmount</code> instead of <code>mount</code>.</em></p>
http://stackoverflow.com/questions/264623/finding-missing-xml-comments-content-with-visual-studio/264634#2646345Answer by xsl for Finding missing XML comments content with Visual Studio.xsl2008-11-05T08:48:06Z2008-11-05T08:48:06Z<p>Try <a href="http://www.ookii.org/software/xmlcommentchecker/" rel="nofollow">XML Comment Checker</a>:</p>
<blockquote>
<p>XML Comment Checker is an application
that will check the XML documentation
for a .Net assembly for omissions. It
offers a more comprehensive checking
than the C# compiler itself, and is
ideal for when you wish to check your
comments before compiling them into
real documentation, e.g using
Microsoft Sandcastle.</p>
</blockquote>
<p>From the feature list:</p>
<blockquote>
<p><strong>Check for empty sections.</strong> Optionally,
XML Comment Checker will warn if any
of the required sections or elements
are present, but empty. This is not
enabled by default</p>
</blockquote>
<p>Usage from Visual Studio:</p>
<blockquote>
<p>XML Comment Checker can be set as the
post-build event in Visual Studio to
check an assembly automatically. <strong>The
warnings emitted by XML Comment
Checker have been formatted so that
Visual Studio will recognize them</strong> and
display them in the Error List. An
example post-build command line:
"PathToCommentChecker\CommentChecker.exe"
"$(TargetPath)" -nologo
-warnemptysections</p>
</blockquote>
http://stackoverflow.com/questions/262106/what-happen-in-sql-2005-when-it-run-out-of-number-for-an-autonumber-column/262123#2621236Answer by xsl for What happen in SQL 2005 when it run out of number for an autonumber column?xsl2008-11-04T15:18:12Z2008-11-04T15:56:59Z<p><strong>You will get an overflow error when the maximum value is reached</strong>. If you use the bigint datatype with a maximum value of <code>9,223,372,036,854,775,807</code> this will most likely never be the case. </p>
<p>The error message you will get, will look like this:</p>
<pre><code>Msg 220, Level 16, State 2, Line 10
Arithmetic overflow error for data type tinyint, value = 256.
</code></pre>
<p><a href="http://forums.microsoft.com/msdn/ShowPost.aspx?PostID=4038424&SiteID=1&pageid=0" rel="nofollow">(Source)</a></p>
<p>As far as I know MS SQL provides no functionality to fill the identity gaps, so you will either have to do this by yourself or change the datatype of the identity column.</p>
<p>In addition to this you can set the start value to the smallest negative number, to get an even bigger range of values to use.</p>
<p><a href="http://mssqlserver.wordpress.com/2006/12/01/what-happens-when-my-integer-identity-runs-out-of-scope/" rel="nofollow">Here is a good blog post about this topic</a>.</p>
http://stackoverflow.com/questions/261580/overflow-when-calculating-a-const-in-vba/261615#2616155Answer by xsl for Overflow when calculating a const in VBAxsl2008-11-04T11:48:54Z2008-11-04T13:23:05Z<p>Add the <code>long</code> suffix <code>&</code> to at least one number:</p>
<pre><code>Const OVERFLOWS As Long = 10& * 60 * 60
</code></pre>
<p>Note that using the <code>CLNG</code> function to convert the values to <code>long</code> will not work, because VBA does not allow assigning the return value of a function to a constant.</p>
http://stackoverflow.com/questions/246581/resharper-has-it-changed-your-programming-life/246600#2466004Answer by xsl for Resharper, has it changed your "programming" life?xsl2008-10-29T12:27:10Z2008-10-29T12:27:10Z<p>It helped me to write better and cleaner C# code. I would definitley buy and use it again. There are a couple of good threads about this topic:</p>
<ul>
<li><a href="http://stackoverflow.com/questions/2253/is-resharper-worth-the-adjustment-is-there-a-good-tutorial-for-4">Is ReSharper worth the adjustment, is there a good tutorial for 4?</a></li>
<li><a href="http://stackoverflow.com/questions/76499/what-is-your-favorite-use-of-resharper">What is your favorite use of Resharper?</a></li>
</ul>
http://stackoverflow.com/questions/246357/whats-the-meaning-of-and-before-property-name/246411#2464117Answer by xsl for What's the meaning of '&' and '!' before property name?xsl2008-10-29T11:01:36Z2008-10-29T11:41:49Z<p>From <a href="http://www.tramontana.co.hu/wix/lesson5.php#5.3" rel="nofollow">http://www.tramontana.co.hu/wix/lesson5.php#5.3</a>:</p>
<blockquote>
<p>Prepending some special characters to
the names will give them extra
meaning:</p>
<pre><code>% environment variable (name is case insensitive)
$ action state of component
? installed state of component
& action state of feature
! installed state of feature
</code></pre>
<p>The last four can return the following
integer values:</p>
<pre><code>-1 no action to be taken
1 advertised (only for components)
2 not present
3 on the local computer
4 run from the source
</code></pre>
</blockquote>
http://stackoverflow.com/questions/233072/how-to-include-the-assembly-code-in-my-c-code-in-turbo-c/233090#2330902Answer by xsl for How to include the assembly code in my C code in Turbo C?xsl2008-10-24T11:03:25Z2008-10-24T11:03:25Z<p>One way to include assembly code is to add a wrapper function and write the assembly code in the asm block, as shown in the example below:</p>
<pre><code>void wrapper_function()
{
asm
{
/* your assembly code */
}
}
</code></pre>
http://stackoverflow.com/questions/229012/getting-absolute-path-of-a-file/229038#22903811Answer by xsl for Getting absolute path of a filexsl2008-10-23T09:03:08Z2008-10-23T09:03:08Z<p>Use <a href="http://www.opengroup.org/onlinepubs/000095399/functions/realpath.html" rel="nofollow">realpath()</a>.</p>
<blockquote>
<p>The <code>realpath()</code> function shall derive,
from the pathname pointed to by
<code>file_name</code>, an absolute pathname that
names the same file, whose resolution
does not involve '<code>.</code>', '<code>..</code>', or
symbolic links. The generated pathname
shall be stored as a null-terminated
string, up to a maximum of <code>{PATH_MAX}</code>
bytes, in the buffer pointed to by
<code>resolved_name</code>.</p>
<p>If <code>resolved_name</code> is a null pointer,
the behavior of <code>realpath()</code> is
implementation-defined.</p>
</blockquote>
<p><hr /></p>
<blockquote>
<p>The following example generates an
absolute pathname for the file
identified by the symlinkpath
argument. The generated pathname is
stored in the actualpath array.</p>
</blockquote>
<pre><code>#include <stdlib.h>
...
char *symlinkpath = "/tmp/symlink/file";
char actualpath [PATH_MAX+1];
char *ptr;
ptr = realpath(symlinkpath, actualpath);
</code></pre>
http://stackoverflow.com/questions/228975/how-to-run-c-program-in-cmd-prompt-in-windows-not-in-linux/228984#2289842Answer by xsl for how to run c program in cmd prompt in windows ( not in linuxxsl2008-10-23T08:42:52Z2008-10-23T08:42:52Z<p>See <a href="http://docs.huihoo.com/gnu/c++-tutorial/compiler/bccl.html" rel="nofollow">Compiling from the command line with Borland C++</a>.</p>
http://stackoverflow.com/questions/1420825/windows-mobile-c-wait-until-variable-changes/1420967#1420967Comment by xsl on Windows Mobile/C: Wait until variable changesxsl2009-09-15T14:23:01Z2009-09-15T14:23:01Z@Christian Adam: Thank you. With your help I was able to finish the wrapper library. I didn't notice any performance problems and createevent/setevent/waitforsingleobject were quite easy to use.http://stackoverflow.com/questions/1420825/windows-mobile-c-wait-until-variable-changesComment by xsl on Windows Mobile/C: Wait until variable changesxsl2009-09-14T11:05:28Z2009-09-14T11:05:28Z@Dirk: It doesn't matter if it runs single- or multi threaded.http://stackoverflow.com/questions/1420825/windows-mobile-c-wait-until-variable-changes/1420885#1420885Comment by xsl on Windows Mobile/C: Wait until variable changesxsl2009-09-14T11:04:01Z2009-09-14T11:04:01ZIs there something beside waiting in a loop that I could do? I expected something like semaphores.http://stackoverflow.com/questions/1063181/sta-mta-and-ole-nightmare/1063294#1063294Comment by xsl on STA, MTA and OLE nightmarexsl2009-06-30T12:24:51Z2009-06-30T12:24:51ZThank you for your suggestion. I tried that but I got the same error when I invoke an UI element that was created by an MTA thread.http://stackoverflow.com/questions/1026786/all-controls-selected-when-form-is-loaded/1026939#1026939Comment by xsl on All controls selected when form is loadedxsl2009-06-22T12:45:13Z2009-06-22T12:45:13ZThank you for your reply. I never use SelectedText anywhere in my code. Unfortunately I can't provide much code here, because the controls and the form are quite complex. Do you know any method or property that could cause a behavior like the one above?http://stackoverflow.com/questions/914461/populating-a-textbox-from-a-text-file/914481#914481Comment by xsl on Populating a TextBox from a text filexsl2009-05-27T08:02:42Z2009-05-27T08:02:42ZImagine a msglines.Length of 5. Take a piece of paper and write down the values of c and x for each iteration of your loop. http://stackoverflow.com/questions/748411/is-there-a-capitalizefirstletter-method/748420#748420Comment by xsl on Is there a CapitalizeFirstLetter method?xsl2009-04-14T21:21:09Z2009-04-14T21:21:09ZThank you, added it to the post.http://stackoverflow.com/questions/729276/compact-framework-failed-to-use-inputpanel-in-a-control/729808#729808Comment by xsl on Compact Framework: Failed to use InputPanel in a controlxsl2009-04-09T07:53:59Z2009-04-09T07:53:59ZI use CF 3.5. It seems like the fixed this bug. All of my controls are shown in the toolbox. Once again, thanks for your help.http://stackoverflow.com/questions/729276/compact-framework-failed-to-use-inputpanel-in-a-control/729808#729808Comment by xsl on Compact Framework: Failed to use InputPanel in a controlxsl2009-04-08T14:29:51Z2009-04-08T14:29:51ZTo answer your first question, no I'm not using the SIP in any code the designer would be executing. It's all commented out for test purposes.http://stackoverflow.com/questions/729276/compact-framework-failed-to-use-inputpanel-in-a-control/729808#729808Comment by xsl on Compact Framework: Failed to use InputPanel in a controlxsl2009-04-08T14:26:59Z2009-04-08T14:26:59ZNone of the controls I made were shown in the designer. After I set DesktopCompatible to true for these controls, all of them were shown, expect the control which caused the problem.http://stackoverflow.com/questions/729276/compact-framework-failed-to-use-inputpanel-in-a-control/729808#729808Comment by xsl on Compact Framework: Failed to use InputPanel in a controlxsl2009-04-08T13:19:04Z2009-04-08T13:19:04ZApparently DesktopCompatible was set to false for all the controls I made. So setting DesktopCompatible to false did not solve the problem.http://stackoverflow.com/questions/374082/dynamically-add-a-usercontrol-in-vb-netComment by xsl on Dynamically add a usercontrol in VB.netxsl2008-12-17T09:37:38Z2008-12-17T09:37:38ZDefine "dynamically".http://stackoverflow.com/questions/84209/adding-a-guideline-to-the-editor-in-visual-studio/344396#344396Comment by xsl on Adding a guideline to the editor in Visual Studioxsl2008-12-11T10:21:49Z2008-12-11T10:21:49ZI changed the link, thank you for pointing that out.http://stackoverflow.com/questions/84209/adding-a-guideline-to-the-editor-in-visual-studio/281333#281333Comment by xsl on Adding a guideline to the editor in Visual Studioxsl2008-12-05T20:53:55Z2008-12-05T20:53:55ZThank you, I added it to the post.http://stackoverflow.com/questions/84209/adding-a-guideline-to-the-editor-in-visual-studio/344396#344396Comment by xsl on Adding a guideline to the editor in Visual Studioxsl2008-12-05T20:53:22Z2008-12-05T20:53:22ZThank you, I added it to the post.