<?xml version="1.0" encoding="utf-8" ?>
<?xml-stylesheet type="text/xsl" href="RSS_xslt_style.asp" version="1.0" ?>
<rss version="2.0" xmlns:WebWizForums="https://syndication.webwiz.net/rss_namespace/">
 <channel>
  <title>Codejock Developer Community : [SOLVED] Taskdialog with two Monitor&#039;s issue</title>
  <link>http://forum.codejock.com/</link>
  <description><![CDATA[This is an XML content feed of; Codejock Developer Community : Controls : [SOLVED] Taskdialog with two Monitor&#039;s issue]]></description>
  <copyright>Copyright (c) 2006-2013 Web Wiz Forums - All Rights Reserved.</copyright>
  <pubDate>Wed, 13 May 2026 07:58:03 +0000</pubDate>
  <lastBuildDate>Thu, 24 Feb 2011 02:02:51 +0000</lastBuildDate>
  <docs>http://blogs.law.harvard.edu/tech/rss</docs>
  <generator>Web Wiz Forums 12.04</generator>
  <ttl>360</ttl>
  <WebWizForums:feedURL>forum.codejock.com/RSS_post_feed.asp?TID=17866</WebWizForums:feedURL>
  <image>
   <title><![CDATA[Codejock Developer Community]]></title>
   <url>http://forum.codejock.com/forum_images/codejock-logo.gif</url>
   <link>http://forum.codejock.com/</link>
  </image>
  <item>
   <title><![CDATA[[SOLVED] Taskdialog with two Monitor&#039;s issue : .ParentHWND works fine! Thank...]]></title>
   <link>http://forum.codejock.com/forum_posts.asp?TID=17866&amp;PID=62944&amp;title=solved-taskdialog-with-two-monitors-issue#62944</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="http://forum.codejock.com/member_profile.asp?PF=6345">dadoom</a><br /><strong>Subject:</strong> 17866<br /><strong>Posted:</strong> 24 February 2011 at 2:02am<br /><br />.ParentHWND works fine! Thank you&nbsp;<img src="http://forum.codejock.com/smileys/smiley4.gif" border="0" alt="Big smile" title="Big smile" />]]>
   </description>
   <pubDate>Thu, 24 Feb 2011 02:02:51 +0000</pubDate>
   <guid isPermaLink="true">http://forum.codejock.com/forum_posts.asp?TID=17866&amp;PID=62944&amp;title=solved-taskdialog-with-two-monitors-issue#62944</guid>
  </item> 
  <item>
   <title><![CDATA[[SOLVED] Taskdialog with two Monitor&#039;s issue : Did you tried to set the properties...]]></title>
   <link>http://forum.codejock.com/forum_posts.asp?TID=17866&amp;PID=62691&amp;title=solved-taskdialog-with-two-monitors-issue#62691</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="http://forum.codejock.com/member_profile.asp?PF=4564">mimue</a><br /><strong>Subject:</strong> 17866<br /><strong>Posted:</strong> 16 February 2011 at 5:29am<br /><br />Did you tried to set the properties ParentHwnd and RelativePositionof the task dialog? This should work.<br>]]>
   </description>
   <pubDate>Wed, 16 Feb 2011 05:29:11 +0000</pubDate>
   <guid isPermaLink="true">http://forum.codejock.com/forum_posts.asp?TID=17866&amp;PID=62691&amp;title=solved-taskdialog-with-two-monitors-issue#62691</guid>
  </item> 
  <item>
   <title><![CDATA[[SOLVED] Taskdialog with two Monitor&#039;s issue :  Hello, i have a problem using...]]></title>
   <link>http://forum.codejock.com/forum_posts.asp?TID=17866&amp;PID=62560&amp;title=solved-taskdialog-with-two-monitors-issue#62560</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="http://forum.codejock.com/member_profile.asp?PF=6345">dadoom</a><br /><strong>Subject:</strong> 17866<br /><strong>Posted:</strong> 11 February 2011 at 7:00am<br /><br />Hello, i have a problem using the taskdialog and two monitors.<br>At work I'm haveing a winXP Sp3 and vb6 sp6 and those two Monitors on a GeForce 9600GT<br><br>I have two taskdialogs in my projekt one of them looks good the other one appears in the center of Both screens (also on pc's that not have those two monitors) and even if i disable the 2th monitor in the viewproberty of winXP the 'error' still occur.<br>&nbsp;<br>Its the same on my home PC (Win7, vb6 sp6 and never head two monitors).<br>I allready deleted the taskdialog with the problem from the from and copied the working one from the other form but it's stell the same <br><br><img src="http://www.ezis&#111;nline.de/codejock/taskdialog.jpg" border="0" /><br>Code of the non working<br>With TaskDialog<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; <br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; .Reset<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; <br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; .MessageBoxStyle = True<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; .WindowTitle = "Übersicht"<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; .MainInstructionText = "Kunde unwiderruflich löschen?"<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; .MainIcon = xtpTaskIconWarning<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; <br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; .ContentText = "..."<br><br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; .ExpandedInformationText = "..."<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; .CollapsedControlText = "Was wird gelöscht?"<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; .ExpandedControlText = "Was wird gelöscht - ausblenden"<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; <br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; .FooterText = "..."<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; .FooterIcon = xtpTaskIconInformation<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; <br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; .DialogWidth = 200<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; <br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; .AddButton "Ja", 101<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; .AddButton "Nein", 102<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; .DefaultButton = 102<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; <br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; .ShowDialog<br>&nbsp;&nbsp;&nbsp; <br>End With<br><br><br><img src="http://www.ezis&#111;nline.de/codejock/taskdialog2.jpg" border="0" /><br>Code of the non working<br>With TaskDialog<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; <br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; .Reset<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; <br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; .MessageBoxStyle = True<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; .WindowTitle = "..."<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; .MainInstructionText = "... unwiderruflich löschen?"<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; .MainIcon = xtpTaskIconWarning<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; <br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; .ContentText = "..."<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; <br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; .FooterText = "..."<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; .FooterIcon = xtpTaskIconInformation<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; <br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; .DialogWidth = 200<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; <br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; .AddButton "Ja", 101<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; .AddButton "Nein", 102<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; .DefaultButton = 102<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; <br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; .ShowDialog<br>&nbsp;&nbsp;&nbsp; <br>&nbsp;&nbsp;&nbsp; End With<br><br>is there any way to get this right?<br>]]>
   </description>
   <pubDate>Fri, 11 Feb 2011 07:00:25 +0000</pubDate>
   <guid isPermaLink="true">http://forum.codejock.com/forum_posts.asp?TID=17866&amp;PID=62560&amp;title=solved-taskdialog-with-two-monitors-issue#62560</guid>
  </item> 
 </channel>
</rss>