<?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 : Timer in vistataskdialog not fired</title>
  <link>http://forum.codejock.com/</link>
  <description><![CDATA[This is an XML content feed of; Codejock Developer Community : Calendar : Timer in vistataskdialog not fired]]></description>
  <copyright>Copyright (c) 2006-2013 Web Wiz Forums - All Rights Reserved.</copyright>
  <pubDate>Fri, 29 May 2026 16:20:13 +0000</pubDate>
  <lastBuildDate>Thu, 23 Jul 2009 19:33:40 +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=14804</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[Timer in vistataskdialog not fired : Why this post is in Calendar section?...]]></title>
   <link>http://forum.codejock.com/forum_posts.asp?TID=14804&amp;PID=51232&amp;title=timer-in-vistataskdialog-not-fired#51232</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="http://forum.codejock.com/member_profile.asp?PF=4721">mdoubson</a><br /><strong>Subject:</strong> 14804<br /><strong>Posted:</strong> 23 July 2009 at 7:33pm<br /><br />Why this post is in Calendar section?]]>
   </description>
   <pubDate>Thu, 23 Jul 2009 19:33:40 +0000</pubDate>
   <guid isPermaLink="true">http://forum.codejock.com/forum_posts.asp?TID=14804&amp;PID=51232&amp;title=timer-in-vistataskdialog-not-fired#51232</guid>
  </item> 
  <item>
   <title><![CDATA[Timer in vistataskdialog not fired :  Are you using VB6?If so, try...]]></title>
   <link>http://forum.codejock.com/forum_posts.asp?TID=14804&amp;PID=51221&amp;title=timer-in-vistataskdialog-not-fired#51221</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="http://forum.codejock.com/member_profile.asp?PF=2676">jpbro</a><br /><strong>Subject:</strong> 14804<br /><strong>Posted:</strong> 23 July 2009 at 3:46pm<br /><br />Are you using VB6?<br><br>If so, try this:<br><br>1) Start a new project.<br>2) Click the <b>Project</b> menu, and then click <b>References</b>. The <i>References </i>window appears.<br>3) Click the <b>Browse </b>button. The <i>Add Reference</i> window appears.<br>4) From the <b>Files of Type</b> list, choose <b>Active X Controls (*.ocx)</b>.<br>5) Navigate to the CJ bin folder (usually <i>c:\Program Files\Codejock Software\ActiveX\Xtreme SuitePro ActiveX v13.0.0\Bin</i>), then select the Codejock.Controls.13.0.0.ocx file, and then click <b>Open</b>.<br>6) Back on the <i>References window,</i> click <b>OK</b>.<br>7) Copy &amp; Paste this code into your form:<br><br><table width="99%"><tr><td><pre class="BBcode"><br>Option Explicit<br><br>Private WithEvents mo_Dialog As XtremeSuiteControls.TaskDialog<br><br>Private Sub Form_Load()<br>&nbsp;&nbsp; Set mo_Dialog = CreateObject("Codejock.TaskDialog.13.0.0") ' New XtremeSuiteControls.TaskDialog<br>&nbsp;&nbsp; With mo_Dialog<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; .EnableCallbackTimer = True<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; .ShowDialog<br>&nbsp;&nbsp; End With<br>End Sub<br><br>Private Sub mo_Dialog_Timer(ByVal MilliSeconds As Long, Reset As Variant)<br>&nbsp;&nbsp; Debug.Print MilliSeconds<br>End Sub<br></pre></td></tr></table><br><br>8) Run the project and you should see the milliseconds counting in your debug window.<br>]]>
   </description>
   <pubDate>Thu, 23 Jul 2009 15:46:38 +0000</pubDate>
   <guid isPermaLink="true">http://forum.codejock.com/forum_posts.asp?TID=14804&amp;PID=51221&amp;title=timer-in-vistataskdialog-not-fired#51221</guid>
  </item> 
  <item>
   <title><![CDATA[Timer in vistataskdialog not fired : Hiwhy the timer in vistataskdialog...]]></title>
   <link>http://forum.codejock.com/forum_posts.asp?TID=14804&amp;PID=51206&amp;title=timer-in-vistataskdialog-not-fired#51206</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="http://forum.codejock.com/member_profile.asp?PF=5386">StefanNbg</a><br /><strong>Subject:</strong> 14804<br /><strong>Posted:</strong> 23 July 2009 at 5:50am<br /><br />Hi<br>why the timer in vistataskdialog is not fired ?<br><br>What are the dependencies/controls I have to initiate before ?<br><br>I've initiated <br>lObject  = CREATEOBJECT("Codejock.SuiteControlsGlobalSettings.13.0.0")<br>lObject.ResourceFile = "x:\......\SuitePro.ResourceDe.dll"<br><br>The messagebox itself works fine, but though I've set&nbsp; <a href="XtremeSuiteC&#111;ntrols%7ETaskDialog%7EEnableCallbackTimer.html" target="_blank">EnableCallbackTimer</a> to true. In the timer event I wrote a windows message for the milliseconds, but nothing happens.<br>Also the markup does not function.<br><br>So what did I forget ?<br><br>Stefan<br>]]>
   </description>
   <pubDate>Thu, 23 Jul 2009 05:50:25 +0000</pubDate>
   <guid isPermaLink="true">http://forum.codejock.com/forum_posts.asp?TID=14804&amp;PID=51206&amp;title=timer-in-vistataskdialog-not-fired#51206</guid>
  </item> 
 </channel>
</rss>