

<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 : Topics : urgent help needed</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>Sat, 21 Nov 2009 12:29:58 +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 : Topics : urgent help needed</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>Re: urgent help needed</title>
			<link>http://www.devppl.com/forum/./viewtopic.php?p=51290#p51290</link>
				<description><![CDATA[no one idea =(<p>Statistics : Posted by <a href="http://www.devppl.com/forum/memberlist.php?mode=viewprofile&amp;u=20641">Suffer</a> &bull; on Thu Apr 16, 2009 1:25 pm &bull; Replies 1 &bull; Views 75</p><hr />]]></description>
					<content:encoded><![CDATA[no one idea =(]]></content:encoded>
					<category domain="http://www.devppl.com/forum/viewforum.php?f=57"><![CDATA[Visual Basic Forum]]></category>
			<dc:creator><![CDATA[20641]]></dc:creator>
			<dc:date>2009-04-16T17:22:57+01:00</dc:date>
			<guid isPermaLink="false">http://www.devppl.com/forum/./viewtopic.php?p=51290#p51290</guid>
		</item>
			<item>
			<title>urgent help needed</title>
			<link>http://www.devppl.com/forum/./viewtopic.php?p=51268#p51268</link>
				<description><![CDATA[ hello everybody,<br /><br />i have a question, i am solving a mathematical
problem by using a code in VB,  the question is to calculate the output
noise by givning ten different inputs by the user in textbox. the inputs
wil be entered in the equation below like, B,
Tin,Tfd,Te1,Te2,Te3,Gf,G1,G2,alpha, length<br /><br />the formula for
output noise power is , <br /><br />N= K*T*B<br /><br />where K =
1.38*10^-23(boltzmann's constant)<br /><br />B(bandwidth) = 5000(Hz), and
<br /><br />T = Tin+Tfd+(Te1/(Gf))+(Te2/(Gf*G1))+(Te3/(Gf*G1*G2))<br /><br
/>where Gf = 10^(Gf/10) and G1 = 10^(G1/10), G2 = 10^(G2/10) and Tfd =
(10^(Lf/10)-1)*290; where Lf=(alpha*length)<br /><br />and, in coding i did
that in this form;<br /><br />Private Sub Command1_Click()<br /><br /> <br
/><br />Dim Tin As Double<br /><br />Dim alpha As Double<br /><br />Dim
length As Double<br /><br />Dim Te1 As Double<br /><br />Dim Te2 As
Double<br /><br />Dim Te3 As Double<br /><br />Dim Gf As Double<br /><br
/>Dim G1 As Double<br /><br />Dim G2 As Double<br /><br />Dim lf as
Double<br /><br />Dim tef as Double<br /><br />Dim B As Double<br /><br
/>Dim result1 as double<br /><br />k = 1.38 * 10 ^ -23<br /><br />lf = (a *
l)<br /><br />tef = (10 ^ (lf / 10) - 1) * 290<br /><br />tequ = ts...<p>Statistics : Posted by <a href="http://www.devppl.com/forum/memberlist.php?mode=viewprofile&amp;u=35076">hadimohammed365</a> &bull; on Thu Apr 16, 2009 1:25 pm &bull; Replies 1 &bull; Views 75</p><hr />]]></description>
					<content:encoded><![CDATA[ hello everybody,<br /><br />i have a question, i am solving a mathematical
problem by using a code in VB,  the question is to calculate the output
noise by givning ten different inputs by the user in textbox. the inputs
wil be entered in the equation below like, B,
Tin,Tfd,Te1,Te2,Te3,Gf,G1,G2,alpha, length<br /><br />the formula for
output noise power is , <br /><br />N= K*T*B<br /><br />where K =
1.38*10^-23(boltzmann's constant)<br /><br />B(bandwidth) = 5000(Hz), and
<br /><br />T = Tin+Tfd+(Te1/(Gf))+(Te2/(Gf*G1))+(Te3/(Gf*G1*G2))<br /><br
/>where Gf = 10^(Gf/10) and G1 = 10^(G1/10), G2 = 10^(G2/10) and Tfd =
(10^(Lf/10)-1)*290; where Lf=(alpha*length)<br /><br />and, in coding i did
that in this form;<br /><br />Private Sub Command1_Click()<br /><br /> <br
/><br />Dim Tin As Double<br /><br />Dim alpha As Double<br /><br />Dim
length As Double<br /><br />Dim Te1 As Double<br /><br />Dim Te2 As
Double<br /><br />Dim Te3 As Double<br /><br />Dim Gf As Double<br /><br
/>Dim G1 As Double<br /><br />Dim G2 As Double<br /><br />Dim lf as
Double<br /><br />Dim tef as Double<br /><br />Dim B As Double<br /><br
/>Dim result1 as double<br /><br />k = 1.38 * 10 ^ -23<br /><br />lf = (a *
l)<br /><br />tef = (10 ^ (lf / 10) - 1) * 290<br /><br />tequ = ts...]]></content:encoded>
					<category domain="http://www.devppl.com/forum/viewforum.php?f=57"><![CDATA[Visual Basic Forum]]></category>
			<dc:creator><![CDATA[35076]]></dc:creator>
			<dc:date>2009-04-16T13:25:45+01:00</dc:date>
			<guid isPermaLink="false">http://www.devppl.com/forum/./viewtopic.php?p=51268#p51268</guid>
		</item>
	
	</channel>
</rss>