User Serge - appTranslator - Stack Overflow most recent 30 from stackoverflow.com 2009-11-28T10:14:28Z http://stackoverflow.com/feeds/user/12379 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1791453/how-to-connect-to-an-sqlitece-database-on-a-windows-mobile-phone/1791495#1791495 0 Answer by Serge - appTranslator for How to connect to an SQLite(CE) database on a windows mobile phone? Serge - appTranslator 2009-11-24T17:07:46Z 2009-11-25T08:27:16Z <pre><code>SqlCeConnection connection = new SqlCeConnection(); connection.ConnectionString = "Data Source =" + filename + ";password=" + password; connection.Open(); </code></pre> <p>Of course, the <code>password=&lt;password&gt;</code> part is required only if you protected the DB, which is not the case by default.</p> <p>BTW, this isn't SQLite, it's SQLServer CE (or <em>SQLCE</em> for short).</p> <p>EDIT: If you only specify the file's name (no path), make sure that the file is in the current <strong>working</strong> directory. Obviously, according to the error message, there's something wrong with the way you specify the filename. My bet is on the path, just specify it and you should step forward. </p> <p>EDIT2: In order to check if the problem is in your program or in the DB file, <a href="http://www.primeworks-mobile.com/Products/DataPortConsole.html" rel="nofollow">download DataPort Console</a> and use it to open your DB in the device. That wayn you can validate that your DB can be accessed correctly.</p> http://stackoverflow.com/questions/398332/what-backup-strategy-do-you-use-for-your-code/1793529#1793529 0 Answer by Serge - appTranslator for What backup strategy do you use for your code? Serge - appTranslator 2009-11-24T22:56:56Z 2009-11-24T22:56:56Z <p>Online (Internet) backups are an important part of the process. </p> <p>All kind of backups to external drives are doomed to failure unless they are made by an appointed personal (such as a secreatry). If you're a very small shop (or a µ-ISV, such as me), this is not an option. Even then, where is the external drive kept? A safe with fire protection is the only possible good answer. Storing them offsite is not good: People WILL forget to bring it back to office for the periodical back-up.</p> <p>Backups to NAS are IMHO a better solution than external drives. But the day the building is on fire, offsite backups are your only chance to stay alive. </p> <p>I personnaly use <a href="http://www.mozy.com" rel="nofollow">Mozy</a> to back up the main local directories in addition to the SCC DB. </p> <p>Needless to say that AES-256 or similar encryption is a must have for storage of your source code on someone else's hard drives. Mozy and all its serious competitors offer it.</p> http://stackoverflow.com/questions/1793256/how-to-embed-multilanguage-resx-or-resources-files-in-single-exe/1793322#1793322 0 Answer by Serge - appTranslator for How to embed multilanguage *.resx (or *.resources) files in single EXE? Serge - appTranslator 2009-11-24T22:18:30Z 2009-11-24T22:18:30Z <p>You didn't find it because it's not the way the .NET framework works. .NET expects satellite DLLs in specifically named location (iow directories named after the language of the resources it contains. eg. <code>de</code>, <code>de-DE</code>, <code>chs</code>,...). If you don't work that way, .NET won't be able to apply its magic (which is to automatically pick the correct resource according to the current UI culture: <code>Thread.CurrentThread.CurrentUICulture</code>).</p> http://stackoverflow.com/questions/1793249/create-virtual-methods-using-xsd-exe/1793270#1793270 0 Answer by Serge - appTranslator for Create virtual methods using xsd.exe Serge - appTranslator 2009-11-24T22:08:03Z 2009-11-24T22:08:03Z <p>It seems odd to me that you need to modify the serialization code. If you need to override properties, can't you simply create new properties that kind of wrap the existing ones yet add new behaviour? Or did I miss the point.</p> http://stackoverflow.com/questions/980439/why-is-object-gettype-a-method-instead-of-a-property 4 Why is Object.GetType() a method instead of a property? Serge - appTranslator 2009-06-11T10:43:42Z 2009-11-21T18:23:52Z <p>From a design perspective, I wonder why the .NET creators chose System.Object.GetType() instead of a System.Object.Type read-only property.</p> <p>Is it just a (very minor) design flaw or is there rationale behind there? Any lights welcome.</p> http://stackoverflow.com/questions/1769854/sending-email-through-net-code/1770094#1770094 0 Answer by Serge - appTranslator for Sending Email through .NET code Serge - appTranslator 2009-11-20T12:12:26Z 2009-11-20T12:12:26Z <p>Bear in mind that some ISPs (including mine) force their clients to use their SMTP server (as a relay). Spamming protection is the reason. </p> <p>So you should avoid sending e-mail to the Internet from a client application, unless you give user a chance to specify his SMTP hostname or your app relies on the user's e-mail software (MAPI,...).</p> http://stackoverflow.com/questions/1755439/why-does-adding-two-shorts-return-an-int/1755487#1755487 1 Answer by Serge - appTranslator for Why does adding two shorts return an int? Serge - appTranslator 2009-11-18T11:51:23Z 2009-11-18T11:51:23Z <p>It looks like the behaviour was copied from C.</p> <p>I've never been able to find a good reason for it. No, overflows are not the explanation:</p> <ul> <li>int + int = int</li> <li>short &amp; short = int even though there's no overflow possibility in a bitwise operation!</li> </ul> <p><a href="http://blogs.msdn.com/ericlippert/" rel="nofollow">Eric Lippert</a> may know the answer.</p> http://stackoverflow.com/questions/1749972/determine-the-current-hinstance/1750114#1750114 3 Answer by Serge - appTranslator for Determine the current HINSTANCE? Serge - appTranslator 2009-11-17T16:36:21Z 2009-11-18T08:42:59Z <p><a href="http://blogs.msdn.com/oldnewthing/archive/2004/10/25/247180.aspx" rel="nofollow">__ImageBase</a> is your friend, especially in the case of libraries.</p> <p>Note that the linked blog post (by R. Chen, although not the same post as the one linked by Brian Bondy) is worth reading (including the comments!)</p> http://stackoverflow.com/questions/1747744/how-do-i-split-a-large-mfc-project-into-smaller-projects/1747872#1747872 0 Answer by Serge - appTranslator for How do I split a large MFC project into smaller projects Serge - appTranslator 2009-11-17T10:19:49Z 2009-11-17T10:19:49Z <p>You can remove all resource DLL management by using <a href="http://www.apptranslator.com" rel="nofollow">appTranslator</a>: The tool keeps track of all translations in its project file and creates the resource DLLs for you. One of the benefits is that you don't have to manage all the translated .rc files and associated resource DLL projects in Visual Studio.</p> <p><em>Disclaimer: I am the author of appTranslator.</em></p> http://stackoverflow.com/questions/1741839/setup-email-server-to-respond-to-emails-sent-to-an-account/1741891#1741891 0 Answer by Serge - appTranslator for Setup email server to respond to emails sent to an account Serge - appTranslator 2009-11-16T12:28:52Z 2009-11-16T12:28:52Z <p>FWIW, I think this question should be posed on <a href="http://serverfault.com">serverfault.com</a> rather than here.</p> <p>I confirm this is something most shared hostings can't do: You need to be able to create a scheduled task/cron job which checks your e-mail account every x minutes.</p> <p>You might consider a virtual server hosting. A bit more pricey but much more flexible.</p> <p>The script would be written in php on Linux or in VBS/JScript/.NET on Windows. I've written such a script in JScript on Windows, using a component that implements POP3.</p> http://stackoverflow.com/questions/1740167/mfc-com-or-atl-com-activex/1741557#1741557 1 Answer by Serge - appTranslator for MFC COM or ATL COM (ActiveX) Serge - appTranslator 2009-11-16T11:18:27Z 2009-11-16T11:18:27Z <p>MFC is an easier route if you're a newbie in COM stuff: The wizards are better and more helpful. But it's far less flexible than ATL, which is probably not an issue if you simply have a couple of simpole interfaces to implement.</p> <p>Also, IIRC MFC doesn't support dual interfaces. Dual interfaces are interesting in 2 cases: - Performance is an issue. Such as a call to a short method executed millions of times. - The object users are programmed in C++. Calling a native interface is way easier in C++ than calling an automation interface.</p> <p>In conclusion, dual interfaces are cool but they are really interesting only if you can have them for free. Which means you use a framework which supports them. If you plan on <em>much</em> COM-based work, it's interesting to investigate in ATL and deeper COM knowledge. If you just have to provide a couple of simple MFC-based objects, just stick to MFC.</p> http://stackoverflow.com/questions/1695474/localization-of-string-literals/1714919#1714919 1 Answer by Serge - appTranslator for Localization of string literals Serge - appTranslator 2009-11-11T12:36:08Z 2009-11-11T12:36:08Z <p>You could use my <a href="http://www.codeproject.com/KB/string/stringtable.aspx" rel="nofollow">CMsg() and CFMsg()</a> wrappers around the LoadString() API. They make your life easier to load and format the strings pulled out of the resources.</p> <p>And of course, <a href="http://www.apptranslator.com" rel="nofollow">appTranslator</a> is your best friend to translate your resources ;-)</p> <p><em>Disclaimer: I'm the author of appTranslator.</em></p> http://stackoverflow.com/questions/1661753/how-do-i-reliably-detect-when-the-mouse-leaves-a-control/1661767#1661767 0 Answer by Serge - appTranslator for How do I reliably detect when the mouse leaves a control? Serge - appTranslator 2009-11-02T14:56:27Z 2009-11-02T14:56:27Z <p>MouseLeave fires only if the control owns the mouse capture.</p> http://stackoverflow.com/questions/369905/wininet-timeout-management-in-ftp-put 1 WinInet: timeout management in FTP put Serge - appTranslator 2008-12-15T22:25:10Z 2009-11-02T07:51:16Z <p>Hi All,</p> <p>My program puts a file into a remote host using HTTP. For some unavoidable reasons, the remote hosts needs some time to acknowledge the final packet of the data transmission. More time than the default timeout, which according to my experience is around 30 seconds. Therefore I wanted to increase the timeout to 5 minutes, using this code:</p> <pre><code>DWORD dwTimeout= 300000; // 5 minutes pFtpConnection-&gt;SetOption( // KB176420: this has no effect on some INTERNET_OPTION_SEND_TIMEOUT, dwTimeout); // old versions of IE. pFtpConnection-&gt;SetOption( INTERNET_OPTION_RECEIVE_TIMEOUT, dwTimeout); pFtpConnection-&gt;SetOption( // NB: Docs say these 2 are not implemented. INTERNET_OPTION_DATA_SEND_TIMEOUT, dwTimeout); pFtpConnection-&gt;SetOption( // our own tests show that they are! INTERNET_OPTION_DATA_RECEIVE_TIMEOUT, dwTimeout); </code></pre> <p>This is MFC code which boils down to calling</p> <pre><code>InternetOption(hConnection, INTERNET_XXX, &amp;dwTimeout, sizeof(dwTimeout)) </code></pre> <p>The problem is that this code apparently fails to modify the timeout on a non negligeable proportion of computers where the program is used.</p> <p>How can I reliably set the data connection timeout?</p> <p>TIA,</p> <p>Serge Wautier. </p> http://stackoverflow.com/questions/369905/wininet-timeout-management-in-ftp-put/1659931#1659931 0 Answer by Serge - appTranslator for WinInet: timeout management in FTP put Serge - appTranslator 2009-11-02T07:51:16Z 2009-11-02T07:51:16Z <p>It looks like this WinInet isue can'tbe solved reliably.</p> <p>I eventually switched from WinInet to <a href="http://www.codeproject.com/KB/MFC/UltimateTCPIP.aspx" rel="nofollow">Ultimate TCP/IP</a>.</p> http://stackoverflow.com/questions/1650964/compile-errors-w-wininet-winhttp-in-mfc-application/1654146#1654146 0 Answer by Serge - appTranslator for compile errors w/wininet & winhttp in MFC application Serge - appTranslator 2009-10-31T11:39:33Z 2009-10-31T11:39:33Z <p>Most likely a clash between winhttp.h and wininet.h.</p> http://stackoverflow.com/questions/1642021/resources-in-a-static-lib-file-mfc/1648783#1648783 2 Answer by Serge - appTranslator for Resources in a static lib file - MFC Serge - appTranslator 2009-10-30T09:23:58Z 2009-10-30T09:23:58Z <p>You can't store resources (.rc files contents) in a static library. And since you can have only one "main" .rc file, all other .rc files mst be included in that one using an <code>#include</code> statement, such as explained by Smashery (Edit: Oh! Smashery, you are the OP!).</p> http://stackoverflow.com/questions/1638600/change-language-in-mobile-application/1646826#1646826 1 Answer by Serge - appTranslator for Change language in mobile application Serge - appTranslator 2009-10-29T21:56:21Z 2009-10-29T21:56:21Z <p>As opposed to the Desktop Framework, you can't change <code>CurrentThread.UICulture</code> programmatically. The .NET Compact Framework will only follow the user's preference.</p> http://stackoverflow.com/questions/426712/have-you-ever-bought-a-commercial-implementation-of-a-programming-language-for-pe/1646781#1646781 0 Answer by Serge - appTranslator for Have you ever bought a commercial implementation of a programming language for personal programming projects? Serge - appTranslator 2009-10-29T21:48:31Z 2009-10-29T21:48:31Z <p>My Dad bought me a copy of Turbo Pascal 3 in 1983 (I was 16 back then). I don't think it would be necessary to buy an development environment for personal projects today but if one was worth it and reasonably priced, I wouldn't hesitate.</p> http://stackoverflow.com/questions/1629944/does-mfc-have-a-built-in-grid-control/1630287#1630287 1 Answer by Serge - appTranslator for Does MFC have a built in grid control? Serge - appTranslator 2009-10-27T11:47:37Z 2009-10-27T11:47:37Z <p><a href="http://www.dundas.com" rel="nofollow">Dundas</a> has thrown some of its (excellent) components in the public domain. Their <a href="http://www.codeproject.com/KB/MFC/UltimateGrid.aspx" rel="nofollow">Ultimate Grid</a> is available on <a href="http://www.codeproject.com/KB/MFC/UltimateGrid.aspx" rel="nofollow">CodeProject</a>.</p> http://stackoverflow.com/questions/1624671/substitute-the-timer/1624909#1624909 0 Answer by Serge - appTranslator for Substitute the timer. Serge - appTranslator 2009-10-26T13:49:48Z 2009-10-27T09:41:02Z <p><code>Control.BeginInvoke()</code> is your friend if your app has a GUI. You give it a delegate to your function and .NET will call after the current event handler finished executing.</p> <p>NB: As opposed to Delegate.BeginInvoke(), Control.BeginInvoke() executes in the main thread (actually the thread where the control was created).</p> <p>In most cases, I personally prefer a deffered execution in the same thread to an async execution in a worker thread: Much less possible side effects. Your mileage may vary.</p> <pre><code>void f(string s) { Debug.WriteLine(s + " -&gt; Thread = " + System.Threading.Thread.CurrentThread.Name); } private void button_Click(object sender, EventArgs e) { Debug.WriteLine("Start button_Click"); f("straight call in button_Click"); BeginInvoke(new Action&lt;string&gt;(f), "async call through BeginInvoke()"); Debug.WriteLine("End button_Click"); } </code></pre> <p>Output:</p> <pre><code>Start button_Click straight call in button_Click -&gt; Thread = Main Thread End button_Click async call through BeginInvoke() -&gt; Thread = Main Thread </code></pre> <p>Note: the name "Main Thread" is assigned to the thread in the Main() of the program.</p> http://stackoverflow.com/questions/1617896/case-insensitive-search-in-unicode-in-c-on-windows/1619158#1619158 0 Answer by Serge - appTranslator for Case insensitive search in Unicode in C++ on Windows Serge - appTranslator 2009-10-24T21:17:12Z 2009-10-24T21:17:12Z <p>you could convert both needle and haystack to lowercase (or uppercase) then do the wcsstr().</p> http://stackoverflow.com/questions/1614845/why-does-it-compile/1615751#1615751 0 Answer by Serge - appTranslator for Why does it compile? Serge - appTranslator 2009-10-23T20:36:25Z 2009-10-23T20:36:25Z <p>FWIW, it was already valid in C.</p> <p>My favorite reason to use such a syntax (especially when defining enums) is that when you had an item to the list, the source control sees changes in one line only (the new one). It doesn't tag the previusly one as modified (because of added comma). Much more readable diff.</p> <p>My 2-cents.</p> http://stackoverflow.com/questions/1612025/mfc-creating-a-hyperlink-in-a-button/1612126#1612126 2 Answer by Serge - appTranslator for MFC : creating a hyperlink in a button Serge - appTranslator 2009-10-23T08:38:39Z 2009-10-23T08:52:31Z <p><a href="http://msdn.microsoft.com/en-us/visualc/dd450359.aspx" rel="nofollow">This video</a> shows how to use the <a href="http://msdn.microsoft.com/en-us/library/bb760704%28VS.85%29.aspx" rel="nofollow">SysLink common control</a> (<a href="http://msdn.microsoft.com/en-us/library/tdfd1sb4%28VS.71%29.aspx" rel="nofollow">CLinkCtrl</a>). Beware that MFC support for this control is new and requires VS2008 and the Feature Pack.</p> <p>Bear in mind that the SysLink control is XP+. If you have to support older platforms, or if you use an older VS, your best bet is probably the good old <a href="http://www.microsoft.com/msj/1297/c1297.aspx" rel="nofollow">CStaticLink</a> by <a href="http://www.dilascia.com/" rel="nofollow">Paul DiLascia</a> (RIP).</p> http://stackoverflow.com/questions/1608994/error-re-creating-registry-key-that-i-just-deleted/1609016#1609016 1 Answer by Serge - appTranslator for Error re-creating registry key that I just deleted. Serge - appTranslator 2009-10-22T18:09:03Z 2009-10-22T18:09:03Z <p>You must <code>Close()</code> all references to the key before you can re-create it.</p> http://stackoverflow.com/questions/1606548/decompiling-code-language-independent/1606556#1606556 5 Answer by Serge - appTranslator for Decompiling code (language independent) Serge - appTranslator 2009-10-22T11:23:06Z 2009-10-22T11:23:06Z <p>If it's a managed DLL (.NET), you can open it using tools such as <a href="http://www.red-gate.com/products/reflector/" rel="nofollow">Reflector</a> or <a href="http://msdn.microsoft.com/en-us/library/f7dy01k1%28VS.80%29.aspx" rel="nofollow">ILDASM</a> and you'll see the <em>IL</em> code.</p> <p>If it's an unmanaged DLL (native), you're out of luck. The best you can do is load a disassembler. Which leads you nearly nowhere unless you know exactly where you want to go.</p> http://stackoverflow.com/questions/1602436/software-translation-services-cost-ballpark-idea/1605911#1605911 0 Answer by Serge - appTranslator for Software Translation Services cost - ballpark idea Serge - appTranslator 2009-10-22T09:00:42Z 2009-10-22T09:00:42Z <p>As far as pricing is concerned: <a href="http://www.proz.com" rel="nofollow">http://www.proz.com</a> is a excellent translators forum. It's probably the best place to start with.</p> http://stackoverflow.com/questions/1601241/c-regex-matching-file-names-according-to-a-specific-naming-pattern/1601328#1601328 0 Answer by Serge - appTranslator for C# - Regex - Matching file names according to a specific naming pattern. Serge - appTranslator 2009-10-21T14:46:22Z 2009-10-21T14:46:22Z <p><a href="http://www.regexbuddy.com/" rel="nofollow">RegexBuddy</a> is an excellent way to spend a few bucks (if you have some to spend). It will help you develop, test and debug your regexes. It even creates code snippets for you.</p> <p><a href="http://www.regexmagic.com/" rel="nofollow">RegexMagic</a> (from the same author) might even help you more: It helps you create a regex pattern from samples. (I haven't tried it though so I can't say if it's good).</p> http://stackoverflow.com/questions/1600712/a-constructor-as-a-delegate-is-it-possible-in-c/1600753#1600753 0 Answer by Serge - appTranslator for a constructor as a delegate - is it possible in C#? Serge - appTranslator 2009-10-21T13:12:11Z 2009-10-21T13:12:11Z <p>My guess is that it isn't possible since you would pass a method of an object that has not been created yet.</p> http://stackoverflow.com/questions/1599748/how-can-i-extract-localized-string-resources-for-translation/1600183#1600183 0 Answer by Serge - appTranslator for How can I extract localized string resources for translation? Serge - appTranslator 2009-10-21T11:16:54Z 2009-10-21T11:16:54Z <p>I'm currently adding .NET support to <a href="http://www.apptranslator.com" rel="nofollow">appTranslator</a> to .NET. The tool helps you easily manage translations of your resources by letting translators work on a single localization project file and creating the satellite DLLs right-away from the translations. I'll let you know when it's ready.</p> http://stackoverflow.com/questions/1791453/how-to-connect-to-an-sqlitece-database-on-a-windows-mobile-phone/1791495#1791495 Comment by Serge - appTranslator on How to connect to an SQLite(CE) database on a windows mobile phone? Serge - appTranslator 2009-11-25T08:25:01Z 2009-11-25T08:25:01Z Just to check it works: Copy your .sdf file in the root of your device, then use &quot;\filename.sdf&quot; in the connection string. It should work. Also, I added some advice in my answer to test that the DB can be opened using another program. http://stackoverflow.com/questions/1793249/create-virtual-methods-using-xsd-exe Comment by Serge - appTranslator on Create virtual methods using xsd.exe Serge - appTranslator 2009-11-24T22:10:32Z 2009-11-24T22:10:32Z @Ed: Obviously, asking for opinions and existing solutions before jumping on the keyboard to hack a solution seems a sign of good mental health. http://stackoverflow.com/questions/1733938/looking-for-tool-that-can-see-tables-and-data-in-sqlce-in-computer-that-isnt-h/1734188#1734188 Comment by Serge - appTranslator on Looking for tool that can see tables and data in sqlCE - in computer that isnt have Visual studio or SQL server Serge - appTranslator 2009-11-24T18:24:36Z 2009-11-24T18:24:36Z +1 for Primeworks. Jo&#227;o Paulo Figueira, the guy behind Primeworks, gives outstanding support. Yes, even with such a low price point. http://stackoverflow.com/questions/1791453/how-to-connect-to-an-sqlitece-database-on-a-windows-mobile-phone/1791495#1791495 Comment by Serge - appTranslator on How to connect to an SQLite(CE) database on a windows mobile phone? Serge - appTranslator 2009-11-24T18:21:10Z 2009-11-24T18:21:10Z See my edited answer http://stackoverflow.com/questions/980439/why-is-object-gettype-a-method-instead-of-a-property/1776286#1776286 Comment by Serge - appTranslator on Why is Object.GetType() a method instead of a property? Serge - appTranslator 2009-11-21T22:31:23Z 2009-11-21T22:31:23Z Mikko, according to the docs, GetType() doesn't throw any exception. http://stackoverflow.com/questions/495051/c-naming-convention-for-enum-and-matching-property/498668#498668 Comment by Serge - appTranslator on C# naming convention for enum and matching property Serge - appTranslator 2009-11-20T12:04:52Z 2009-11-20T12:04:52Z Even though MS says that plural should be kept for flags, over the time, I've come to like that solutions more and more. I now use it for enums as well. Hence I changed my mind and accepted your answer instead of Filip's. http://stackoverflow.com/questions/1761444/how-to-detect-os-of-win7-home-premium-win7-professional-win7-enterprise-or-win7/1761525#1761525 Comment by Serge - appTranslator on How to detect OS of Win7 Home Premium, Win7 Professional, Win7 Enterprise or Win7 ultimate? Serge - appTranslator 2009-11-19T07:49:47Z 2009-11-19T07:49:47Z How does this help determining the Win7 edition? http://stackoverflow.com/questions/1757492/latin-squares-generator-sudoku-like-constraint-problem Comment by Serge - appTranslator on Latin squares generator? (Sudoku-like constraint problem) Serge - appTranslator 2009-11-18T17:06:15Z 2009-11-18T17:06:15Z homework? if yes, please tag it as such http://stackoverflow.com/questions/1749972/determine-the-current-hinstance/1750095#1750095 Comment by Serge - appTranslator on Determine the current HINSTANCE? Serge - appTranslator 2009-11-17T20:13:20Z 2009-11-17T20:13:20Z Adrian, how would the code in the library know in which module (exe/dll) it sits? http://stackoverflow.com/questions/1749972/determine-the-current-hinstance/1750095#1750095 Comment by Serge - appTranslator on Determine the current HINSTANCE? Serge - appTranslator 2009-11-17T16:38:31Z 2009-11-17T16:38:31Z Not totally correct: It reutrns the HINSTANCE of the exe. If the code executes in a DLL, this may lead to wrong behaviours http://stackoverflow.com/questions/1732348/regex-match-open-tags-except-xhtml-self-contained-tags/1732454#1732454 Comment by Serge - appTranslator on RegEx match open tags except XHTML self-contained tags Serge - appTranslator 2009-11-16T17:18:07Z 2009-11-16T17:18:07Z For the sake of History transmission to future generations, I ask Jeff (Atwwod, not the OP) to disable edit capabilities on this answer: We don't want it to be altered in any way! http://stackoverflow.com/questions/1717916/find-out-if-computer-rebooted-since-the-last-time-my-program-ran/1717924#1717924 Comment by Serge - appTranslator on Find out if computer rebooted since the last time my program ran? Serge - appTranslator 2009-11-11T21:37:34Z 2009-11-11T21:37:34Z How does GetTickCount() help? http://stackoverflow.com/questions/1717916/find-out-if-computer-rebooted-since-the-last-time-my-program-ran/1718197#1718197 Comment by Serge - appTranslator on Find out if computer rebooted since the last time my program ran? Serge - appTranslator 2009-11-11T21:36:15Z 2009-11-11T21:36:15Z %TMP% cleared at each reboot? I have file that are yeares old in there! Also, The MoveFileEx trick seems to require admin rights, right? http://stackoverflow.com/questions/1717916/find-out-if-computer-rebooted-since-the-last-time-my-program-ran/1718092#1718092 Comment by Serge - appTranslator on Find out if computer rebooted since the last time my program ran? Serge - appTranslator 2009-11-11T21:30:07Z 2009-11-11T21:30:07Z Would you please care to explain what you have in mind. And how it would work for successive runs under different non-admin user accounts. TIA. http://stackoverflow.com/questions/1665832/get-date-of-first-day-of-week/1665856#1665856 Comment by Serge - appTranslator on Get date of first day of week Serge - appTranslator 2009-11-03T07:58:10Z 2009-11-03T07:58:10Z Yes, indeed: Not internationalized. Monday is not always the first day of week.