User Piotr Dobrogost - Stack Overflowmost recent 30 from stackoverflow.com2009-12-21T16:37:21Zhttp://stackoverflow.com/feeds/user/95735http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1885030/using-xml-param-inside-a-function0using xml param inside a functionPiotr Dobrogost2009-12-11T00:17:29Z2009-12-11T00:27:25Z
<p>Having declared</p>
<pre><code><xsl:param name='suffix'>some_string</xsl:param>
</code></pre>
<p>I tried to use its value in a function call like this</p>
<pre><code><xsl:when test='fn:ends-with(@name, {$suffix})'>
</code></pre>
<p>which ended with the following error:</p>
<blockquote>
<p>XPST0003: XPath syntax error at char
20 on line 34 in {fn:ends-with(@name,
{$}:
Unexpected token "{" in path expression</p>
</blockquote>
<p>What's the proper way to use parameter's value in a function call in XSL?</p>
http://stackoverflow.com/questions/1729692/how-do-i-enable-all-epic-projects-to-use-perls-inc1How do I enable all EPIC projects to use Perl's @INC?Piotr Dobrogost2009-11-13T14:51:26Z2009-11-26T01:08:59Z
<p>I have a set of intra-dependent Perl projects and would like to use <a href="http://www.epic-ide.org" rel="nofollow">EPIC</a> to work on them. I created one Epic (Eclipse) project for each of my projects and I set dependencies among them using Project|Properties|Project References function.
For each project I also set Perl Include Path (<code>@INC</code>) in Project|Properties|Perl Include Path adding paths to the libraries used by this project.</p>
<p>The problem is the <code>@INC</code> setting does not seem to be transitive; if project B references project A, B's <code>@INC</code> does not incorporate A's <code>@INC</code> automatically. In effect I have to manually add paths from A's <code>@INC</code> to B's <code>@INC</code> to make Epic see all necessary Perl libs.</p>
<p>Can it be done automatically?</p>
http://stackoverflow.com/questions/1116485/how-many-times-is-onunload-triggered/1565340#15653400Answer by Piotr Dobrogost for How many times is onunload triggered?Piotr Dobrogost2009-10-14T10:01:57Z2009-10-14T10:01:57Z<p>Read <a href="http://webkit.org/blog/516/webkit-page-cache-ii-the-unload-event" rel="nofollow">WebKit Page Cache II – The unload Event</a> for interesting discussion on how unload event plays with page caching feature of modern browsers.</p>
http://stackoverflow.com/questions/1493382/why-does-qwebframeevalutatejavascript-do-nothing-in-this-case0Why does QWebFrame::evalutateJavaScript do nothing in this case?Piotr Dobrogost2009-09-29T15:42:17Z2009-09-29T20:34:17Z
<p>I'm calling <code>QWebFrame::evaluateJavaScript</code> in one place in my code and it has no effect. However, if I replace this call with the setTimer(0) call and will call the original function when this timer times out it works. How do I know if it works or not? The JavaScript code which is evaluated in my case calls one JavaScript function which in turn makes AJAX call. This AJAX call in turn makes <code>QNetworkAccessManager</code> used by <code>QWebFrame</code> create and send a <code>QNetworkRequest</code>. There is no request being created when I call <code>QWebFrame::evalutateJavaScript</code> directly from my code, however. That's what I mean when I say it does not work in the first scenario.</p>
<p>It looks like something is preventing QtWebKit and//or <code>QNetworkAccessManager</code> from carrying out their job after <code>evaluateJavaScript</code> is called. I suspect it has something to do with events and the main (gui) event loop. Any ideas?</p>
http://stackoverflow.com/questions/1123832/hardcoded-qmakespec-in-qt-creator1Hardcoded QMAKESPEC in Qt Creator?Piotr Dobrogost2009-07-14T06:51:35Z2009-09-29T12:13:12Z
<p>I installed Qt SDK (Qt framework + Qt Creator) but didn't like the layout of folders so I deleted it (without uninstalling), moved framework in one place and Qt Creator in another and installed Qt framework and Qt Creator separately placing each over the respective old one.</p>
<p>The problem is Qt Creator in <em>Projects/Build Settings/Build Steps</em> keeps showing the old path to the specification file:<br />
<em>-spec c:/qt/2009.03/qt/mkspecs/win32-g++</em></p>
<p>Setting <em>QMAKESPEC</em> environment variable either in the system or in <em>Projects/Build Environment</em> doesn't change anything.</p>
<p>How can I force Qt Creator to see and use new location of the specification file?</p>
http://stackoverflow.com/questions/1448426/how-to-avoid-entering-librarys-source-files-while-debugging-in-qt-creator-with-g8How to avoid entering library's source files while debugging in Qt Creator with gdb?Piotr Dobrogost2009-09-19T12:03:01Z2009-09-28T11:05:41Z
<p>How can I configure Qt Creator and/or gdb so that while debugging my program using Qt libraries the debugger would avoid stepping into Qt's source files?</p>
http://stackoverflow.com/questions/1471764/global-variable-in-qt-how-to/1471839#14718391Answer by Piotr Dobrogost for Global variable in Qt, how to?Piotr Dobrogost2009-09-24T13:54:26Z2009-09-24T14:05:50Z<p>global_objects.hpp</p>
<pre><code>extern int myGlobalInt;
</code></pre>
<p>global_objects.cpp</p>
<pre><code>#include "global_objects.hpp"
namespace
{
int myGlobalInt;
}
</code></pre>
<p>And then <code>#include "global_objects.hpp"</code> in every place you need <code>myGlobalInt</code>.</p>
<p>You should read <a href="http://stackoverflow.com/questions/1463707">C++ singleton vs. global static object</a> and <a href="http://stackoverflow.com/questions/1392863">Initializing qt resources embedded in static library</a> as well.</p>
http://stackoverflow.com/questions/1466852/qt-is-is-possible-to-get-the-qscriptengine-from-qwebframe/1467504#14675040Answer by Piotr Dobrogost for Qt: Is is possible to get the QScriptEngine from QWebFrame?Piotr Dobrogost2009-09-23T17:33:35Z2009-09-23T17:33:35Z<p>Have you noticed <a href="http://doc.trolltech.com/4.6-snapshot/qwebframe.html#addToJavaScriptWindowObject" rel="nofollow">void QWebFrame::addToJavaScriptWindowObject ( const QString & name, QObject * object )</a> method?</p>
<p>From the help:</p>
<blockquote>
<p>Make object available under name from
within the frame's JavaScript context.
The object will be inserted as a child
of the frame's window object.</p>
<p>Qt properties will be exposed as
JavaScript properties and slots as
JavaScript methods.</p>
</blockquote>
<p>Maybe that will help you.</p>
http://stackoverflow.com/questions/1176666/how-to-create-a-subdirectory-for-a-project-in-qt-creator/1423810#14238101Answer by Piotr Dobrogost for How to create a subdirectory for a project in qt-creator?Piotr Dobrogost2009-09-14T20:42:33Z2009-09-14T20:42:33Z<p>Starting from version 1.2.90 Qt Creator shows subfolders which exist in project's folder as branches in project's tree if only <em>Filter tree</em> option is not set to <em>Simplify tree</em>.</p>
http://stackoverflow.com/questions/1392863/initializing-qt-resources-embedded-in-static-library/1420261#14202611Answer by Piotr Dobrogost for Initializing qt resources embedded in static libraryPiotr Dobrogost2009-09-14T08:11:45Z2009-09-14T08:16:56Z<p>It didn't work because you managed to get hit by <a href="http://www.parashift.com/c++-faq-lite/ctors.html#faq-10.12" rel="nofollow">static initialization order fiasco</a>. </p>
<p>You can't move your code that initializes static objects outsize the translation unit (you can read it as source file) where these static objects are used. Not the way you did it. If you want to use the scheme you are using to initialize these static objects than move only declarations to your init.hpp header but leave instatiations <code>StaticLibInitializer staticLibInitializer;</code> in each file which uses static objects.<br />
Above advice assumes each widget uses only its own resources. If you have situation in which one widget's resources are used by another widget you run into static initialization order fiasco again. You can manage this situation by using code like this</p>
<pre><code>StaticLibInitializer
{
void initialize()
{
static Q_INIT_RESOURCE(qtwidgets_custom_resources);
}
StaticLibInitializer()
{
initialize();
}
}
</code></pre>
<p>to make sure multiply instantiations of StaticLibInitializer will initialize given resource only once and then instantiate StaticLibInitializer for every resource you are going to use in given translation unit.</p>
http://stackoverflow.com/questions/1389680/why-is-qt-looking-for-my-slot-in-the-base-class-instead-of-derived-one2Why is Qt looking for my slot in the base class instead of derived one?Piotr Dobrogost2009-09-07T14:33:04Z2009-09-11T15:07:37Z
<p>I have my class <code>X</code> which inherits from Qt's class <code>Base</code>. I declared and defined <code>void mySlot()</code> slot in my class <code>X</code> and I'm connecting some signal to this slot in X's constructor. However, when running my program I get an error message saying there's no such slot as <code>void mySlot()</code> in the class <code>Base</code>.</p>
<p>Why is the code generated by Meta Object Compiler (moc) looking for my slot in the base class and not in my (derived) class?</p>
http://stackoverflow.com/questions/1389680/why-is-qt-looking-for-my-slot-in-the-base-class-instead-of-derived-one/1411490#14114900Answer by Piotr Dobrogost for Why is Qt looking for my slot in the base class instead of derived one?Piotr Dobrogost2009-09-11T15:07:37Z2009-09-11T15:07:37Z<p>From #qt irc channel</p>
<ol>
<li>Make sure the Q_OBJECT macro is present in the definition of all QObject-derived classes. </li>
<li>Make sure you declare your QObject-derived classes in your header files ONLY. </li>
<li>Make sure all of your header files are listed in your .pro file in the HEADERS= list. </li>
<li>Run qmake every time you add Q_OBJECT to one of your classes or modify your .pro file. </li>
</ol>
http://stackoverflow.com/questions/1100730/what-algorithm-to-use-to-calculate-a-check-digit3What algorithm to use to calculate a check digit?Piotr Dobrogost2009-07-08T21:53:16Z2009-08-29T12:35:02Z
<p>What algorithm to use to calculate a check digit for a list of digits?<br />
The length of the list is between 8 and 12 digits.</p>
<p>see also:<br />
<a href="http://stackoverflow.com/questions/46231/how-to-generate-a-verification-code-number">How to generate a verification code/number?</a></p>
http://stackoverflow.com/questions/1302874/how-to-know-when-a-web-page-is-loaded-when-using-qtwebkit1How to know when a web page is loaded when using QtWebKit?Piotr Dobrogost2009-08-19T22:03:37Z2009-08-28T20:30:40Z
<p>Both <code>QWebFrame</code> and <code>QWebPage</code> have <code>void loadFinished(bool ok)</code> signal which can be used to detect when a web page is completely loaded. The problem is when a web page has some content loaded asynchronously (ajax). How to know when the page is completely loaded in this case?</p>
http://stackoverflow.com/questions/1145678/can-i-send-email-in-yahoo-pipes0Can I send email in Yahoo Pipes?Piotr Dobrogost2009-07-17T21:05:11Z2009-08-28T19:47:19Z
<p>Can I and if so then how?</p>
http://stackoverflow.com/questions/1302874/how-to-know-when-a-web-page-is-loaded-when-using-qtwebkit/1311121#1311121-1Answer by Piotr Dobrogost for How to know when a web page is loaded when using QtWebKit?Piotr Dobrogost2009-08-21T10:17:09Z2009-08-21T10:17:09Z<p>@Bill</p>
<blockquote>
<p>Is a page completely loaded when no
ajax code is currently running? (Even
if ajax code might run in the future?)</p>
</blockquote>
<p>Yes. In my case if there is an ajax call it's only one call per page triggered when user submits a form. No timers, not further ajax calls.</p>
<blockquote>
<p>Is a page completely loaded when no
ajax code will run in the future?</p>
</blockquote>
<p>See my answer to the first question.</p>
<blockquote>
<p>What would you do differently having
this information? (Why does it
matter?)</p>
</blockquote>
<p>See my answer to the first question.<br />
I have to extract data when it's loaded so I have to know when it's finished loading.</p>
http://stackoverflow.com/questions/1143569/how-to-get-current-date-and-time-in-yahoo-pipes0How to get current date and time in Yahoo Pipes?Piotr Dobrogost2009-07-17T14:15:18Z2009-08-20T19:56:58Z
<p>Is there a way to get current date and time in Yahoo Pipes?</p>
<p>I need this to create a pipe with only the newest questions from SO as I don't want to wait for SO team to implement RSS for this...</p>
http://stackoverflow.com/questions/1265354/how-to-design-a-state-machine-in-face-of-non-blocking-i-o2How to design a state machine in face of non-blocking I/O?Piotr Dobrogost2009-08-12T10:18:50Z2009-08-12T14:26:54Z
<p>I'm using Qt framework which has by default non-blocking I/O to develop an application navigating through several web pages (online stores) and carrying out different actions on these pages. I'm "mapping" specific web page to a state machine which I use to navigate through this page.<br />
This state machine has these transitions;<br />
<code>Connect, LogIn, Query, LogOut, Disconnect</code><br />
and these states;<br />
<code>Start, Connecting, Connected, LoggingIn, LoggedIn, Querying, QueryDone, LoggingOut, LoggedOut, Disconnecting, Disconnected</code><br />
Transitions from *ing to *ed states (<code>Connecting->Connected</code>), are due to <code>LoadFinished</code> asynchronous network events received from network object when currently requested url is loaded. Transitions from *ed to *ing states (<code>Connected->LoggingIn</code>) are due to events send by me.<br />
I want to be able to send several events (commands) to this machine (like Connect, LogIn, Query("productA"), Query("productB"), LogOut, LogIn, Query("productC"), LogOut, Disconnect) <strong>at once</strong> and have it process them. I <strong>don't want to block</strong> waiting for the machine to finish processing all events I sent to it. The problem is they have to be interleaved with the above mentioned network events informing machine about the url being downloaded. Without interleaving machine can't advance its state (and process my events) because advancing from *ing to *ed occurs only after receiving network type of event.</p>
<p>How can I achieve my design goal?</p>
<p><strong>EDIT</strong> </p>
<ol>
<li>The state machine I'm using has its own event loop and events are not queued in it so could be missed by machine if they come when the machine is busy. </li>
<li>Network I/O events are not posted directly to neither the state machine nor the event queue I'm using. They are posted to my code (handler) and I have to handle them. I can forward them as I wish but please have in mind remark no. 1.</li>
<li><p>Take a look at my <em>answer</em> to this question where I described my current design in details. The question is if and how can I improve this design by making it </p>
<ul>
<li>More robust </li>
<li>Simpler</li>
</ul></li>
</ol>
http://stackoverflow.com/questions/1265354/how-to-design-a-state-machine-in-face-of-non-blocking-i-o/1265672#12656720Answer by Piotr Dobrogost for How to design a state machine in face of non-blocking I/O?Piotr Dobrogost2009-08-12T11:48:45Z2009-08-12T11:48:45Z<p>Asking this question I already had a working design which I didn't want to write about not to skew answers in any direction :) I'm going to describe in this pseudo answer what the design I have is.</p>
<p>In addition to the state machine I have a queue of events. Instead of posting events directly to the machine I'm placing them in the queue. There is however problem with network events which are asynchronous and come in any moment. If the queue is not empty and a network event comes I can't place it in the queue because the machine will be stuck waiting for it before processing events already in the queue. And the machine will wait forever because this network event is waiting behind all events placed in the queue earlier.<br />
To overcome this problem I have two types of messages; normal and priority ones. Normal ones are those send by me and priority ones are all network ones. When I get network event I don't place it in the queue but instead I send it directly to the machine. This way it can finish its current task and progress to the next state before pulling the next event from the queue of events.<br />
It works designed this way only because there is exactly 1:1 interleave of my events and network events. Because of this when the machine is waiting for a network event it's not busy doing anything (so it's ready to accept it and does not miss it) and vice versa - when the machine waits for my task it's only waiting for my task and not another network one.</p>
<p>I asked this question in hope for some more simple design than what I have now.</p>
http://stackoverflow.com/questions/848269/mixing-qt-with-stl-and-boost-are-there-any-bridges-to-make-it-easy3Mixing Qt with STL and Boost - are there any bridges to make it easy?Piotr Dobrogost2009-05-11T14:05:36Z2009-08-11T14:11:50Z
<p>Are there any bridges to make mixing Qt with STL and Boost as seamless and easy as possible?</p>
<p>This is a followup to <a href="http://stackoverflow.com/questions/360160">Mixing Qt and Boost</a>, where no specific answers how to accomplish this were given.</p>
http://stackoverflow.com/questions/1241429/blocking-io-vs-non-blocking-io-looking-for-good-articles0Blocking IO vs non-blocking IO; looking for good articlesPiotr Dobrogost2009-08-06T21:02:03Z2009-08-06T21:30:09Z
<p>Once upon a time I bumped into <a href="http://www.swissdelphicenter.ch/en/showarticle.php?id=4" rel="nofollow">Introduction to Indy</a> article and can't stop thinking about blocking vs non-blocking IO ever since then.</p>
<p>Looking for some good articles describing what are pros and cons of blocking IO and non-blocking IO and <strong>how to design your application in each case</strong> to get natural, easy to understand and easy to maintain code.<br />
Would like to understand BIG picture...</p>
http://stackoverflow.com/questions/1150464/msvcr90d-dll-not-found-in-debug-mode1msvcr90d.dll not found in debug modePiotr Dobrogost2009-07-19T18:01:25Z2009-08-05T14:11:20Z
<p>I found <a href="http://stackoverflow.com/questions/218747/msvcr90d-dll-not-found-in-debug-mode-with-visual-c-2008">MSVCR90D.dll not found in debug mode with Visual C++ 2008</a> question but none of given answers really gives answer to the question. Most of them point to turning off incremental linking but don't explain the true cause of the error and how it can be fixed <strong>without</strong> turning off incremental linking.</p>
<p>I'd like to mention that my situation is a little different than the one in the original question. I am using C++ compiler from Visual Studio 2008 but within Qt Creator not within Visual Studio.</p>
<p>Anyone?</p>
http://stackoverflow.com/questions/1219880/how-to-follow-a-link-in-qwebkit0How to follow a link in QWebKit?Piotr Dobrogost2009-08-02T21:18:07Z2009-08-02T21:18:07Z
<p>Having a DOM of the following html;</p>
<pre><code><a href="?op=order">
<img class="img_button" src="picture.gif"
onMouseOver="this.src='some.gif';"
onMouseOut="this.src='some_other.gif';"
alt="" border="0">
</a>
</code></pre>
<p>how to follow a link (href) in QWebKit (specifically QWebPage).</p>
<p>Please notice that it's an image that is linked.<br />
I can't do it (and I don't want to even if I could) by simulating a mouse click as I don't use QWebView thus I don't have the page rendered.</p>
http://stackoverflow.com/questions/822581/what-c-library-for-http-client3What C++ library for HTTP client?Piotr Dobrogost2009-05-04T23:17:59Z2009-07-31T17:58:08Z
<p>I'm looking for c++ library implementing HTTP client.<br />
It should handle cookies as well.<br />
What would you propose?</p>
<p>Thank you in advance for your time.</p>
http://stackoverflow.com/questions/1201413/qtwebkit-qwebelementsetplaintext-problem0QtWebKit, QWebElement::setPlainText() problemPiotr Dobrogost2009-07-29T16:19:16Z2009-07-30T11:01:37Z
<p>From Qt online <a href="http://doc.trolltech.com/4.6-snapshot/qwebelement.html#setPlainText" rel="nofollow">help</a>:</p>
<blockquote>
<pre><code>void QWebElement::setPlainText ( const QString & text )
</code></pre>
<p>Replaces the existing content of this
element with text. This is equivalent
to setting the HTML innerText
property.</p>
</blockquote>
<p>My code:</p>
<pre><code>QWebElement login = doc.findFirst("input[name=\"login\"]");
login.setPlainText("alibaba");
qDebug() << login.toPlainText();
</code></pre>
<p>And the output is "".<br />
Why I don't see new value of login element?</p>
http://stackoverflow.com/questions/1201413/qtwebkit-qwebelementsetplaintext-problem/1205871#12058710Answer by Piotr Dobrogost for QtWebKit, QWebElement::setPlainText() problemPiotr Dobrogost2009-07-30T11:00:43Z2009-07-30T11:00:43Z<p>The problem is the <code>input</code> html element doesn't have the closing tag so there's no sense in using methods that operate (set some content) in a space between the opening and the closing tag...<br />
Besides, it's <code>value</code> <strong>attribute</strong> that should be set and not the content of the <code>input</code> element :)</p>
http://stackoverflow.com/questions/1168472/is-there-any-special-category-for-external-files-in-project-file-of-qt-creator0Is there any special category for external files in project file of Qt Creator?Piotr Dobrogost2009-07-22T21:46:25Z2009-07-24T08:08:19Z
<p>I'd like to keep in my project some <em>external</em> files, let's say .txt ones.
Is there any special category for external files in project file (.pro) of Qt Creator?</p>
http://stackoverflow.com/questions/1172928/how-to-access-dom-of-a-web-page-in-qtwebkit1How to access DOM of a web page in QtWebKit?Piotr Dobrogost2009-07-23T16:25:51Z2009-07-23T21:00:17Z
<p>How to access DOM of a web page in QtWebKit?<br />
I don't see any methods exposing DOM in QtWebKit... </p>
http://stackoverflow.com/questions/1158705/msvcp90-dll-not-found/1159062#11590620Answer by Piotr Dobrogost for MSVCP90.dll not found?Piotr Dobrogost2009-07-21T13:06:32Z2009-07-21T18:45:55Z<p>There are several files that make Visual C++ Run-time and you can have the same problem with any of them. You might take a look at other questions regarding any of the following files.</p>
<ul>
<li>msvcP90.dll </li>
<li>msvcP90d.dll (debug version of msvcP90.dll)</li>
<li>msvcR90.dll</li>
<li>msvcR90d.dll (debug version of msvcR90.dll)</li>
</ul>
http://stackoverflow.com/questions/1150464/msvcr90d-dll-not-found-in-debug-mode/1150750#11507500Answer by Piotr Dobrogost for msvcr90d.dll not found in debug modePiotr Dobrogost2009-07-19T20:08:37Z2009-07-19T22:59:03Z<p>My answer and comments to various answers;</p>
<p>@Shay</p>
<p>Output txt file from sxstrace is empty. Have no idea why. However there's the following information in the application log:</p>
<pre><code>Faulting application formExtractor.exe, version 0.0.0.0, time stamp 0x4a638ee1, faulting module MSVCR90D.dll, version 6.0.6002.18005, time stamp 0x49e03824, exception code 0xc0000135, fault offset 0x0006f04e, process id 0xf68, application start time 0x01ca08ba801ac5cf.
</code></pre>
<p>Version 6.0.6002.18005? </p>
<h2>What the heck is this?</h2>
<p>======================================================================= </p>
<p>@jia3ep</p>
<p>Dependency Walker finds <code>msvcr90d.dll</code> used by <code>qtwebkit4.dll</code> file in<br />
<code>c:\windows\winsxs\x86_microsoft.vc90.debugcrt_1fc8b3b9a1e18e3b_9.0.30729.1_none_bb1f6aa1308c35eb\MSVCR90D.DLL</code></p>
<p>but doesn't find (the other version of?) <code>msvcr90d.dll</code> file linked directly by the executable. However DW doesn't seem to show it's version anywhere, does it?</p>
<p>Contest of formExtractor.intermediate.manifest file</p>
<pre><code><?xml version='1.0' encoding='UTF-8' standalone='yes'?>
<assembly xmlns='urn:schemas-microsoft-com:asm.v1' manifestVersion='1.0'>
<trustInfo xmlns="urn:schemas-microsoft-com:asm.v3">
<security>
<requestedPrivileges>
<requestedExecutionLevel level='asInvoker' uiAccess='false' />
</requestedPrivileges>
</security>
</trustInfo>
<dependency>
<dependentAssembly>
<assemblyIdentity type='win32' name='Microsoft.Windows.Common-Controls' version='6.0.0.0' publicKeyToken='6595b64144ccf1df' language='*' processorArchitecture='*' />
</dependentAssembly>
</dependency>
<dependency>
<dependentAssembly>
<assemblyIdentity type='win32' name='Microsoft.VC90.DebugCRT' version='9.0.21022.8' processorArchitecture='x86' publicKeyToken='1fc8b3b9a1e18e3b' />
</dependentAssembly>
</dependency>
</assembly>
</code></pre>
<p>From the manifest file it looks like the executable is being linked to a different version of <code>msvcr90d.dll</code> than the <code>qtwebkit4.dll</code>. What's strange is the fact that both versions of <code>msvcr90d.dll</code> are present in <code>c:\windows\winsxs</code> folder in the following sub folders<br />
<code>x86_microsoft.vc90.debugcrt_1fc8b3b9a1e18e3b_9.0.21022.8_none_96748342450f6aa2</code>
and
<code>x86_microsoft.vc90.debugcrt_1fc8b3b9a1e18e3b_9.0.30729.1_none_bb1f6aa1308c35eb</code></p>
<p>Any ideas?</p>
<p>=======================================================================<br />
@knight666</p>
<p>I'm using Qt framework which I compiled using exactly the compiler I'm using now so I think there's no mismatch here. Additionally Dependency Walker shows the missing <code>msvcr90d.dll</code> file is linked <strong>directly</strong> to the executable so it's not a fault of any 3rd party library I think.</p>
<p>======================================================================= </p>
<p>Below is output from compiler. It's strange that running build the second time succeeds. However I suspect the problem might be due to this error with running mt.exe which is responsible for embedding information from manifest into executable...</p>
<pre><code>Generating Code...
link /LIBPATH:"c:\Qt\4.5.2-vc\lib" /NOLOGO /DEBUG /MANIFEST /MANIFESTFILE:"debug\formExtractor.intermediate.manifest" /SUBSYSTEM:WINDOWS "/MANIFESTDEPENDENCY:type='win32' name='Microsoft.Windows.Common-Controls' version='6.0.0.0' publicKeyToken='6595b64144ccf1df' language='*' processorArchitecture='*'" /OUT:debug\formExtractor.exe @.\nmD932.tmp
mt.exe -nologo -manifest "debug\formExtractor.intermediate.manifest" -outputresource:debug\formExtractor.exe;1
'mt.exe' is not recognized as an internal or external command,
operable program or batch file.
NMAKE : fatal error U1077: 'mt.exe' : return code '0x1'
Stop.
NMAKE : fatal error U1077: '"C:\Program Files (x86)\Microsoft Visual Studio 9.0\VC\BIN\nmake.exe"' : return code '0x2'
Stop.
Exited with code 2.
</code></pre>
<p>Failing to run mt.exe during the linking process was indeed the cause of the problem. I added path to Windows SDK (<code>C:\Program Files\Microsoft SDKs\Windows\v6.0A\bin</code>) to the PATH environment variable and I'm able to run executable now.</p>
<p>However I think it's not the definitive answer to this question and I hope someone will give a better one explaining the process of defining and searching for dlls in Windows...</p>
http://stackoverflow.com/questions/1729692/how-do-i-enable-all-epic-projects-to-use-perls-inc/1752587#1752587Comment by Piotr Dobrogost on How do I enable all EPIC projects to use Perl's @INC?Piotr Dobrogost2009-11-19T19:26:44Z2009-11-19T19:26:44ZThanks, will try this.http://stackoverflow.com/questions/1729692/how-do-i-enable-all-epic-projects-to-use-perls-incComment by Piotr Dobrogost on How do I enable all EPIC projects to use Perl's @INC?Piotr Dobrogost2009-11-13T20:58:10Z2009-11-13T20:58:10Z@Ivan Maybe it's by design? I have little experience with Perl and I'm not sure what the behavior in this scenario should be.http://stackoverflow.com/questions/78716/is-xslt-worth-it/78736#78736Comment by Piotr Dobrogost on Is XSLT worth it?Piotr Dobrogost2009-11-11T15:15:39Z2009-11-11T15:15:39ZExtending standard language with non-standard extensions is the worst thing one can do. What you end up with is neither XSLT nor CLR code.http://stackoverflow.com/questions/78716/is-xslt-worth-it/1270602#1270602Comment by Piotr Dobrogost on Is XSLT worth it?Piotr Dobrogost2009-11-11T15:06:41Z2009-11-11T15:06:41ZTell us what was the size of C# code just after you rewrote these 2750 lines of XSLT. Giving the current size tells us nothing.http://stackoverflow.com/questions/77342/why-has-xslt-never-seen-the-popularity-of-many-other-languages-that-came-out-duri/220164#220164Comment by Piotr Dobrogost on Why has XSLT never seen the popularity of many other languages that came out during the internet boom?Piotr Dobrogost2009-11-11T01:35:06Z2009-11-11T01:35:06Z...Nice post. +1http://stackoverflow.com/questions/775913/where-do-you-go-for-c-newsComment by Piotr Dobrogost on Where do you go for C++ news?Piotr Dobrogost2009-10-30T15:17:58Z2009-10-30T15:17:58ZTell your boss the truth, tell him he will have been dead long before C++ will die :)http://stackoverflow.com/questions/1542084/whats-the-most-commonly-used-xml-library-for-c/1543484#1543484Comment by Piotr Dobrogost on What's the most commonly used XML library for C++?Piotr Dobrogost2009-10-09T13:40:01Z2009-10-09T13:40:01ZIf the author wanted to know answer on <b>your</b> question (Should I use XML?) he would have asked this question not the one he asked. -1http://stackoverflow.com/questions/1448426/how-to-avoid-entering-librarys-source-files-while-debugging-in-qt-creator-with-g/1475262#1475262Comment by Piotr Dobrogost on How to avoid entering library's source files while debugging in Qt Creator with gdb?Piotr Dobrogost2009-09-26T11:51:23Z2009-09-26T11:51:23ZWhat do you think about Andy's proposition to just remove/hide library's source files?http://stackoverflow.com/questions/1471764/global-variable-in-qt-how-to/1471839#1471839Comment by Piotr Dobrogost on Global variable in Qt, how to?Piotr Dobrogost2009-09-24T14:00:14Z2009-09-24T14:00:14ZYep http://stackoverflow.com/questions/1466121/how-to-use-intel-c-compiler-with-qt-creator/1466152#1466152Comment by Piotr Dobrogost on How to use Intel C++ Compiler with Qt CreatorPiotr Dobrogost2009-09-23T14:11:34Z2009-09-23T14:11:34ZI don't see any connection between the article <code>Deploying an Application on Windows</code> and using Intel C++ compiler in Qt Creator. However, the second part of the advice (to use <code>win32-icc</code> platform description/configuration file) is ok.http://stackoverflow.com/questions/1448426/how-to-avoid-entering-librarys-source-files-while-debugging-in-qt-creator-with-g/1454460#1454460Comment by Piotr Dobrogost on How to avoid entering library's source files while debugging in Qt Creator with gdb?Piotr Dobrogost2009-09-23T14:02:45Z2009-09-23T14:02:45ZAndy, what you are describing is called STEP OUT and STEP OVER and has always been possible in pretty much every debugger. I don't want to <b>manually</b> step out/over Qt's source code. I want debugger to step over it <b>automatically</b>. rpg is right in his comment and he describes the feature I was asking about.http://stackoverflow.com/questions/1392863/initializing-qt-resources-embedded-in-static-library/1420261#1420261Comment by Piotr Dobrogost on Initializing qt resources embedded in static libraryPiotr Dobrogost2009-09-15T12:45:34Z2009-09-15T12:45:34ZIt doesn't matter it works fine <b>now</b> :) It works only by accident. It can stop working the moment you start using another compiler or even another version of the same compiler. It's <b>UNDEFINED BEHAVIOR</b>. The reason it works now is because when you have initialization code in one of the widget's files compiler <b>happens</b> to initialize your resources first. Pure luck, nothing more. If you don't want to get your program working 0% one sunny day follow instructions to avoid <i>static initialization order fiasco</i>.http://stackoverflow.com/questions/1392863/initializing-qt-resources-embedded-in-static-library/1392945#1392945Comment by Piotr Dobrogost on Initializing qt resources embedded in static libraryPiotr Dobrogost2009-09-14T07:55:02Z2009-09-14T07:55:02ZUsing <code>inline</code> above doesn't buy you anything as you have no guarantee it will be respected by a compiler. <i>Not</i> respecting this keyword is in accordance with c++ standard. So if this <i>solution</i> is based on assumption inline function will be inlined it's broken.http://stackoverflow.com/questions/1302874/how-to-know-when-a-web-page-is-loaded-when-using-qtwebkit/1333991#1333991Comment by Piotr Dobrogost on How to know when a web page is loaded when using QtWebKit?Piotr Dobrogost2009-08-29T08:24:23Z2009-08-29T08:24:23ZI tried using timer just to check if this would solve the problem at all. It works with timer and the most important thing is it's enough to set timer to only 10ms. This leads me to believe it's so short interval that it's only long enough to leave the function I was calling js from. This in turn leads me to suspect I have some timing issues in my code which are not related directly to the problem we are talking about. It's possible as I'm using QStateMachine and my own command queue (<a href="http://stackoverflow.com/questions/1265354" rel="nofollow">stackoverflow.com/questions/1265354</a>). So after our discussion I'm back to debugging...http://stackoverflow.com/questions/1302874/how-to-know-when-a-web-page-is-loaded-when-using-qtwebkit/1333991#1333991Comment by Piotr Dobrogost on How to know when a web page is loaded when using QtWebKit?Piotr Dobrogost2009-08-29T08:14:32Z2009-08-29T08:14:32Z<i>However, there is no guarantee (...)</i> That's why I wrote in my first comment above <i>I guess waiting only on finished() signal of QNAM is not enough as after receiving data QWebFrame has to modify DOM and maybe do other things before it's ready to handle js calls.</i> However, I can't afford 5 seconds timer (not even 1 second) as my app is making many requests and this would be too much waiting.