

<rss version="2.0"
	xmlns:atom="http://www.w3.org/2005/Atom" 
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:admin="http://webns.net/mvcb/"
	xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#">
		
	<channel>
		<title>RSS Feeds :: DEVPPL - Forums > Visual Basic Forum</title>
	<!--<atom:link href="http://www.devppl.com/forum" rel="self" type="application/rss+xml" />-->
		<description>TOGETHER WE ARE THE BEST</description>
		<link>http://www.devppl.com/forum</link>
		<language>en-gb</language>
		<pubDate>Tue, 17 Aug 2004 14:07:13 +0100</pubDate>
		<lastBuildDate>Fri, 20 Nov 2009 22:20:49 +0000</lastBuildDate>
		<docs>http://blogs.law.harvard.edu/tech/rss</docs>
		<generator>MSSTI v0.0.1 - (C) 2008 leviatan21 - http://www.mssti.com/</generator>
		<copyright>Copyright : (c) RSS Feeds :: DEVPPL - Tue, 17 Aug 2004 14:07:13 +0100</copyright>
		<dc:creator>webmaster@devppl.com (DEVPPL)</dc:creator>

		<image>
			<title>RSS Feeds :: DEVPPL - Forums > Visual Basic Forum</title>
			<url>http://www.devppl.com/forum/styles/DEVPPL/imageset/site_logo.gif</url>
			<link>http://www.devppl.com/forum</link>
		</image>
		<ttl>60</ttl>
		
		<item>
			<title>Content Based Image Retrieval in VB -- How to &quot;mask&quot;???</title>
			<link>http://www.devppl.com/forum/./viewtopic.php?p=55637#p55637</link>
				<description><![CDATA[ I'm getting into something I've never done before, and need to be pointed
in a direction.  In general terms, I'm needing to compare a query image
(jpeg) to a table of images, and identify which element of the table
contains a match to the query image.  More accurately, each image in the
table has been "blacked out," except for precisely defined "regions of
interest."  On the other hand, the "regions of interest" in each query
image may be thought of as opaquely overlaying a photographed image.  By
removing all the extraneous material in the query image (ie. blacking it
out, and leaving untouched the query image's "regions of interest," the
now-simplified query image can be compared to each "simplified" table
image.  At some point, a match will occur, and, knowing the "identity" of
the matched table entry, I will have determined the "identity" of the query
image.  Voila!<br /><br />Regarding the table images, the "blackin...<p>Statistics : Posted by <a href="http://www.devppl.com/forum/memberlist.php?mode=viewprofile&amp;u=45732">cwalkeralso</a> &bull; on Thu Nov 19, 2009 3:42 pm &bull; Replies 0 &bull; Views 16</p><hr />]]></description>
					<content:encoded><![CDATA[ I'm getting into something I've never done before, and need to be pointed
in a direction.  In general terms, I'm needing to compare a query image
(jpeg) to a table of images, and identify which element of the table
contains a match to the query image.  More accurately, each image in the
table has been "blacked out," except for precisely defined "regions of
interest."  On the other hand, the "regions of interest" in each query
image may be thought of as opaquely overlaying a photographed image.  By
removing all the extraneous material in the query image (ie. blacking it
out, and leaving untouched the query image's "regions of interest," the
now-simplified query image can be compared to each "simplified" table
image.  At some point, a match will occur, and, knowing the "identity" of
the matched table entry, I will have determined the "identity" of the query
image.  Voila!<br /><br />Regarding the table images, the "blackin...]]></content:encoded>
					<category domain="http://www.devppl.com/forum/viewforum.php?f=57"><![CDATA[Visual Basic Forum]]></category>
			<dc:creator><![CDATA[45732]]></dc:creator>
			<dc:date>2009-11-19T14:42:36+00:00</dc:date>
			<guid isPermaLink="false">http://www.devppl.com/forum/./viewtopic.php?p=55637#p55637</guid>
		</item>
			<item>
			<title>Help With Shopping Cart - VB 2008</title>
			<link>http://www.devppl.com/forum/./viewtopic.php?p=55602#p55602</link>
				<description><![CDATA[  I have to create a shopping cart using 3 forms. There is a menu on the
main form. If you select from the menu the PrintBook form, it gives you a
list of books. If you select from the list, the name should populate the
list box on the main form and then add the price of the book to the
subtotal label on the main form also. When I try this it adds the book to
the main form list box but places 0.00 in the Subtotal label instead of the
price of the book.. See the code below. The first is for the main form and
the 2nd is the print book form..<br /><br /><span style="color:
#4040FF">//This is the main forms code.. </span> <br />Option Strict On<br
/><br />Public Class frmMain<br />    'Dim strInput As String              
       ' Input<br />    Dim strOut As String = String.Empty<br /><br />   
Public selectChoice As Boolean = False<br />    'Reset the Form Main<br /> 
  Private Sub mnuFileReset_Click(ByVal sender As System.Object, ByVal e As
System.EventArgs) Handles mnuFileReset.Click<br />        lblSubtotal.Text
= String.Empty<br />        lblTax.Text...<p>Statistics : Posted by <a href="http://www.devppl.com/forum/memberlist.php?mode=viewprofile&amp;u=45715">gualm</a> &bull; on Wed Nov 18, 2009 4:31 pm &bull; Replies 0 &bull; Views 17</p><hr />]]></description>
					<content:encoded><![CDATA[  I have to create a shopping cart using 3 forms. There is a menu on the
main form. If you select from the menu the PrintBook form, it gives you a
list of books. If you select from the list, the name should populate the
list box on the main form and then add the price of the book to the
subtotal label on the main form also. When I try this it adds the book to
the main form list box but places 0.00 in the Subtotal label instead of the
price of the book.. See the code below. The first is for the main form and
the 2nd is the print book form..<br /><br /><span style="color:
#4040FF">//This is the main forms code.. </span> <br />Option Strict On<br
/><br />Public Class frmMain<br />    'Dim strInput As String              
       ' Input<br />    Dim strOut As String = String.Empty<br /><br />   
Public selectChoice As Boolean = False<br />    'Reset the Form Main<br /> 
  Private Sub mnuFileReset_Click(ByVal sender As System.Object, ByVal e As
System.EventArgs) Handles mnuFileReset.Click<br />        lblSubtotal.Text
= String.Empty<br />        lblTax.Text...]]></content:encoded>
					<category domain="http://www.devppl.com/forum/viewforum.php?f=57"><![CDATA[Visual Basic Forum]]></category>
			<dc:creator><![CDATA[45715]]></dc:creator>
			<dc:date>2009-11-18T15:31:07+00:00</dc:date>
			<guid isPermaLink="false">http://www.devppl.com/forum/./viewtopic.php?p=55602#p55602</guid>
		</item>
			<item>
			<title>if statement is ignored???</title>
			<link>http://www.devppl.com/forum/./viewtopic.php?p=55565#p55565</link>
				<description><![CDATA[  I'm in Reflection for UNIX and OpenVMS on a Windows XP system. I've gone
around and around and can't figure out why the if statement is ignored when
I run this macro. It goes through the array without a problem unless the
Yes// comes up. Then it just halts. All I want it to do is enter two times
at the Yes// Prompt. I can CR manually and the macro with continue to run
it is as if the if statement does not exist. Any suggestions?<br /><br
/><div class="codetitle"><b>Code:</b></div><div class="codecontent"> Sub
Test()<br /><br />&nbsp; &nbsp; Const NEVER_TIME_OUT = 0<br /><br />&nbsp;
&nbsp; Dim CR As String ' Chr$(rcCR) = Chr$(13) = Control-M<br />&nbsp;
&nbsp; Dim myArray(3)<br />&nbsp; &nbsp; <br />&nbsp; &nbsp; myArray(0) =
"1"<br />&nbsp; &nbsp; myArray(1) = "2"<br />&nbsp; &nbsp; myArray(2) =
"3"<br />&nbsp; &nbsp; myArray(3) = "4"<br />&nbsp; &nbsp; <br />&nbsp;
&nbsp; CR = Chr(Reflection2.ControlCodes.rcCR)<br /><br />&nbsp; &nbsp;
With Session<br /><br /> For i = 0 To 3<br /><br />&nbsp; &nbsp; Do While
Not .WaitForString("Select:", NEVER_TIME_OUT, rcAllowKeystrokes)<br /><br
/>&nbsp; &nbsp;If .WaitForString("Yes//", NEVER_TIME_OUT,
rcAllowKeystrokes) Then<br />&nbsp; &nbsp;.Transmit CR<br />&nbsp;
&nbsp;.Transmit CR<br />&nbsp; &nbsp;Exit Do<br />&nbsp; &nbsp;End If<br
/>&nbsp; &nbsp; Lo</div>...<p>Statistics : Posted by <a href="http://www.devppl.com/forum/memberlist.php?mode=viewprofile&amp;u=45708">SFCHTM</a> &bull; on Tue Nov 17, 2009 4:11 pm &bull; Replies 0 &bull; Views 17</p><hr />]]></description>
					<content:encoded><![CDATA[  I'm in Reflection for UNIX and OpenVMS on a Windows XP system. I've gone
around and around and can't figure out why the if statement is ignored when
I run this macro. It goes through the array without a problem unless the
Yes// comes up. Then it just halts. All I want it to do is enter two times
at the Yes// Prompt. I can CR manually and the macro with continue to run
it is as if the if statement does not exist. Any suggestions?<br /><br
/><div class="codetitle"><b>Code:</b></div><div class="codecontent"> Sub
Test()<br /><br />&nbsp; &nbsp; Const NEVER_TIME_OUT = 0<br /><br />&nbsp;
&nbsp; Dim CR As String ' Chr$(rcCR) = Chr$(13) = Control-M<br />&nbsp;
&nbsp; Dim myArray(3)<br />&nbsp; &nbsp; <br />&nbsp; &nbsp; myArray(0) =
"1"<br />&nbsp; &nbsp; myArray(1) = "2"<br />&nbsp; &nbsp; myArray(2) =
"3"<br />&nbsp; &nbsp; myArray(3) = "4"<br />&nbsp; &nbsp; <br />&nbsp;
&nbsp; CR = Chr(Reflection2.ControlCodes.rcCR)<br /><br />&nbsp; &nbsp;
With Session<br /><br /> For i = 0 To 3<br /><br />&nbsp; &nbsp; Do While
Not .WaitForString("Select:", NEVER_TIME_OUT, rcAllowKeystrokes)<br /><br
/>&nbsp; &nbsp;If .WaitForString("Yes//", NEVER_TIME_OUT,
rcAllowKeystrokes) Then<br />&nbsp; &nbsp;.Transmit CR<br />&nbsp;
&nbsp;.Transmit CR<br />&nbsp; &nbsp;Exit Do<br />&nbsp; &nbsp;End If<br
/>&nbsp; &nbsp; Lo</div>...]]></content:encoded>
					<category domain="http://www.devppl.com/forum/viewforum.php?f=57"><![CDATA[Visual Basic Forum]]></category>
			<dc:creator><![CDATA[45708]]></dc:creator>
			<dc:date>2009-11-17T15:11:23+00:00</dc:date>
			<guid isPermaLink="false">http://www.devppl.com/forum/./viewtopic.php?p=55565#p55565</guid>
		</item>
			<item>
			<title>Help with infinite loop</title>
			<link>http://www.devppl.com/forum/./viewtopic.php?p=55471#p55471</link>
				<description><![CDATA[Public Class OddNumbersForm<br />   ' display odd numbers from one to
number input by user<br />   Private Sub viewButton_Click(ByVal sender As
System.Object, _<br />      ByVal e As System.EventArgs) Handles
viewButton.Click<br /><br />        Dim limit As Integer ' upper limit set
by user<br />      Dim counter As Integer = 1 ' counter begins at 1<br
/><br />        resultsListBox.Items.Clear() ' clear ListBox<br />     
limit = Val(limitTextBox.Text) ' retrieve upper limit<br />     
resultsListBox.Items.Add("Odd numbers:") ' display header<br /><br />      
 Do While counter<br />            ' display odd number<br />           
resultsListBox.Items.Add(counter)<br /><br />            limit += 2 '
increment counter<br /><br />        Loop<br /><br />    End Sub<br /><br
/><br />Of course I am getting a infinite loop, any ideas on how I should
stop this.<br /><br />Thanks in advance<p>Statistics : Posted by <a href="http://www.devppl.com/forum/memberlist.php?mode=viewprofile&amp;u=45681">nickstone</a> &bull; on Sat Nov 14, 2009 4:35 pm &bull; Replies 0 &bull; Views 25</p><hr />]]></description>
					<content:encoded><![CDATA[Public Class OddNumbersForm<br />   ' display odd numbers from one to
number input by user<br />   Private Sub viewButton_Click(ByVal sender As
System.Object, _<br />      ByVal e As System.EventArgs) Handles
viewButton.Click<br /><br />        Dim limit As Integer ' upper limit set
by user<br />      Dim counter As Integer = 1 ' counter begins at 1<br
/><br />        resultsListBox.Items.Clear() ' clear ListBox<br />     
limit = Val(limitTextBox.Text) ' retrieve upper limit<br />     
resultsListBox.Items.Add("Odd numbers:") ' display header<br /><br />      
 Do While counter<br />            ' display odd number<br />           
resultsListBox.Items.Add(counter)<br /><br />            limit += 2 '
increment counter<br /><br />        Loop<br /><br />    End Sub<br /><br
/><br />Of course I am getting a infinite loop, any ideas on how I should
stop this.<br /><br />Thanks in advance]]></content:encoded>
					<category domain="http://www.devppl.com/forum/viewforum.php?f=57"><![CDATA[Visual Basic Forum]]></category>
			<dc:creator><![CDATA[45681]]></dc:creator>
			<dc:date>2009-11-14T15:35:41+00:00</dc:date>
			<guid isPermaLink="false">http://www.devppl.com/forum/./viewtopic.php?p=55471#p55471</guid>
		</item>
			<item>
			<title>Re: Need Help making this Program</title>
			<link>http://www.devppl.com/forum/./viewtopic.php?p=55363#p55363</link>
				<description><![CDATA[Err.. What exactly is the program supposed to do?<p>Statistics : Posted by <a href="http://www.devppl.com/forum/memberlist.php?mode=viewprofile&amp;u=917">dafunkymunky</a> &bull; on Mon Nov 02, 2009 10:20 pm &bull; Replies 1 &bull; Views 96</p><hr />]]></description>
					<content:encoded><![CDATA[Err.. What exactly is the program supposed to do?]]></content:encoded>
					<category domain="http://www.devppl.com/forum/viewforum.php?f=57"><![CDATA[Visual Basic Forum]]></category>
			<dc:creator><![CDATA[917]]></dc:creator>
			<dc:date>2009-11-11T18:45:27+00:00</dc:date>
			<guid isPermaLink="false">http://www.devppl.com/forum/./viewtopic.php?p=55363#p55363</guid>
		</item>
			<item>
			<title>speech redirection from Skype to Sphinx4 and vice versa</title>
			<link>http://www.devppl.com/forum/./viewtopic.php?p=55337#p55337</link>
				<description><![CDATA[ Hello <img
src="http://www.devppl.com/forum/images/smilies//icon_smile.gif" alt=":-)"
title="Smile" />!<br /><br />I'd like to create simple system for speech
recognition such that:<br />1. user makes a call from mobile phone<br />2.
Skype (maybe with MyToGo) on server automatically receives this call<br
/>3. application in VB redirects speech from Skype to Sphinx4<br />4.
Sphinx4 recognizes spoken words and answers according to them<br />5.
speech answer is redirected to Skype with the use of VB application<br />6.
user on mobile phone hears the answer<br />7. and so on <img
src="http://www.devppl.com/forum/images/smilies//icon_smile.gif" alt=":-)"
title="Smile" /><br />8. user finished the talk<br /><br />Can you give me
any suggestions how to write this VB application so that:<br />1. call is
automatically received on Skype (maybe it can be done in Skype itself,
without need of VB)<br />2. how to redirect speech from Skype to Sphinx4
and vice versa<br /><br />Greetings <img
src="http://www.devppl.com/forum/images/smilies//icon_smile.gif" alt=":-)"
title="Smile" />!<br /><br />PS...<p>Statistics : Posted by <a href="http://www.devppl.com/forum/memberlist.php?mode=viewprofile&amp;u=45644">johnyjj2</a> &bull; on Tue Nov 10, 2009 6:27 pm &bull; Replies 0 &bull; Views 21</p><hr />]]></description>
					<content:encoded><![CDATA[ Hello <img
src="http://www.devppl.com/forum/images/smilies//icon_smile.gif" alt=":-)"
title="Smile" />!<br /><br />I'd like to create simple system for speech
recognition such that:<br />1. user makes a call from mobile phone<br />2.
Skype (maybe with MyToGo) on server automatically receives this call<br
/>3. application in VB redirects speech from Skype to Sphinx4<br />4.
Sphinx4 recognizes spoken words and answers according to them<br />5.
speech answer is redirected to Skype with the use of VB application<br />6.
user on mobile phone hears the answer<br />7. and so on <img
src="http://www.devppl.com/forum/images/smilies//icon_smile.gif" alt=":-)"
title="Smile" /><br />8. user finished the talk<br /><br />Can you give me
any suggestions how to write this VB application so that:<br />1. call is
automatically received on Skype (maybe it can be done in Skype itself,
without need of VB)<br />2. how to redirect speech from Skype to Sphinx4
and vice versa<br /><br />Greetings <img
src="http://www.devppl.com/forum/images/smilies//icon_smile.gif" alt=":-)"
title="Smile" />!<br /><br />PS...]]></content:encoded>
					<category domain="http://www.devppl.com/forum/viewforum.php?f=57"><![CDATA[Visual Basic Forum]]></category>
			<dc:creator><![CDATA[45644]]></dc:creator>
			<dc:date>2009-11-10T17:27:32+00:00</dc:date>
			<guid isPermaLink="false">http://www.devppl.com/forum/./viewtopic.php?p=55337#p55337</guid>
		</item>
			<item>
			<title>Visual Basic - questions</title>
			<link>http://www.devppl.com/forum/./viewtopic.php?p=55240#p55240</link>
				<description><![CDATA[can you guys help me out,please<br />i don't know what is the difference
between event procedures and general procedures <img
src="http://www.devppl.com/forum/images/smilies//icon_sad.gif" alt=":("
title="Sad" />. And Why do we use general procedures? How are general
procedures executed? Describe in one sentence how you could improve it for
the user . Explain how arguments and parameters work when a procedure is
called? What happens when a ByVal parameter is used ? Give an example. What
happens when a ByRef parameter is used ? Give an example. How are static
variables differerent from local and global ones?<br />thanks<p>Statistics : Posted by <a href="http://www.devppl.com/forum/memberlist.php?mode=viewprofile&amp;u=45596">msntca</a> &bull; on Wed Nov 04, 2009 7:36 pm &bull; Replies 0 &bull; Views 49</p><hr />]]></description>
					<content:encoded><![CDATA[can you guys help me out,please<br />i don't know what is the difference
between event procedures and general procedures <img
src="http://www.devppl.com/forum/images/smilies//icon_sad.gif" alt=":("
title="Sad" />. And Why do we use general procedures? How are general
procedures executed? Describe in one sentence how you could improve it for
the user . Explain how arguments and parameters work when a procedure is
called? What happens when a ByVal parameter is used ? Give an example. What
happens when a ByRef parameter is used ? Give an example. How are static
variables differerent from local and global ones?<br />thanks]]></content:encoded>
					<category domain="http://www.devppl.com/forum/viewforum.php?f=57"><![CDATA[Visual Basic Forum]]></category>
			<dc:creator><![CDATA[45596]]></dc:creator>
			<dc:date>2009-11-04T18:36:17+00:00</dc:date>
			<guid isPermaLink="false">http://www.devppl.com/forum/./viewtopic.php?p=55240#p55240</guid>
		</item>
			<item>
			<title>Re: Pls Help..Excel File is gettin Visible while copyin usin VB6</title>
			<link>http://www.devppl.com/forum/./viewtopic.php?p=55119#p55119</link>
				<description><![CDATA[Sorry for late response<br /><br />the problem i got was solved<br /><span
style="font-weight: bold"><br />cause of issue:</span> <br />Excel is
getting visible when i am trying to copy/move any sheets that contains the
some ActiveX components like Button, text boxes etc., <br />This problem is
only office 2007 Sp2 only.<br /><br />i have solved the problem by
replacing tha activex components with some other components.<br /><br
/>Thanks,<br />Eliyaz. K<p>Statistics : Posted by <a href="http://www.devppl.com/forum/memberlist.php?mode=viewprofile&amp;u=45177">eliyazk</a> &bull; on Wed Sep 30, 2009 9:57 am &bull; Replies 1 &bull; Views 51</p><hr />]]></description>
					<content:encoded><![CDATA[Sorry for late response<br /><br />the problem i got was solved<br /><span
style="font-weight: bold"><br />cause of issue:</span> <br />Excel is
getting visible when i am trying to copy/move any sheets that contains the
some ActiveX components like Button, text boxes etc., <br />This problem is
only office 2007 Sp2 only.<br /><br />i have solved the problem by
replacing tha activex components with some other components.<br /><br
/>Thanks,<br />Eliyaz. K]]></content:encoded>
					<category domain="http://www.devppl.com/forum/viewforum.php?f=57"><![CDATA[Visual Basic Forum]]></category>
			<dc:creator><![CDATA[45177]]></dc:creator>
			<dc:date>2009-10-29T06:58:29+00:00</dc:date>
			<guid isPermaLink="false">http://www.devppl.com/forum/./viewtopic.php?p=55119#p55119</guid>
		</item>
			<item>
			<title>Re: VB Calcuation Returns &quot;Infinity&quot; as Value</title>
			<link>http://www.devppl.com/forum/./viewtopic.php?p=54937#p54937</link>
				<description><![CDATA[Dim value1 as Integer = 445<br />Dim value2 as Integer = 1980<br />Dim
value3 as Integer = value1 ^ value2<br /><br />The result is too big to
store in a variable. Use the Variant data type for result if available.
Surprisingly the same values are valid in the Windows Calculator using the
x ^ y function.<br /><br />Let me know the requirement of such big values.<p>Statistics : Posted by <a href="http://www.devppl.com/forum/memberlist.php?mode=viewprofile&amp;u=45245">bytelogik</a> &bull; on Thu Oct 22, 2009 4:17 am &bull; Replies 1 &bull; Views 35</p><hr />]]></description>
					<content:encoded><![CDATA[Dim value1 as Integer = 445<br />Dim value2 as Integer = 1980<br />Dim
value3 as Integer = value1 ^ value2<br /><br />The result is too big to
store in a variable. Use the Variant data type for result if available.
Surprisingly the same values are valid in the Windows Calculator using the
x ^ y function.<br /><br />Let me know the requirement of such big values.]]></content:encoded>
					<category domain="http://www.devppl.com/forum/viewforum.php?f=57"><![CDATA[Visual Basic Forum]]></category>
			<dc:creator><![CDATA[45245]]></dc:creator>
			<dc:date>2009-10-22T06:21:01+01:00</dc:date>
			<guid isPermaLink="false">http://www.devppl.com/forum/./viewtopic.php?p=54937#p54937</guid>
		</item>
			<item>
			<title>Try-Catch feature for VB6, VBA, VBScript</title>
			<link>http://www.devppl.com/forum/./viewtopic.php?p=54828#p54828</link>
				<description><![CDATA[Hi Everyone, <br /><br />This code sample enables structured exception
handling for classical Visual Basic programs like VB.net Try-Catch
statement. <br /><a
href="http://sites.google.com/site/truetryforvisualbasic/" class="postlink"
onclick="this.target='_blank';"
rel="nofollow">http://sites.google.com/site/truetryforvisualbasic/</a><br
/><br /><img
src="http://sites.google.com/site/truetryforvisualbasic/_/rsrc/1255031666912/home/TryCompare.PNG"
alt="Image" /><p>Statistics : Posted by <a href="http://www.devppl.com/forum/memberlist.php?mode=viewprofile&amp;u=45419">RobEin</a> &bull; on Sun Oct 18, 2009 10:43 am &bull; Replies 0 &bull; Views 63</p><hr />]]></description>
					<content:encoded><![CDATA[Hi Everyone, <br /><br />This code sample enables structured exception
handling for classical Visual Basic programs like VB.net Try-Catch
statement. <br /><a
href="http://sites.google.com/site/truetryforvisualbasic/" class="postlink"
onclick="this.target='_blank';"
rel="nofollow">http://sites.google.com/site/truetryforvisualbasic/</a><br
/><br /><img
src="http://sites.google.com/site/truetryforvisualbasic/_/rsrc/1255031666912/home/TryCompare.PNG"
alt="Image" />]]></content:encoded>
					<category domain="http://www.devppl.com/forum/viewforum.php?f=57"><![CDATA[Visual Basic Forum]]></category>
			<dc:creator><![CDATA[45419]]></dc:creator>
			<dc:date>2009-10-18T10:43:54+01:00</dc:date>
			<guid isPermaLink="false">http://www.devppl.com/forum/./viewtopic.php?p=54828#p54828</guid>
		</item>
			<item>
			<title>Help Access connection, textbox error</title>
			<link>http://www.devppl.com/forum/./viewtopic.php?p=54806#p54806</link>
				<description><![CDATA[  Okay so i have a text box that should show the last entered record when i
click a button, i have got it to get the correct record however i am
getting an error the record is an autonumber called customerid, the text
box only shows the last digit of the auto number the autonumbers go up like
this <br /><br />0001<br />0002<br />0003<br />etc <br />(thats how theyre
formated in access) <br />but the text box only shows 3 instead of 0003 <br
/>i tried changing the format to 1000 so it went up like this <br />1001<br
/>1002<br />1003<br />still the text box only showed 3, what is going
wrong?, thanks in advance<br /><br />here is my code<br /><br /><br /><div
class="codetitle"><b>Code:</b></div><div class="codecontent">&nbsp; &nbsp;
&nbsp; &nbsp; &nbsp;provider4 = "PROVIDER=Microsoft.Jet.OLEDB.4.0;"
'database provider established<br />&nbsp; &nbsp; &nbsp; &nbsp; dbcustomer
= "data Source = ..\..\Booking.mdb"<br />&nbsp; &nbsp; &nbsp; &nbsp;
customerconnection.ConnectionString = provider4 & dbcustomer 'connect the
database and the database provider<br />&nbsp; &nbsp; &nbsp; &nbsp;
Bookingconnection.Open()<br />&nbsp; &nbsp; &nbsp; &nbsp; SqlQuery4 =
"SELECT * FROM&nbsp; Customer WHERE CustomerID = (S</div>...<p>Statistics : Posted by <a href="http://www.devppl.com/forum/memberlist.php?mode=viewprofile&amp;u=45414">valgris</a> &bull; on Sat Oct 17, 2009 7:29 pm &bull; Replies 0 &bull; Views 30</p><hr />]]></description>
					<content:encoded><![CDATA[  Okay so i have a text box that should show the last entered record when i
click a button, i have got it to get the correct record however i am
getting an error the record is an autonumber called customerid, the text
box only shows the last digit of the auto number the autonumbers go up like
this <br /><br />0001<br />0002<br />0003<br />etc <br />(thats how theyre
formated in access) <br />but the text box only shows 3 instead of 0003 <br
/>i tried changing the format to 1000 so it went up like this <br />1001<br
/>1002<br />1003<br />still the text box only showed 3, what is going
wrong?, thanks in advance<br /><br />here is my code<br /><br /><br /><div
class="codetitle"><b>Code:</b></div><div class="codecontent">&nbsp; &nbsp;
&nbsp; &nbsp; &nbsp;provider4 = "PROVIDER=Microsoft.Jet.OLEDB.4.0;"
'database provider established<br />&nbsp; &nbsp; &nbsp; &nbsp; dbcustomer
= "data Source = ..\..\Booking.mdb"<br />&nbsp; &nbsp; &nbsp; &nbsp;
customerconnection.ConnectionString = provider4 & dbcustomer 'connect the
database and the database provider<br />&nbsp; &nbsp; &nbsp; &nbsp;
Bookingconnection.Open()<br />&nbsp; &nbsp; &nbsp; &nbsp; SqlQuery4 =
"SELECT * FROM&nbsp; Customer WHERE CustomerID = (S</div>...]]></content:encoded>
					<category domain="http://www.devppl.com/forum/viewforum.php?f=57"><![CDATA[Visual Basic Forum]]></category>
			<dc:creator><![CDATA[45414]]></dc:creator>
			<dc:date>2009-10-17T19:29:37+01:00</dc:date>
			<guid isPermaLink="false">http://www.devppl.com/forum/./viewtopic.php?p=54806#p54806</guid>
		</item>
			<item>
			<title>Re: Regular Expression</title>
			<link>http://www.devppl.com/forum/./viewtopic.php?p=54797#p54797</link>
				<description><![CDATA[You can use the function IsNumeric which takes the string as parameter to
discard the numeric values. But you will have to check the other symbolic
characters one by one.<br /><br />Also, you can store the values to be
discarded into an array and check if anyone of the value is present in the
string. This will be much more easier to validate a text string.<br /><br
/>Hope this helps.<p>Statistics : Posted by <a href="http://www.devppl.com/forum/memberlist.php?mode=viewprofile&amp;u=45245">bytelogik</a> &bull; on Mon Sep 07, 2009 12:23 pm &bull; Replies 1 &bull; Views 65</p><hr />]]></description>
					<content:encoded><![CDATA[You can use the function IsNumeric which takes the string as parameter to
discard the numeric values. But you will have to check the other symbolic
characters one by one.<br /><br />Also, you can store the values to be
discarded into an array and check if anyone of the value is present in the
string. This will be much more easier to validate a text string.<br /><br
/>Hope this helps.]]></content:encoded>
					<category domain="http://www.devppl.com/forum/viewforum.php?f=57"><![CDATA[Visual Basic Forum]]></category>
			<dc:creator><![CDATA[45245]]></dc:creator>
			<dc:date>2009-10-17T14:37:57+01:00</dc:date>
			<guid isPermaLink="false">http://www.devppl.com/forum/./viewtopic.php?p=54797#p54797</guid>
		</item>
			<item>
			<title>Re: I am in need of desperate help with this visual basic prob</title>
			<link>http://www.devppl.com/forum/./viewtopic.php?p=54796#p54796</link>
				<description><![CDATA[Try this:<br /><br />    Dim n As String<br />    Dim location As
Integer,lenOfString As Integer<br />    Dim DecimalLeft As Integer,
DecimalRight As Integer<br /><br />    n = "1.234567"<br />    lenOfString
= Len(n)<br />    location = InStr(n, ".")   'returns the position of
decimal point<br /><br />    DecimalLeft = location - 1<br />   
DecimalRight = (lenOfString - DecimalLeft) - 1<br />    MsgBox DecimalLeft
& ", " & DecimalRight<br /><br />Hope this helps.<p>Statistics : Posted by <a href="http://www.devppl.com/forum/memberlist.php?mode=viewprofile&amp;u=45245">bytelogik</a> &bull; on Mon Sep 28, 2009 2:49 am &bull; Replies 2 &bull; Views 89</p><hr />]]></description>
					<content:encoded><![CDATA[Try this:<br /><br />    Dim n As String<br />    Dim location As
Integer,lenOfString As Integer<br />    Dim DecimalLeft As Integer,
DecimalRight As Integer<br /><br />    n = "1.234567"<br />    lenOfString
= Len(n)<br />    location = InStr(n, ".")   'returns the position of
decimal point<br /><br />    DecimalLeft = location - 1<br />   
DecimalRight = (lenOfString - DecimalLeft) - 1<br />    MsgBox DecimalLeft
& ", " & DecimalRight<br /><br />Hope this helps.]]></content:encoded>
					<category domain="http://www.devppl.com/forum/viewforum.php?f=57"><![CDATA[Visual Basic Forum]]></category>
			<dc:creator><![CDATA[45245]]></dc:creator>
			<dc:date>2009-10-17T14:30:13+01:00</dc:date>
			<guid isPermaLink="false">http://www.devppl.com/forum/./viewtopic.php?p=54796#p54796</guid>
		</item>
			<item>
			<title>Re: combo boxes/refresh</title>
			<link>http://www.devppl.com/forum/./viewtopic.php?p=54795#p54795</link>
				<description><![CDATA[Assuming you are using VB6:<br /><br />Add whatever code you have in the
Click event of the first Combo Box. The Change Event won't work.<br /><br
/>Use the Refresh method of form<br /><br />Hope this helps.<p>Statistics : Posted by <a href="http://www.devppl.com/forum/memberlist.php?mode=viewprofile&amp;u=45245">bytelogik</a> &bull; on Mon Sep 07, 2009 12:24 pm &bull; Replies 2 &bull; Views 131</p><hr />]]></description>
					<content:encoded><![CDATA[Assuming you are using VB6:<br /><br />Add whatever code you have in the
Click event of the first Combo Box. The Change Event won't work.<br /><br
/>Use the Refresh method of form<br /><br />Hope this helps.]]></content:encoded>
					<category domain="http://www.devppl.com/forum/viewforum.php?f=57"><![CDATA[Visual Basic Forum]]></category>
			<dc:creator><![CDATA[45245]]></dc:creator>
			<dc:date>2009-10-17T14:15:00+01:00</dc:date>
			<guid isPermaLink="false">http://www.devppl.com/forum/./viewtopic.php?p=54795#p54795</guid>
		</item>
			<item>
			<title>Re: Print Preview using visual basic help...</title>
			<link>http://www.devppl.com/forum/./viewtopic.php?p=54794#p54794</link>
				<description><![CDATA[A few years ago, I was stuck with a similar problem, and I really did not
wanted to write all the Printer statements from code. I wrote a simple DB
to HTML code module and displayed the report in form of a web page. Then it
was a simple right click and print solution. Although it is rather rough
logic but still it will save you from writing larger amount of code like
margins, word-wrapping, etc.<br /><br />You can use other grid controls
which have direct print method, or the professional grid controls like
FlexGrid which can give you a lot of control over how you print the
database information.<br /><br />And lastly, you can write your own
GridPrinter module. It will consume a lot of logic and time, but it will be
completely of your own of-course.<br /><br />Hope this helps.<p>Statistics : Posted by <a href="http://www.devppl.com/forum/memberlist.php?mode=viewprofile&amp;u=45245">bytelogik</a> &bull; on Wed Sep 23, 2009 11:11 am &bull; Replies 2 &bull; Views 68</p><hr />]]></description>
					<content:encoded><![CDATA[A few years ago, I was stuck with a similar problem, and I really did not
wanted to write all the Printer statements from code. I wrote a simple DB
to HTML code module and displayed the report in form of a web page. Then it
was a simple right click and print solution. Although it is rather rough
logic but still it will save you from writing larger amount of code like
margins, word-wrapping, etc.<br /><br />You can use other grid controls
which have direct print method, or the professional grid controls like
FlexGrid which can give you a lot of control over how you print the
database information.<br /><br />And lastly, you can write your own
GridPrinter module. It will consume a lot of logic and time, but it will be
completely of your own of-course.<br /><br />Hope this helps.]]></content:encoded>
					<category domain="http://www.devppl.com/forum/viewforum.php?f=57"><![CDATA[Visual Basic Forum]]></category>
			<dc:creator><![CDATA[45245]]></dc:creator>
			<dc:date>2009-10-17T14:08:55+01:00</dc:date>
			<guid isPermaLink="false">http://www.devppl.com/forum/./viewtopic.php?p=54794#p54794</guid>
		</item>
			<item>
			<title>Re: Help with lblMsg in VB 6</title>
			<link>http://www.devppl.com/forum/./viewtopic.php?p=54532#p54532</link>
				<description><![CDATA[What you probably want to do is to add a public variable.<br />1.	add a
module to your project<br />2.	declare a Public variable<br /><br />Public
retStudentName as string<br />3.	Store the value of the student input to
that variable and you can use it anywhere in your project.<br /><br />How
to use:<br /><br />retStudentName = inmputbox(“Student Name”)<br /><br
/>Textbox1 = retStudentName<br />Msgbox (retStudentName)<br
/>lblStudentName.caption = retStudentName<br /><br />anything =
retStudentName<br /><br />Even form.caption = “Application Name: “ &
retStudentName<br /><br />The best part is that this variable will hold the
name of the student and it can be accessed by any form, subroutine, etc. in
your project.<br /><br />Note: I van't used VB6 for a long time. But if
it's not Public try Global declaration.<p>Statistics : Posted by <a href="http://www.devppl.com/forum/memberlist.php?mode=viewprofile&amp;u=45273">pachecf</a> &bull; on Wed Oct 07, 2009 6:15 pm &bull; Replies 3 &bull; Views 66</p><hr />]]></description>
					<content:encoded><![CDATA[What you probably want to do is to add a public variable.<br />1.	add a
module to your project<br />2.	declare a Public variable<br /><br />Public
retStudentName as string<br />3.	Store the value of the student input to
that variable and you can use it anywhere in your project.<br /><br />How
to use:<br /><br />retStudentName = inmputbox(“Student Name”)<br /><br
/>Textbox1 = retStudentName<br />Msgbox (retStudentName)<br
/>lblStudentName.caption = retStudentName<br /><br />anything =
retStudentName<br /><br />Even form.caption = “Application Name: “ &
retStudentName<br /><br />The best part is that this variable will hold the
name of the student and it can be accessed by any form, subroutine, etc. in
your project.<br /><br />Note: I van't used VB6 for a long time. But if
it's not Public try Global declaration.]]></content:encoded>
					<category domain="http://www.devppl.com/forum/viewforum.php?f=57"><![CDATA[Visual Basic Forum]]></category>
			<dc:creator><![CDATA[45273]]></dc:creator>
			<dc:date>2009-10-09T19:38:54+01:00</dc:date>
			<guid isPermaLink="false">http://www.devppl.com/forum/./viewtopic.php?p=54532#p54532</guid>
		</item>
			<item>
			<title>Re: I desperately need help with a problem</title>
			<link>http://www.devppl.com/forum/./viewtopic.php?p=54489#p54489</link>
				<description><![CDATA[This is simple:<br /><br />1. add a combo box to your form (combobox1)<br
/>2. double click your form and add the following to the form load event<br
/><br />'This will add the numbers from 1 to 100 to the combo box for
selection<br />For x = 1 To 100<br />     ComboBox1.Items.Add(x)<br
/>Next<br /><br />3. add a text box (TextBox1) to your form<br />4. double
click on your combobox1 control and add the following script to the
ComboBox1_SelectedIndexChanged event<br /><br />        Dim x, y, z As
Integer<br />        x = ComboBox1.Text<br />        x = x - 1<br />       
If x >= 2 Then<br />            z = 1<br />            For y = 1 To x<br />
               z = z * 2<br />            Next<br />        ElseIf x = 0
Then<br />            z = 1<br />        ElseIf x = 1 Then<br />           
z = 2<br />        End If<br />        TextBox1.Text = z<br /><br />5 Test
it !<p>Statistics : Posted by <a href="http://www.devppl.com/forum/memberlist.php?mode=viewprofile&amp;u=45273">pachecf</a> &bull; on Wed Oct 07, 2009 7:23 pm &bull; Replies 1 &bull; Views 70</p><hr />]]></description>
					<content:encoded><![CDATA[This is simple:<br /><br />1. add a combo box to your form (combobox1)<br
/>2. double click your form and add the following to the form load event<br
/><br />'This will add the numbers from 1 to 100 to the combo box for
selection<br />For x = 1 To 100<br />     ComboBox1.Items.Add(x)<br
/>Next<br /><br />3. add a text box (TextBox1) to your form<br />4. double
click on your combobox1 control and add the following script to the
ComboBox1_SelectedIndexChanged event<br /><br />        Dim x, y, z As
Integer<br />        x = ComboBox1.Text<br />        x = x - 1<br />       
If x >= 2 Then<br />            z = 1<br />            For y = 1 To x<br />
               z = z * 2<br />            Next<br />        ElseIf x = 0
Then<br />            z = 1<br />        ElseIf x = 1 Then<br />           
z = 2<br />        End If<br />        TextBox1.Text = z<br /><br />5 Test
it !]]></content:encoded>
					<category domain="http://www.devppl.com/forum/viewforum.php?f=57"><![CDATA[Visual Basic Forum]]></category>
			<dc:creator><![CDATA[45273]]></dc:creator>
			<dc:date>2009-10-09T01:10:31+01:00</dc:date>
			<guid isPermaLink="false">http://www.devppl.com/forum/./viewtopic.php?p=54489#p54489</guid>
		</item>
			<item>
			<title>Re: Add Text To a textbox by a button?</title>
			<link>http://www.devppl.com/forum/./viewtopic.php?p=54486#p54486</link>
				<description><![CDATA[You want to add text to a text box when pressing a button?<br /><br />Drop
a text box control and a command button control to your form.<br />Double
click the command button to start writing code.<br />and type:<br /><br
/>Text1.Text = "Anything you want here"<br /><br />Go to your form and
click one time on the Text1 control and set the scrollbar property to Both
and Multiline = True. This way you can write multiple lines so you can
later copy and paste somewhere else.<br /><br />You can try this:<br /><br
/>Text1.Text = "Anything line 1" & vbcrlf & "Second Line" & vbcrlf & "Third
Line"<br /><br />Or<br />Text1.Text = "Anything line 1" & vbcrlf & _<br /> 
                 "Second Line" & vbcrlf & _<br />                   "Third
Line"<p>Statistics : Posted by <a href="http://www.devppl.com/forum/memberlist.php?mode=viewprofile&amp;u=45273">pachecf</a> &bull; on Sun Oct 04, 2009 9:04 pm &bull; Replies 1 &bull; Views 70</p><hr />]]></description>
					<content:encoded><![CDATA[You want to add text to a text box when pressing a button?<br /><br />Drop
a text box control and a command button control to your form.<br />Double
click the command button to start writing code.<br />and type:<br /><br
/>Text1.Text = "Anything you want here"<br /><br />Go to your form and
click one time on the Text1 control and set the scrollbar property to Both
and Multiline = True. This way you can write multiple lines so you can
later copy and paste somewhere else.<br /><br />You can try this:<br /><br
/>Text1.Text = "Anything line 1" & vbcrlf & "Second Line" & vbcrlf & "Third
Line"<br /><br />Or<br />Text1.Text = "Anything line 1" & vbcrlf & _<br /> 
                 "Second Line" & vbcrlf & _<br />                   "Third
Line"]]></content:encoded>
					<category domain="http://www.devppl.com/forum/viewforum.php?f=57"><![CDATA[Visual Basic Forum]]></category>
			<dc:creator><![CDATA[45273]]></dc:creator>
			<dc:date>2009-10-08T21:27:21+01:00</dc:date>
			<guid isPermaLink="false">http://www.devppl.com/forum/./viewtopic.php?p=54486#p54486</guid>
		</item>
			<item>
			<title>Embed form in the title bar of an active window</title>
			<link>http://www.devppl.com/forum/./viewtopic.php?p=54455#p54455</link>
				<description><![CDATA[Hi i have created a form containing a text box and a button. i would like
to know if it is possible to embed this form in the title bar of the
current active window that is opened eg: ie,notepad,word<br />this is so
that i can enter a word in the text box and use text to speech to say it or
highlight a word in the active window and it will be placed in the text box
of my form. i can position the form in the top right location but then the
form position is stagnant.<br />any help will be much appreciated.<br
/>thanks<p>Statistics : Posted by <a href="http://www.devppl.com/forum/memberlist.php?mode=viewprofile&amp;u=45260">Trill</a> &bull; on Wed Oct 07, 2009 4:43 pm &bull; Replies 0 &bull; Views 34</p><hr />]]></description>
					<content:encoded><![CDATA[Hi i have created a form containing a text box and a button. i would like
to know if it is possible to embed this form in the title bar of the
current active window that is opened eg: ie,notepad,word<br />this is so
that i can enter a word in the text box and use text to speech to say it or
highlight a word in the active window and it will be placed in the text box
of my form. i can position the form in the top right location but then the
form position is stagnant.<br />any help will be much appreciated.<br
/>thanks]]></content:encoded>
					<category domain="http://www.devppl.com/forum/viewforum.php?f=57"><![CDATA[Visual Basic Forum]]></category>
			<dc:creator><![CDATA[45260]]></dc:creator>
			<dc:date>2009-10-07T16:43:56+01:00</dc:date>
			<guid isPermaLink="false">http://www.devppl.com/forum/./viewtopic.php?p=54455#p54455</guid>
		</item>
			<item>
			<title>Re: I need your help with creating/coding an application in VB 6</title>
			<link>http://www.devppl.com/forum/./viewtopic.php?p=54451#p54451</link>
				<description><![CDATA[Thank you<p>Statistics : Posted by <a href="http://www.devppl.com/forum/memberlist.php?mode=viewprofile&amp;u=45231">EntangledDesi</a> &bull; on Mon Oct 05, 2009 7:15 pm &bull; Replies 3 &bull; Views 73</p><hr />]]></description>
					<content:encoded><![CDATA[Thank you]]></content:encoded>
					<category domain="http://www.devppl.com/forum/viewforum.php?f=57"><![CDATA[Visual Basic Forum]]></category>
			<dc:creator><![CDATA[45231]]></dc:creator>
			<dc:date>2009-10-07T14:45:59+01:00</dc:date>
			<guid isPermaLink="false">http://www.devppl.com/forum/./viewtopic.php?p=54451#p54451</guid>
		</item>
			<item>
			<title>3D illumination</title>
			<link>http://www.devppl.com/forum/./viewtopic.php?p=54439#p54439</link>
				<description><![CDATA[Hi,<br /><br />If you like 3D Graphics programming, I have some interesting
code which deals with adding light to a 3D scene.<br /><br
/>"http://www.planet-source-code.com/vb/scripts/ShowCode.asp?txtCodeId=72519&lngWId=1"
onclick="this.target='_blank';" rel="nofollow"<br /><br />Hope it is
informative.<br /><br />Regards.<p>Statistics : Posted by <a href="http://www.devppl.com/forum/memberlist.php?mode=viewprofile&amp;u=45245">bytelogik</a> &bull; on Wed Oct 07, 2009 7:36 am &bull; Replies 0 &bull; Views 27</p><hr />]]></description>
					<content:encoded><![CDATA[Hi,<br /><br />If you like 3D Graphics programming, I have some interesting
code which deals with adding light to a 3D scene.<br /><br
/>"http://www.planet-source-code.com/vb/scripts/ShowCode.asp?txtCodeId=72519&lngWId=1"
onclick="this.target='_blank';" rel="nofollow"<br /><br />Hope it is
informative.<br /><br />Regards.]]></content:encoded>
					<category domain="http://www.devppl.com/forum/viewforum.php?f=57"><![CDATA[Visual Basic Forum]]></category>
			<dc:creator><![CDATA[45245]]></dc:creator>
			<dc:date>2009-10-07T07:36:59+01:00</dc:date>
			<guid isPermaLink="false">http://www.devppl.com/forum/./viewtopic.php?p=54439#p54439</guid>
		</item>
			<item>
			<title>Virtual Microphone</title>
			<link>http://www.devppl.com/forum/./viewtopic.php?p=53417#p53417</link>
				<description><![CDATA[Hi:<br />I have a requirement to send a sound bite thru the mic channel,
like a virtual microphone. Does anyone have an example how this can be
done?<br />Thanks for any help with this.<br />-JD<p>Statistics : Posted by <a href="http://www.devppl.com/forum/memberlist.php?mode=viewprofile&amp;u=44812">jdante5</a> &bull; on Thu Sep 03, 2009 10:38 pm &bull; Replies 0 &bull; Views 71</p><hr />]]></description>
					<content:encoded><![CDATA[Hi:<br />I have a requirement to send a sound bite thru the mic channel,
like a virtual microphone. Does anyone have an example how this can be
done?<br />Thanks for any help with this.<br />-JD]]></content:encoded>
					<category domain="http://www.devppl.com/forum/viewforum.php?f=57"><![CDATA[Visual Basic Forum]]></category>
			<dc:creator><![CDATA[44812]]></dc:creator>
			<dc:date>2009-09-03T22:38:14+01:00</dc:date>
			<guid isPermaLink="false">http://www.devppl.com/forum/./viewtopic.php?p=53417#p53417</guid>
		</item>
			<item>
			<title>Re: System Idea</title>
			<link>http://www.devppl.com/forum/./viewtopic.php?p=53410#p53410</link>
				<description><![CDATA[
"http://www.howtodothings.com/computers/a1015-making-your-own-operating-system.html"
onclick="this.target='_blank';" rel="nofollow"<p>Statistics : Posted by <a href="http://www.devppl.com/forum/memberlist.php?mode=viewprofile&amp;u=44220">iDad</a> &bull; on Thu Sep 03, 2009 8:59 am &bull; Replies 1 &bull; Views 55</p><hr />]]></description>
					<content:encoded><![CDATA[
"http://www.howtodothings.com/computers/a1015-making-your-own-operating-system.html"
onclick="this.target='_blank';" rel="nofollow"]]></content:encoded>
					<category domain="http://www.devppl.com/forum/viewforum.php?f=57"><![CDATA[Visual Basic Forum]]></category>
			<dc:creator><![CDATA[44220]]></dc:creator>
			<dc:date>2009-09-03T16:25:07+01:00</dc:date>
			<guid isPermaLink="false">http://www.devppl.com/forum/./viewtopic.php?p=53410#p53410</guid>
		</item>
			<item>
			<title>VB application: problem with language settings</title>
			<link>http://www.devppl.com/forum/./viewtopic.php?p=53284#p53284</link>
				<description><![CDATA[Hi, I have an application which has been built on VB6. When I change the
language settings on computer to French or German from English, I want the
change to be reflected on this VB application also. How can I do it?
Someone please help.<br /><br />Thanks,<br />Lavangu<p>Statistics : Posted by <a href="http://www.devppl.com/forum/memberlist.php?mode=viewprofile&amp;u=44720">lavangu</a> &bull; on Wed Aug 26, 2009 4:27 pm &bull; Replies 0 &bull; Views 140</p><hr />]]></description>
					<content:encoded><![CDATA[Hi, I have an application which has been built on VB6. When I change the
language settings on computer to French or German from English, I want the
change to be reflected on this VB application also. How can I do it?
Someone please help.<br /><br />Thanks,<br />Lavangu]]></content:encoded>
					<category domain="http://www.devppl.com/forum/viewforum.php?f=57"><![CDATA[Visual Basic Forum]]></category>
			<dc:creator><![CDATA[44720]]></dc:creator>
			<dc:date>2009-08-26T16:27:27+01:00</dc:date>
			<guid isPermaLink="false">http://www.devppl.com/forum/./viewtopic.php?p=53284#p53284</guid>
		</item>
			<item>
			<title>Re: detecting flash drive mounting and running a program</title>
			<link>http://www.devppl.com/forum/./viewtopic.php?p=53124#p53124</link>
				<description><![CDATA[that does not work.  XPSP2 and beyond add the autorun.inf to the list of
options in the autoplay dialog.  There is no good way around it because
there is not a registry handler for .ppt files, only for video, music, or
pictures.  So I have to build this program to automate the process.  There
is not keyboard or mouse on this system so selecting the option out of the
autoplay list is not possible.<p>Statistics : Posted by <a href="http://www.devppl.com/forum/memberlist.php?mode=viewprofile&amp;u=44588">jrtroberts</a> &bull; on Sat Aug 15, 2009 11:02 pm &bull; Replies 2 &bull; Views 152</p><hr />]]></description>
					<content:encoded><![CDATA[that does not work.  XPSP2 and beyond add the autorun.inf to the list of
options in the autoplay dialog.  There is no good way around it because
there is not a registry handler for .ppt files, only for video, music, or
pictures.  So I have to build this program to automate the process.  There
is not keyboard or mouse on this system so selecting the option out of the
autoplay list is not possible.]]></content:encoded>
					<category domain="http://www.devppl.com/forum/viewforum.php?f=57"><![CDATA[Visual Basic Forum]]></category>
			<dc:creator><![CDATA[44588]]></dc:creator>
			<dc:date>2009-08-16T17:40:52+01:00</dc:date>
			<guid isPermaLink="false">http://www.devppl.com/forum/./viewtopic.php?p=53124#p53124</guid>
		</item>
			<item>
			<title>Re: Preview thumbnails</title>
			<link>http://www.devppl.com/forum/./viewtopic.php?p=52718#p52718</link>
				<description><![CDATA[I already solved the problem <img
src="http://www.devppl.com/forum/images/smilies//icon_biggrin.gif" alt=":D"
title="Very Happy" /><p>Statistics : Posted by <a href="http://www.devppl.com/forum/memberlist.php?mode=viewprofile&amp;u=43986">sandy24</a> &bull; on Mon Jul 27, 2009 5:09 pm &bull; Replies 1 &bull; Views 69</p><hr />]]></description>
					<content:encoded><![CDATA[I already solved the problem <img
src="http://www.devppl.com/forum/images/smilies//icon_biggrin.gif" alt=":D"
title="Very Happy" />]]></content:encoded>
					<category domain="http://www.devppl.com/forum/viewforum.php?f=57"><![CDATA[Visual Basic Forum]]></category>
			<dc:creator><![CDATA[43986]]></dc:creator>
			<dc:date>2009-07-28T11:10:56+01:00</dc:date>
			<guid isPermaLink="false">http://www.devppl.com/forum/./viewtopic.php?p=52718#p52718</guid>
		</item>
			<item>
			<title>I'M A NEWBIE WITH A BIG PROJECT-PLEASE HELP ME</title>
			<link>http://www.devppl.com/forum/./viewtopic.php?p=52622#p52622</link>
				<description><![CDATA[ Hi all, <br />I am a huge huge newbie to the forum and the world of Visual
Basic. I have got Visual Basic 2008 Express Edition.<br /><br />My project
is to create an organiser with:<br /><br />-A login Screen that has the a
USERNAME and PASSWORD. I would also like it to have an option to change
your password, and a status bar saying if you are logged in/out if
possible.<br /><br />Then once the login is done I would like a
notification box with a loading bar that works and loads up the
interface.<br /><br />Then once it is loaded, we come to the main part of
the project: the main interface. If possible I would like the names and
codes for the objects I need in order for them to work.<br /><br />-A panel
for viewing email from Outlook.<br /><br />-A panel for viewing, adding and
editing appointments from Outlook.<br /><br />-A status bar at the bottom
notifying you of errors, if you are logged in/out<br /><br />-And finally
an address book panel.<br /><br />I would be grateful if you could give me
step by step instructions, for the objects and codes that I will need. I
know it m...<p>Statistics : Posted by <a href="http://www.devppl.com/forum/memberlist.php?mode=viewprofile&amp;u=44274">lukeholdstock</a> &bull; on Wed Jul 22, 2009 5:58 pm &bull; Replies 0 &bull; Views 97</p><hr />]]></description>
					<content:encoded><![CDATA[ Hi all, <br />I am a huge huge newbie to the forum and the world of Visual
Basic. I have got Visual Basic 2008 Express Edition.<br /><br />My project
is to create an organiser with:<br /><br />-A login Screen that has the a
USERNAME and PASSWORD. I would also like it to have an option to change
your password, and a status bar saying if you are logged in/out if
possible.<br /><br />Then once the login is done I would like a
notification box with a loading bar that works and loads up the
interface.<br /><br />Then once it is loaded, we come to the main part of
the project: the main interface. If possible I would like the names and
codes for the objects I need in order for them to work.<br /><br />-A panel
for viewing email from Outlook.<br /><br />-A panel for viewing, adding and
editing appointments from Outlook.<br /><br />-A status bar at the bottom
notifying you of errors, if you are logged in/out<br /><br />-And finally
an address book panel.<br /><br />I would be grateful if you could give me
step by step instructions, for the objects and codes that I will need. I
know it m...]]></content:encoded>
					<category domain="http://www.devppl.com/forum/viewforum.php?f=57"><![CDATA[Visual Basic Forum]]></category>
			<dc:creator><![CDATA[44274]]></dc:creator>
			<dc:date>2009-07-22T17:58:58+01:00</dc:date>
			<guid isPermaLink="false">http://www.devppl.com/forum/./viewtopic.php?p=52622#p52622</guid>
		</item>
			<item>
			<title>RAM usage and Unloading forms and components in VB6</title>
			<link>http://www.devppl.com/forum/./viewtopic.php?p=52615#p52615</link>
				<description><![CDATA[I am using VB6 and the following code:<br /><br />Private Sub
cmdBacktoMenu_Click()<br />Unload frmOne<br />Set frmOne = Nothing<br
/>Load frmMainMenu <br />frmMainMenu.Show <br />End Sub<br /><br />When I
load the compiled program in the MainMenu it is using 7Mb of RAM, when I
navigate to frmOne it jumps to 126Mb(which is expected) however, when I
click this command it goes back to MainMenu and is still using 64Mb of RAM.
Why isn't it returning to near the 7Mb when it initates, as the information
from frmOne should be discarded entirely.<br /><br />Btw,I have a sound
file array if anyone is wondering why the RAM usage is so high, I'd be
guessing the components aren't being completely unloaded but don't know how
to do so.<br />Thanks, any help much appreciated, Phoenix<p>Statistics : Posted by <a href="http://www.devppl.com/forum/memberlist.php?mode=viewprofile&amp;u=44272">phoenixfury</a> &bull; on Wed Jul 22, 2009 11:04 am &bull; Replies 0 &bull; Views 52</p><hr />]]></description>
					<content:encoded><![CDATA[I am using VB6 and the following code:<br /><br />Private Sub
cmdBacktoMenu_Click()<br />Unload frmOne<br />Set frmOne = Nothing<br
/>Load frmMainMenu <br />frmMainMenu.Show <br />End Sub<br /><br />When I
load the compiled program in the MainMenu it is using 7Mb of RAM, when I
navigate to frmOne it jumps to 126Mb(which is expected) however, when I
click this command it goes back to MainMenu and is still using 64Mb of RAM.
Why isn't it returning to near the 7Mb when it initates, as the information
from frmOne should be discarded entirely.<br /><br />Btw,I have a sound
file array if anyone is wondering why the RAM usage is so high, I'd be
guessing the components aren't being completely unloaded but don't know how
to do so.<br />Thanks, any help much appreciated, Phoenix]]></content:encoded>
					<category domain="http://www.devppl.com/forum/viewforum.php?f=57"><![CDATA[Visual Basic Forum]]></category>
			<dc:creator><![CDATA[44272]]></dc:creator>
			<dc:date>2009-07-22T11:04:42+01:00</dc:date>
			<guid isPermaLink="false">http://www.devppl.com/forum/./viewtopic.php?p=52615#p52615</guid>
		</item>
			<item>
			<title>checkboxes</title>
			<link>http://www.devppl.com/forum/./viewtopic.php?p=52545#p52545</link>
				<description><![CDATA[hi there,<br /><br />i am adding a checkboxes to a visual basic
application.<br />currently im using the .additem("somestring") method, but
i was wondering if there is a way to add a<br /><br />value and a number.
(like in web programming) ie if the checkbox box is populated by a database
can it<br /><br />have the an index value (thats not displayed) that is the
id in the database and the actual display<br /><br />value as the string
which the ID corresponds to.<br />Example:<br />the databse contains<br
/>ID Town<br />1 Sydney<br />2 Canberra<br /><br />I want to show the words
Sydney and Canberra, but when i retrieve what value was selected im only
interested in the ID, ie 1 and 2. I take it it would act something similar
to the itemdata in combo boxes<br /><br />Can anyone shed some light on
this?<br /><br />Thanks in advance.<p>Statistics : Posted by <a href="http://www.devppl.com/forum/memberlist.php?mode=viewprofile&amp;u=44170">jackdarippa</a> &bull; on Sat Jul 18, 2009 5:58 am &bull; Replies 0 &bull; Views 60</p><hr />]]></description>
					<content:encoded><![CDATA[hi there,<br /><br />i am adding a checkboxes to a visual basic
application.<br />currently im using the .additem("somestring") method, but
i was wondering if there is a way to add a<br /><br />value and a number.
(like in web programming) ie if the checkbox box is populated by a database
can it<br /><br />have the an index value (thats not displayed) that is the
id in the database and the actual display<br /><br />value as the string
which the ID corresponds to.<br />Example:<br />the databse contains<br
/>ID Town<br />1 Sydney<br />2 Canberra<br /><br />I want to show the words
Sydney and Canberra, but when i retrieve what value was selected im only
interested in the ID, ie 1 and 2. I take it it would act something similar
to the itemdata in combo boxes<br /><br />Can anyone shed some light on
this?<br /><br />Thanks in advance.]]></content:encoded>
					<category domain="http://www.devppl.com/forum/viewforum.php?f=57"><![CDATA[Visual Basic Forum]]></category>
			<dc:creator><![CDATA[44170]]></dc:creator>
			<dc:date>2009-07-18T05:58:34+01:00</dc:date>
			<guid isPermaLink="false">http://www.devppl.com/forum/./viewtopic.php?p=52545#p52545</guid>
		</item>
			<item>
			<title>Basic Formula</title>
			<link>http://www.devppl.com/forum/./viewtopic.php?p=52489#p52489</link>
				<description><![CDATA[Hi<br /><br />I'm a novice VB user. I've written the following formula
which I now realise is wrong.<br /><br />=IF(F5=1,"E5",0)<br /><br />What I
want it to do is return the contents of cell E5 if there is a 1 in cell E6,
or return 0 if there is not a 1 in cell F5. But the way I've written it I
get E5 or 0.<br /><br />Would really appreciate some help!<p>Statistics : Posted by <a href="http://www.devppl.com/forum/memberlist.php?mode=viewprofile&amp;u=44190">waltojam</a> &bull; on Tue Jul 14, 2009 1:21 pm &bull; Replies 0 &bull; Views 65</p><hr />]]></description>
					<content:encoded><![CDATA[Hi<br /><br />I'm a novice VB user. I've written the following formula
which I now realise is wrong.<br /><br />=IF(F5=1,"E5",0)<br /><br />What I
want it to do is return the contents of cell E5 if there is a 1 in cell E6,
or return 0 if there is not a 1 in cell F5. But the way I've written it I
get E5 or 0.<br /><br />Would really appreciate some help!]]></content:encoded>
					<category domain="http://www.devppl.com/forum/viewforum.php?f=57"><![CDATA[Visual Basic Forum]]></category>
			<dc:creator><![CDATA[44190]]></dc:creator>
			<dc:date>2009-07-14T13:21:56+01:00</dc:date>
			<guid isPermaLink="false">http://www.devppl.com/forum/./viewtopic.php?p=52489#p52489</guid>
		</item>
			<item>
			<title>Click to jump to page…</title>
			<description><![CDATA[
			<div class="pagination">
				  Page <strong>1</strong> of <strong>4</strong> &bull; <span><strong>1</strong><span class="page-sep">, </span><a href="rss.php?f=57&amp;start=30">2</a><span class="page-sep">, </span><a href="rss.php?f=57&amp;start=60">3</a><span class="page-sep">, </span><a href="rss.php?f=57&amp;start=90">4</a></span>			</div>
			<hr />]]></description>
			<guid isPermaLink="false"></guid>
        </item>
	
	</channel>
</rss>