User Tim - Stack Overflow most recent 30 from stackoverflow.com 2009-12-18T09:49:59Z http://stackoverflow.com/feeds/user/35767 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1168120/fxcop-ca1034-error-why 0 FxCop - CA1034 error - WHY? Tim 2009-07-22T20:43:10Z 2009-12-14T15:39:46Z <p>I am running static code analysis with FxCop 1.36 and I keep getting <a href="http://msdn.microsoft.com/en-us/library/ms182162.aspx" rel="nofollow">warning CA1034</a>: NestedTypesShouldNotBeVisible. </p> <p>I would understand if the parent class were declared as internal or private, but it is public. Why would it be bad for TimerReset to be declared public?</p> <p>Am I missing something, or is this something that can be ignored?</p> <p>Thanks for any input!</p> <p>Here is an excerpt of the code causing this warning:</p> <pre><code>namespace Company.App.Thing { public partial class Page : XtraPage { public delegate void TimerResetDelegate(object sender, EventArgs e); private TimerResetDelegate _timerReset; public Page() { InitializeComponent(); } public TimerResetDelegate TimerReset { set { if (null != (_timerReset = value)) { checkBox.Click += new EventHandler(_timerReset); textField.Click += new EventHandler(_timerReset); textField.KeyDown += new KeyEventHandler(_timerReset); TimeField.Click += new EventHandler(_timerReset); TimeField.KeyDown += new KeyEventHandler(_timerReset); } } } } } </code></pre> http://stackoverflow.com/questions/1001694/using-this-in-c-constructors 4 Using this() in C# Constructors Tim 2009-06-16T14:04:14Z 2009-12-14T14:44:24Z <p>Hello,</p> <p>I have been trying to figure out if there are any differences between these constructors. Assuming there is a Foo() constructor that takes no arguments, are all these constructors going to have the same result?</p> <h2>Example 1</h2> <pre><code>public Foo() : this() { blah; blah; blah; } </code></pre> <h2>Example 2</h2> <pre><code>public Foo() { this(); blah; blah; blah; } </code></pre> <h2>Example 3</h2> <pre><code>public Foo() { this = new Foo(); blah; blah; blah; } </code></pre> http://stackoverflow.com/questions/1009913/close-modal-dialog-from-external-thread-c 1 Close modal dialog from external thread - C# Tim 2009-06-17T22:52:10Z 2009-06-17T23:12:25Z <p>Hello,</p> <p>I am struggling to find a way to create the Forms functionality that I want using C#.</p> <p>Basically, I want to have a modal dialog box that has a specified timeout period. It seems like this should be easy to do, but I can't seem to get it to work.</p> <p>Once I call <code>this.ShowDialog(parent)</code>, the program flow stops, and I have no way of closing the dialog without the user first clicking a button.</p> <p>I tried creating a new thread using the BackgroundWorker class, but I can't get it to close the dialog on a different thread.</p> <p>Am I missing something obvious here?</p> <p>Thanks for any insight you can provide.</p> http://stackoverflow.com/questions/972056/jquery-hide-show-not-working-in-firefox-chrome/996565#996565 0 Answer by Tim for Jquery hide/show not working in Firefox/Chrome Tim 2009-06-15T14:55:02Z 2009-06-15T14:55:02Z <p>I figured out what the problem was. The issue was that the wiki backend was already including a different (and older) version of JQuery.</p> <p>To fix this, I needed to use the core JQuery function <a href="http://docs.jquery.com/Using%5FjQuery%5Fwith%5FOther%5FLibraries" rel="nofollow">noConflict</a>().</p> <p>My code ended up looking like:</p> <pre><code>&lt;script type="text/javascript" src="jquery-1.3.1.min.js"&gt;&lt;/script&gt; &lt;script type="text/javascript"&gt; jQuery.noConflict(); jQuery(document).ready(function($){ //Do jQuery stuff using $ ... ... }); &lt;/script&gt; </code></pre> <p>This fixed all the issues of conflicting JQuery libraries.</p> http://stackoverflow.com/questions/972056/jquery-hide-show-not-working-in-firefox-chrome 0 Jquery hide/show not working in Firefox/Chrome Tim 2009-06-09T19:31:33Z 2009-06-15T14:55:02Z <p>Hello,</p> <p>I have a bit of HTML/JQuery code that only seems to be working for IE 8. I am attempting to embed a meebo chat widget into a wiki by adding some direct html code. I don't want the widget to load by default, as it takes a bit of time, so I am putting it in a div and hiding it using Jquery.</p> <p>Unfortunately, this only seems to work in Internet Explorer. In Firefox 3, when I click on the toggle button, nothing happens. When I tried in Google Chrome, the show/hide text would toggle, but the embedding widget doesn't show up.</p> <p>Does anyone know if this is an issue using JQuery, or perhaps a browser compatibility issue? There is a lot of backend wiki code that could be affecting the issue as well. For instance, the place where I embed the widget is nested in both tables and other divs. Could this be causing problems with the JQuery selectors?</p> <p>Any help would be appreciated.</p> <h2>Jquery Code:</h2> <pre><code>$(document).ready(function(){ $(".btn-slide").click(function(e){ e.preventDefault(); $("#meebo-panel").toggleClass("meebo-open").toggleClass("meebo-closed").toggleClass("meebo-hide").toggleClass("meebo-show"); $(".btn-slide").toggleClass("show-text").toggleClass("hide-text"); $(".show-hide-panel").toggleClass("green-panel").toggleClass("grey-panel"); $(".meebo-show").show(); $(".meebo-hide").hide(); $(".show-text").text("Chat with me"); $(".hide-text").text("Hide"); return false; }); }); </code></pre> <h2>My HTML:</h2> <pre><code>&lt;div class="show-hide-panel green-panel"&gt;&lt;a href="#" class="btn-slide show-text"&gt;Chat now&lt;/a&gt;&lt;/div&gt; &lt;div id="meebo-panel" class="meebo-closed meebo-hide"&gt; Test &lt;/div&gt; </code></pre> <p>EDIT: It appears that this issue occurs regardless of what is in the div. I simplified the example to include text instead, since I believe it streamlines the code a bit.</p> http://stackoverflow.com/questions/284519/can-i-allocate-a-specific-number-of-bits-in-c 5 Can I allocate a specific number of bits in C? Tim 2008-11-12T16:33:20Z 2009-05-03T19:14:43Z <p>Hello,</p> <p>I am trying to store a large amount of boolean information that is determined at run-time. I was wondering what the best method might be.</p> <p>I have currently been trying to allocate the memory using: </p> <p><code>pStatus = malloc((&lt;number of data points&gt;/8) + 1);</code> </p> <p>thinking that this will give me enough bits to work with. I could then reference each boolean value using the pointer in array notation:</p> <p><code>pStatus[element]</code></p> <p>Unfortunately this does not seem to be working very well. First, I am having difficulty initializing the memory to the integer value <code>0</code>. Can this be done using <code>memset()</code>? Still, I don't think that is impacting why I crash when trying to access <code>pStatus[element]</code>. </p> <p>I am also not entirely convinced that this approach is the best one to be using. What I really want is essentially a giant bitmask that reflects the status of the boolean values. Have I missed something?</p> http://stackoverflow.com/questions/274865/pointer-question-in-c 8 Pointer question in C Tim 2008-11-08T16:03:41Z 2009-03-23T18:57:45Z <p>I am modifying some code and came across a declaration that I am having trouble understanding:</p> <pre><code>int *userMask[3][4] = {0}; </code></pre> <p>What exactly is this pointing to? Is it a matrix where every element is a pointer? Or is it pointing to a matrix of size [3][4]?</p> <p>Thanks</p> http://stackoverflow.com/questions/547679/alternate-method-for-typecasting-in-c 1 Alternate method for typecasting in C? Tim 2009-02-13T21:07:02Z 2009-02-13T21:18:09Z <p>I came across this line in some code and can't find the syntax defined anywhere:</p> <pre><code>*(float *)csCoord.nX = lImportHeight* .04f; /* magic number to scale font size */ </code></pre> <p>If I remove the <code> f </code> from <code> .04f </code> then the compiler gives a warning about possible data loss due to a conversion from 'double' to 'float'. I assume the <code> f </code> is doing some sort of typecasting.</p> <p>Has anyone seen this before? Where is this defined in the C standard?</p> http://stackoverflow.com/questions/545584/regular-expressions-with-matching-brackets/546743#546743 1 Answer by Tim for Regular expressions with matching brackets Tim 2009-02-13T16:59:25Z 2009-02-13T16:59:25Z <p>The <a href="http://en.wikipedia.org/wiki/Regular_language" rel="nofollow">formal language</a> that defines brace matching is not a regular language. Therefore, you cannot use a regular expression to solve your problem.</p> <p>The problem is that you need some way to count the number of opening braces you have already encountered. Some regular expression engines support extended features, such as peeking, which could be used to solve your problem, but these can be tough to deal with. You might be better off writing a simple parser for this task.</p> http://stackoverflow.com/questions/541705/is-iftrue-a-good-idea-in-c 7 Is if(TRUE) a good idea in C? Tim 2009-02-12T15:12:06Z 2009-02-13T05:39:48Z <p>In the C programming language, it is my understanding that variables can only be defined at the beginning of a code block, and the variable will have the scope of the block it was declared in. With that in mind, I was wondering whether it is considered bad practice to artificially create a new scope as in this example:</p> <pre><code>void foo() { ... Do some stuff ... if(TRUE) { char a; int b; ... Do some more stuff ... } ... Do even more stuff ... } </code></pre> <p>Assuming TRUE is set to 1 in a macro definition, would this code be considered 'good code' or does it make seasoned programmers cringe at the very thought of it?</p> <p>Thanks for your input!</p> <p>EDIT: In response to some of the answers, the code I am working with needs to work with some pretty ancient legacy systems. While it would be nice to operate on an assumption of C99, we really can't guarantee that they will have it.</p> http://stackoverflow.com/questions/544031/problem-with-regular-expression-to-remove-html-tags/544060#544060 -2 Answer by Tim for Problem With Regular Expression to Remove HTML Tags Tim 2009-02-12T23:40:29Z 2009-02-12T23:40:29Z <p>You could use a multi-pass system to get the results you are looking for. </p> <p>After running your regular expression, run an expression to convert <strong>&8220;</strong> to quotes and another to convert <strong>&8221;</strong> to single quotes.</p> http://stackoverflow.com/questions/515441/commonly-used-keyboard-shortcuts-in-web-apps/517709#517709 3 Answer by Tim for Commonly used keyboard shortcuts in web apps Tim 2009-02-05T20:14:59Z 2009-02-05T20:14:59Z <p>I think the biggest key is to not create hotkeys that would clash with the default behavior of common operating systems or web browsers.</p> <p>This isn't a web app, but the a plugin I use for Visual Studio has the hotkey Alt+3 to open a special window. Unfortunately, this is supposed to open the "watch" window by default.</p> <p>This are the kinds of things that will drive your viewers mad... </p> http://stackoverflow.com/questions/506492/how-to-open-files-from-explorer-into-different-tabs/507525#507525 1 Answer by Tim for How to open files from explorer into different tabs. Tim 2009-02-03T15:23:08Z 2009-02-03T20:58:32Z <p>I am not quite sure what you mean in this question. Are you trying to open Windows Explorer windows into one window with tabs? If that is the case, then I recommend you look into <a href="http://qttabbar.wikidot.com/" rel="nofollow">QT TabBar</a>, which extends Windows Explorer to allow for such behavior.</p> <p>Or perhaps you are trying to have a link open to a new tab in a web browser. If that is the case, this behavior is defined by the web browser itself. For Internet Explorer 7, you can set this behavior under <strong>Tools</strong> > <strong>Internet Options</strong>. </p> <p>In the General tab, click the Settings button next to the "Tabs" section. You will want to set the "Open links from other programs in:" option to open a new tab.</p> <p>Keep in mind that this behavior is defined by each user, and you can't ever make any guarantees that they will have the same browser settings as you do.</p> <p><hr /></p> <p>After reading your comments, I think I understand a bit better. It sounds like you want your application to only allow one instance at a time. Since you tagged this post C#, I will assume that is what you are writing your program in.</p> <p>Codeproject.com has a great <a href="http://www.codeproject.com/KB/cs/singleinstance.aspx" rel="nofollow">tutorial</a> on how to make your program only allow a single instance.</p> <p>Here is a snippet of code from their site:</p> <pre><code>static void Main() { if(SingleInstance.SingleApplication.Run() == false) { return; } //Write your program logic here } </code></pre> <p>You would want to write code just before the return statement to have the existing instance open the file in a new tab.</p> <p>If you are able to provide detailed information about what your program is doing, we might be able to help you with some of the specifics.</p> http://stackoverflow.com/questions/493650/fread-example-from-c-reference 1 fread example from C++ Reference Tim 2009-01-29T22:01:33Z 2009-01-29T22:22:08Z <p>I often use the website www.cplusplus.com as a reference when writing C code.</p> <p>I was reading the example cited on the page for <a href="http://www.cplusplus.com/reference/clibrary/cstdio/fread.html" rel="nofollow">fread</a> and had a question.</p> <p>As an example they post:</p> <pre><code>/* fread example: read a complete file */ #include &lt;stdio.h&gt; #include &lt;stdlib.h&gt; int main () { FILE * pFile; long lSize; char * buffer; size_t result; pFile = fopen ( "myfile.bin" , "rb" ); if (pFile==NULL) {fputs ("File error",stderr); exit (1);} // obtain file size: fseek (pFile , 0 , SEEK_END); lSize = ftell (pFile); rewind (pFile); // allocate memory to contain the whole file: buffer = (char*) malloc (sizeof(char)*lSize); if (buffer == NULL) {fputs ("Memory error",stderr); exit (2);} // copy the file into the buffer: result = fread (buffer,1,lSize,pFile); if (result != lSize) {fputs ("Reading error",stderr); exit (3);} /* the whole file is now loaded in the memory buffer. */ // terminate fclose (pFile); free (buffer); return 0; } </code></pre> <p>It seems to me that that if result != lSize, then free(buffer) will never get called. Would this be a memory leak in this example? </p> <p>I have always thought the examples on their site are of a very high quality. Perhaps I am not understanding correctly?</p> http://stackoverflow.com/questions/489933/error-parsing-string-in-c-left-operand-must-be-l-value 2 Error parsing string in C " left operand must be l-value" Tim 2009-01-28T23:48:35Z 2009-01-29T14:15:35Z <p>I am faced with the need to pull out the information in a string of the format "blah.bleh.bloh" in ANSI C. Normally I would use strok() to accomplish this, but since I am getting this string via strtok, and strtok is not thread-safe, I cannot use this option.</p> <p>I have written a function to manually parse the string. Here is a snippit:</p> <pre><code>for(charIndex=0; charIndex &lt; (char)strlen(theString); charIndex++) { if(theString[charIndex] == '.') { theString[charIndex] = '\0'; osi_string_copy_n(Info[currentInfoIndex], 1024, theString, charIndex + 1 ); currentInfoIndex++; theString = &amp;theString[charIndex + 1]; } charIndex++; } </code></pre> <p>As you can see, I try to find the first occurrence of '.' and make note of the index of the character. Then I convert the '.' to a null char and copy the first string to an array.</p> <p>Then I want to change the pointer to start just after where the delimiter was found, essentially giving me a new shorter string.</p> <p>Unfortunately I am getting an error on the line:</p> <pre><code>theString = &amp;theString[charIndex + 1]; </code></pre> <p>The error is:</p> <pre><code>error C2106: '=' : left operand must be l-value </code></pre> <p>Why am I not allowed to move the pointer like this? Is my method flawed? Perhaps someone has a better idea for me to parse this string.</p> <p>EDIT: In response to the comments, the declaration for theString is:</p> <pre><code>char theString[1024] = {0}; </code></pre> <p>Also, I am guaranteed that theString will never be more than 1024 characters.</p> http://stackoverflow.com/questions/481673/make-a-copy-of-a-char 2 Make a copy of a char* Tim 2009-01-26T22:39:23Z 2009-01-27T23:13:31Z <p>I have a function that accepts a char* as one of its parameters. I need to manipulate it, but leave the original char* intact. Essentially, I want to create a working copy of this char*. It seems like this should be easy, but I am really struggling.</p> <p>My first (naive) attempt was to create another char* and set it equal to the original:</p> <pre><code>char* linkCopy = link; </code></pre> <p>This doesn't work, of course, because all I did was cause them to point to the same place.</p> <p>Should I use strncpy to accomplish this?</p> <p>I have tried the following, but it causes a crash:</p> <pre><code>char linkCopy[sizeof(link)] = strncpy(linkCopy, link, sizeof(link)); </code></pre> <p>Am I missing something obvious...?</p> <p>EDIT: My apologies, I was trying to simplify the examples, but I left some of the longer variable names in the second example. Fixed.</p> http://stackoverflow.com/questions/483573/what-to-do-with-a-bad-job-reference/483739#483739 0 Answer by Tim for What to do with a bad job reference? Tim 2009-01-27T15:03:08Z 2009-01-27T15:03:08Z <p>I don't doubt that you are a good candidate for these positions, but you should keep in mind that the job market is currently seeing some of its worst times.</p> <p>There are many companies who are working their hardest not to lay people off, and it is hard for them to justify hiring a new employee when the company is trying to conserve resources.</p> <p>The best advice I can give is to be diligent. Friendly phone calls to check up on the status of your application are a very important part of the application process.</p> http://stackoverflow.com/questions/474733/unexpected-output-copying-file-in-c 3 Unexpected output copying file in C Tim 2009-01-23T21:49:28Z 2009-01-23T23:06:26Z <p>In another question, the <a href="http://stackoverflow.com/questions/174531/easiest-way-to-get-files-contents-in-c#174552">accepted answer</a> shows a method for reading the contents of a file into memory.</p> <p>I have been trying to use this method to read in the content of a text file and then copy it to a new file. When I write the contents of the buffer to the new file, however, there is always some extra garbage at the end of the file. Here is an example of my code:</p> <pre><code>inputFile = fopen("D:\\input.txt", "r"); outputFile = fopen("D:\\output.txt", "w"); if(inputFile) { //Get size of inputFile fseek(inputFile, 0, SEEK_END); inputFileLength = ftell(inputFile); fseek(inputFile, 0, SEEK_SET); //Allocate memory for inputBuffer inputBuffer = malloc(inputFileLength); if(inputBuffer) { fread (inputBuffer, 1, inputFileLength, inputFile); } fclose(inputFile); if(inputBuffer) { fprintf(outputFile, "%s", inputBuffer); } //Cleanup free(inputBuffer); fclose(outputFile); } </code></pre> <p>The output file always contains an exact copy of the input file, but then has the text "MPUTERNAM2" appended to the end. Can anyone shed some light as to why this might be happening?</p> http://stackoverflow.com/questions/461809/regex-match-replace-help/462443#462443 0 Answer by Tim for RegEx match replace help Tim 2009-01-20T18:19:42Z 2009-01-20T18:19:42Z <p>I don't think I quite understand what you are trying to do. Why can't you simply search for: </p> <p><code>http://www.foo.com/MountainCommunities/Lifestyles/5/VacationHomeRentals.aspx</code> </p> <p>and replace it with:</p> <p><code>http://www.foo.com/mountain-lifestyle/Vacation-Home-Rentals.aspx</code> ? </p> <p>Or is this a specific example of a patten you are trying to transform?</p> http://stackoverflow.com/questions/254149/how-do-you-write-a-basic-operating-system/452329#452329 1 Answer by Tim for How do you write a basic operating system? Tim 2009-01-16T22:47:35Z 2009-01-16T22:47:35Z <p><img src="http://ecx.images-amazon.com/images/I/411E3CQQYZL._SS500_.jpg" alt="textbook" /></p> <p>I used <em>Operating Systems and Middleware: Supporting Controlled Interaction</em> when I was in college. It is probably one of the best textbooks on the subject.</p> http://stackoverflow.com/questions/379091/automated-testing-net-gallio 3 Automated testing .NET (Gallio?) Tim 2008-12-18T20:14:54Z 2009-01-13T06:39:32Z <p>I am working on a software development project that uses code written primarily in C and C#. Currently, the responsibility of testing falls mostly on developers as they change the code. </p> <p>I am interested in implementing an automated testing framework to help us improve the quality of our code. In particular, it would be great to have automated testing that ran every time code was submitted to version control. </p> <p>I do not have much experience with automated testing (or unit testing for that matter). Has anyone done development using a testing framework for C/C#, and if so, what might be some hurdles we would face to implement it company-wide and on a rather large existing code base?</p> <p>In particular, I have been looking at how <a href="http://www.gallio.org/" rel="nofollow">Gallio</a> might be used. Any comments on this particular product would be appreciated.</p> <p><B>Additional Information</b>:</p> <p><a href="http://stackoverflow.com/questions/223421/adding-unit-tests-to-an-existing-project">http://stackoverflow.com/questions/223421/adding-unit-tests-to-an-existing-project</a><br /> <a href="http://stackoverflow.com/questions/342693/unit-testing-legacy-web-apps">http://stackoverflow.com/questions/342693/unit-testing-legacy-web-apps</a><br /> <a href="http://stackoverflow.com/questions/167079/moving-existing-code-to-test-driven-development">http://stackoverflow.com/questions/167079/moving-existing-code-to-test-driven-development</a><br /> <a href="http://stackoverflow.com/questions/127687/favorite-net-unit-testing-framework">http://stackoverflow.com/questions/127687/favorite-net-unit-testing-framework</a></p> http://stackoverflow.com/questions/316461/what-are-the-best-programming-articles/320943#320943 4 Answer by Tim for What are the best programming articles? Tim 2008-11-26T14:46:40Z 2008-11-26T14:46:40Z <p><a href="http://catb.org/~esr/writings/cathedral-bazaar/cathedral-bazaar/" rel="nofollow">The Cathedral and the Bazaar</a> has several fun articles about the pioneering of Linux in the 90's.</p> http://stackoverflow.com/questions/316461/what-are-the-best-programming-articles/318112#318112 4 Answer by Tim for What are the best programming articles? Tim 2008-11-25T17:02:20Z 2008-11-25T17:02:20Z <p>Smashing Magazine's <a href="http://www.smashingmagazine.com/2008/01/31/10-principles-of-effective-web-design/" rel="nofollow">10 Principles Of Effective Web Design</a></p> http://stackoverflow.com/questions/284519/can-i-allocate-a-specific-number-of-bits-in-c/284628#284628 0 Answer by Tim for Can I allocate a specific number of bits in C? Tim 2008-11-12T17:03:39Z 2008-11-12T17:03:39Z <p>See the comments under the initial question. Thanks for your help S. Lott.</p> http://stackoverflow.com/questions/274865/pointer-question-in-c/274931#274931 1 Answer by Tim for Pointer question in C Tim 2008-11-08T16:52:21Z 2008-11-08T16:52:21Z <p>I guess my question is how <code>userMask[2][maskElement][user]</code> can work when it is declared as <code>int</code>. Wouldn't userMask have to be <code>int[]</code> for that to work properly? I must not be understanding this right...</p> <p>On a side note, thanks for your suggestion about cdecl Robert. However, does anyone know how to use it in an XP command prompt? All I can get is syntax error :(</p> http://stackoverflow.com/questions/274865/pointer-question-in-c/274883#274883 0 Answer by Tim for Pointer question in C Tim 2008-11-08T16:17:39Z 2008-11-08T16:17:39Z <p>If that is the case, I am still slightly confused. The userMask array is being used later as:</p> <pre><code>if(userMask[2][maskElement][user] &amp;&amp; blah) result = true; </code></pre> <p>How can that pointer to an int be referenced by [user] like this? It is not an int array, it is an int, correct?</p> http://stackoverflow.com/questions/1478022/c-get-a-controls-position-on-a-form/1478064#1478064 Comment by Tim on C# Get a control's position on a form Tim 2009-10-13T20:33:30Z 2009-10-13T20:33:30Z How does this help for getting the control's absolute position? You have to pass in a Point object to PointToScreen(), which doesn't make sense in this case. http://stackoverflow.com/questions/1001694/using-this-in-c-constructors/1001717#1001717 Comment by Tim on Using this() in C# Constructors Tim 2009-06-16T14:22:08Z 2009-06-16T14:22:08Z Is this still assuming there is a parameterless constructor for Foo? If we defined a parameterless constructor that set x, wouldn't it behave as we would expect? http://stackoverflow.com/questions/1001694/using-this-in-c-constructors/1001717#1001717 Comment by Tim on Using this() in C# Constructors Tim 2009-06-16T14:14:59Z 2009-06-16T14:14:59Z Thanks for help everyone! http://stackoverflow.com/questions/1001694/using-this-in-c-constructors/1001717#1001717 Comment by Tim on Using this() in C# Constructors Tim 2009-06-16T14:09:24Z 2009-06-16T14:09:24Z I had always thought that : was used for inheritance - is there any inheritance happening in Example 1, or is this just an overloaded usage of the colon? http://stackoverflow.com/questions/972056/jquery-hide-show-not-working-in-firefox-chrome Comment by Tim on Jquery hide/show not working in Firefox/Chrome Tim 2009-06-09T21:31:54Z 2009-06-09T21:31:54Z Thanks for the suggestion Benny. It looks like it is an issue even with plain text. I've updated the example to use text, as you've now eliminated this being a problem with the embedding. http://stackoverflow.com/questions/972056/jquery-hide-show-not-working-in-firefox-chrome/972115#972115 Comment by Tim on Jquery hide/show not working in Firefox/Chrome Tim 2009-06-09T21:28:18Z 2009-06-09T21:28:18Z Nice catch, Ali - this was actually just a typo when I was trying to obfuscate my code a bit. The real version doesn't have this problem. in fact - I can replace all the embedding code with simple text and it will exhibit the same issue. http://stackoverflow.com/questions/547679/alternate-method-for-typecasting-in-c/547732#547732 Comment by Tim on Alternate method for typecasting in C? Tim 2009-02-13T21:32:28Z 2009-02-13T21:32:28Z No, it compiles fine. I just had never seen that syntax before and wanted to make sure I understood it. http://stackoverflow.com/questions/541705/is-iftrue-a-good-idea-in-c/541725#541725 Comment by Tim on Is if(TRUE) a good idea in C? Tim 2009-02-12T15:22:03Z 2009-02-12T15:22:03Z ... function would clutter the function's existing variables http://stackoverflow.com/questions/541705/is-iftrue-a-good-idea-in-c/541725#541725 Comment by Tim on Is if(TRUE) a good idea in C? Tim 2009-02-12T15:21:29Z 2009-02-12T15:21:29Z Is this ever used in production code? My thought is that I want to have access to all the variables in the existing function, but a few new variables apply to only a small section. A function would mean I would have to pass a whole bunch of variables, and adding the variables to the main... http://stackoverflow.com/questions/438540/projecteuler-sum-combinations/519941#519941 Comment by Tim on (ProjectEuler) Sum Combinations Tim 2009-02-11T14:29:28Z 2009-02-11T14:29:28Z I believe the OP was asking for hints, not the answer itself. http://stackoverflow.com/questions/489933/error-parsing-string-in-c-left-operand-must-be-l-value/489956#489956 Comment by Tim on Error parsing string in C " left operand must be l-value" Tim 2009-01-29T16:48:39Z 2009-01-29T16:48:39Z Ahh, I understand, now. This would be a good solution to my problem. However, I actually ended up using an internally developed version of strtok that is thread-safe. Thanks for your input! http://stackoverflow.com/questions/101745/multiple-monitors-with-visual-studio-2008/101753#101753 Comment by Tim on Multiple Monitors with Visual Studio 2008 Tim 2009-01-29T15:02:09Z 2009-01-29T15:02:09Z There is a Windows utility program called Actual Window Manager (<a href="http://www.actualtools.com/" rel="nofollow">actualtools.com</a>) that will allow you to maximize windows across multiple monitors. You can also set up program-specific settings to make certain programs always open that way by default. http://stackoverflow.com/questions/489933/error-parsing-string-in-c-left-operand-must-be-l-value/489956#489956 Comment by Tim on Error parsing string in C " left operand must be l-value" Tim 2009-01-29T14:19:22Z 2009-01-29T14:19:22Z If I declare theString as a pointer, won't I then have to malloc space for it? Part of the reason I was declaring it with defined space is so that I wouldn't have to worry about deallocating the memory in a complicated series of if then else statements later. http://stackoverflow.com/questions/481673/make-a-copy-of-a-char/481685#481685 Comment by Tim on Make a copy of a char* Tim 2009-01-26T23:52:38Z 2009-01-26T23:52:38Z I do not know of any examples, but I am required to develop to the ANSI C standard, which strdup is not a part of. I appreciate your suggestion, but I am giving credit to litb as I used his answer to solve my problem. http://stackoverflow.com/questions/481673/make-a-copy-of-a-char/481685#481685 Comment by Tim on Make a copy of a char* Tim 2009-01-26T23:37:55Z 2009-01-26T23:37:55Z strdup is not standard C. It will not work on all systems.