User Serge - appTranslator - Stack Overflowmost recent 30 from stackoverflow.com2009-11-28T10:14:28Zhttp://stackoverflow.com/feeds/user/12379http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1791453/how-to-connect-to-an-sqlitece-database-on-a-windows-mobile-phone/1791495#17914950Answer by Serge - appTranslator for How to connect to an SQLite(CE) database on a windows mobile phone?Serge - appTranslator2009-11-24T17:07:46Z2009-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=<password></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#17935290Answer by Serge - appTranslator for What backup strategy do you use for your code?Serge - appTranslator2009-11-24T22:56:56Z2009-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#17933220Answer by Serge - appTranslator for How to embed multilanguage *.resx (or *.resources) files in single EXE?Serge - appTranslator2009-11-24T22:18:30Z2009-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#17932700Answer by Serge - appTranslator for Create virtual methods using xsd.exeSerge - appTranslator2009-11-24T22:08:03Z2009-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-property4Why is Object.GetType() a method instead of a property?Serge - appTranslator2009-06-11T10:43:42Z2009-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#17700940Answer by Serge - appTranslator for Sending Email through .NET codeSerge - appTranslator2009-11-20T12:12:26Z2009-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#17554871Answer by Serge - appTranslator for Why does adding two shorts return an int?Serge - appTranslator2009-11-18T11:51:23Z2009-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 & 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#17501143Answer by Serge - appTranslator for Determine the current HINSTANCE?Serge - appTranslator2009-11-17T16:36:21Z2009-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#17478720Answer by Serge - appTranslator for How do I split a large MFC project into smaller projectsSerge - appTranslator2009-11-17T10:19:49Z2009-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#17418910Answer by Serge - appTranslator for Setup email server to respond to emails sent to an accountSerge - appTranslator2009-11-16T12:28:52Z2009-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#17415571Answer by Serge - appTranslator for MFC COM or ATL COM (ActiveX)Serge - appTranslator2009-11-16T11:18:27Z2009-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#17149191Answer by Serge - appTranslator for Localization of string literalsSerge - appTranslator2009-11-11T12:36:08Z2009-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#16617670Answer by Serge - appTranslator for How do I reliably detect when the mouse leaves a control?Serge - appTranslator2009-11-02T14:56:27Z2009-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-put1WinInet: timeout management in FTP putSerge - appTranslator2008-12-15T22:25:10Z2009-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->SetOption( // KB176420: this has no effect on some
INTERNET_OPTION_SEND_TIMEOUT, dwTimeout); // old versions of IE.
pFtpConnection->SetOption(
INTERNET_OPTION_RECEIVE_TIMEOUT, dwTimeout);
pFtpConnection->SetOption( // NB: Docs say these 2 are not implemented.
INTERNET_OPTION_DATA_SEND_TIMEOUT, dwTimeout);
pFtpConnection->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, &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#16599310Answer by Serge - appTranslator for WinInet: timeout management in FTP putSerge - appTranslator2009-11-02T07:51:16Z2009-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#16541460Answer by Serge - appTranslator for compile errors w/wininet & winhttp in MFC applicationSerge - appTranslator2009-10-31T11:39:33Z2009-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#16487832Answer by Serge - appTranslator for Resources in a static lib file - MFCSerge - appTranslator2009-10-30T09:23:58Z2009-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#16468261Answer by Serge - appTranslator for Change language in mobile application Serge - appTranslator2009-10-29T21:56:21Z2009-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#16467810Answer by Serge - appTranslator for Have you ever bought a commercial implementation of a programming language for personal programming projects?Serge - appTranslator2009-10-29T21:48:31Z2009-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#16302871Answer by Serge - appTranslator for Does MFC have a built in grid control?Serge - appTranslator2009-10-27T11:47:37Z2009-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#16249090Answer by Serge - appTranslator for Substitute the timer.Serge - appTranslator2009-10-26T13:49:48Z2009-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 + " -> 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<string>(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 -> Thread = Main Thread
End button_Click
async call through BeginInvoke() -> 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#16191580Answer by Serge - appTranslator for Case insensitive search in Unicode in C++ on WindowsSerge - appTranslator2009-10-24T21:17:12Z2009-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#16157510Answer by Serge - appTranslator for Why does it compile?Serge - appTranslator2009-10-23T20:36:25Z2009-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#16121262Answer by Serge - appTranslator for MFC : creating a hyperlink in a buttonSerge - appTranslator2009-10-23T08:38:39Z2009-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#16090161Answer by Serge - appTranslator for Error re-creating registry key that I just deleted.Serge - appTranslator2009-10-22T18:09:03Z2009-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#16065565Answer by Serge - appTranslator for Decompiling code (language independent)Serge - appTranslator2009-10-22T11:23:06Z2009-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#16059110Answer by Serge - appTranslator for Software Translation Services cost - ballpark ideaSerge - appTranslator2009-10-22T09:00:42Z2009-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#16013280Answer by Serge - appTranslator for C# - Regex - Matching file names according to a specific naming pattern.Serge - appTranslator2009-10-21T14:46:22Z2009-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#16007530Answer by Serge - appTranslator for a constructor as a delegate - is it possible in C#?Serge - appTranslator2009-10-21T13:12:11Z2009-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#16001830Answer by Serge - appTranslator for How can I extract localized string resources for translation?Serge - appTranslator2009-10-21T11:16:54Z2009-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#1791495Comment by Serge - appTranslator on How to connect to an SQLite(CE) database on a windows mobile phone?Serge - appTranslator2009-11-25T08:25:01Z2009-11-25T08:25:01ZJust to check it works: Copy your .sdf file in the root of your device, then use "\filename.sdf" 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-exeComment by Serge - appTranslator on Create virtual methods using xsd.exeSerge - appTranslator2009-11-24T22:10:32Z2009-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#1734188Comment by Serge - appTranslator on Looking for tool that can see tables and data in sqlCE - in computer that isnt have Visual studio or SQL serverSerge - appTranslator2009-11-24T18:24:36Z2009-11-24T18:24:36Z+1 for Primeworks. Joã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#1791495Comment by Serge - appTranslator on How to connect to an SQLite(CE) database on a windows mobile phone?Serge - appTranslator2009-11-24T18:21:10Z2009-11-24T18:21:10ZSee my edited answerhttp://stackoverflow.com/questions/980439/why-is-object-gettype-a-method-instead-of-a-property/1776286#1776286Comment by Serge - appTranslator on Why is Object.GetType() a method instead of a property?Serge - appTranslator2009-11-21T22:31:23Z2009-11-21T22:31:23ZMikko, according to the docs, GetType() doesn't throw any exception.http://stackoverflow.com/questions/495051/c-naming-convention-for-enum-and-matching-property/498668#498668Comment by Serge - appTranslator on C# naming convention for enum and matching propertySerge - appTranslator2009-11-20T12:04:52Z2009-11-20T12:04:52ZEven 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#1761525Comment by Serge - appTranslator on How to detect OS of Win7 Home Premium, Win7 Professional, Win7 Enterprise or Win7 ultimate?Serge - appTranslator2009-11-19T07:49:47Z2009-11-19T07:49:47ZHow does this help determining the Win7 edition?http://stackoverflow.com/questions/1757492/latin-squares-generator-sudoku-like-constraint-problemComment by Serge - appTranslator on Latin squares generator? (Sudoku-like constraint problem)Serge - appTranslator2009-11-18T17:06:15Z2009-11-18T17:06:15Zhomework? if yes, please tag it as suchhttp://stackoverflow.com/questions/1749972/determine-the-current-hinstance/1750095#1750095Comment by Serge - appTranslator on Determine the current HINSTANCE?Serge - appTranslator2009-11-17T20:13:20Z2009-11-17T20:13:20ZAdrian, 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#1750095Comment by Serge - appTranslator on Determine the current HINSTANCE?Serge - appTranslator2009-11-17T16:38:31Z2009-11-17T16:38:31ZNot totally correct: It reutrns the HINSTANCE of the exe. If the code executes in a DLL, this may lead to wrong behaviourshttp://stackoverflow.com/questions/1732348/regex-match-open-tags-except-xhtml-self-contained-tags/1732454#1732454Comment by Serge - appTranslator on RegEx match open tags except XHTML self-contained tagsSerge - appTranslator2009-11-16T17:18:07Z2009-11-16T17:18:07ZFor 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#1717924Comment by Serge - appTranslator on Find out if computer rebooted since the last time my program ran?Serge - appTranslator2009-11-11T21:37:34Z2009-11-11T21:37:34ZHow does GetTickCount() help?http://stackoverflow.com/questions/1717916/find-out-if-computer-rebooted-since-the-last-time-my-program-ran/1718197#1718197Comment by Serge - appTranslator on Find out if computer rebooted since the last time my program ran?Serge - appTranslator2009-11-11T21:36:15Z2009-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#1718092Comment by Serge - appTranslator on Find out if computer rebooted since the last time my program ran?Serge - appTranslator2009-11-11T21:30:07Z2009-11-11T21:30:07ZWould 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#1665856Comment by Serge - appTranslator on Get date of first day of weekSerge - appTranslator2009-11-03T07:58:10Z2009-11-03T07:58:10ZYes, indeed: Not internationalized. Monday is not always the first day of week.