 




<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>IT Answers &#187; Visual Studio 2008 Professional</title>
	<atom:link href="http://itknowledgeexchange.techtarget.com/itanswers/tag/visual-studio-2008-professional/feed/" rel="self" type="application/rss+xml" />
	<link>http://itknowledgeexchange.techtarget.com/itanswers</link>
	<description></description>
	<lastBuildDate>Sat, 25 May 2013 15:43:48 +0000</lastBuildDate>
	<language>en-US</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	
		<item>
		<title>condition based color changing of labels</title>
		<link>http://itknowledgeexchange.techtarget.com/itanswers/condition-based-color-changing-of-labels/</link>
		<comments>http://itknowledgeexchange.techtarget.com/itanswers/condition-based-color-changing-of-labels/#comments</comments>
		<pubDate>Sat, 07 Apr 2012 05:52:16 +0000</pubDate>
		<dc:creator>Mahaveer</dc:creator>
				<category><![CDATA[VB.NET]]></category>
		<category><![CDATA[Visual Studio 2008 Professional]]></category>

		<guid isPermaLink="false"></guid>
		<description><![CDATA[Imports System.Data.OleDb Imports System.Data Imports System.Threading Imports System.Data.SqlClient Public Class Form1     Dim bm As BindingManagerBase     Dim ds As New DataSet     Dim adp As OleDb.OleDbDataAdapter     Sub showrecord(ByVal pos As Integer)         Button1.Text = ds.Tables(0).Rows(pos)("Question")         Button2.Text = ds.Tables(0).Rows(pos)("Option1")         [...]]]></description>
				<content:encoded><![CDATA[<div>
<pre></div>
<div>Imports System.Data.OleDb</div>
<div>Imports System.Data</div>
<div>Imports System.Threading</div>
<div>Imports System.Data.SqlClient</div>
<div>Public Class Form1</div>
<div>    Dim bm As BindingManagerBase</div>
<div>    Dim ds As New DataSet</div>
<div>    Dim adp As OleDb.OleDbDataAdapter</div>
<div></div>
<div>    Sub showrecord(ByVal pos As Integer)</div>
<div>        Button1.Text = ds.Tables(0).Rows(pos)("Question")</div>
<div>        Button2.Text = ds.Tables(0).Rows(pos)("Option1")</div>
<div>        Button3.Text = ds.Tables(0).Rows(pos)("Option2")</div>
<div>        Button4.Text = ds.Tables(0).Rows(pos)("Option3")</div>
<div>        Button5.Text = ds.Tables(0).Rows(pos)("Option4")</div>
<div>    End Sub</div>
<div></div>
<div>    Private Sub ButtonX1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles ButtonX1.Click</div>
<div>        LabelX1.BackColor = Color.White</div>
<div>		ds = New DataSet</div>
<div>        Dim dt As New DataTable</div>
<div>        Dim con As New OleDb.OleDbConnection("provider=sqloledb; server=MICROSOF-AE7D21SQLEXPRESS; database=mahaveer; userid=; password=;Trusted_Connection=yes;")</div>
<div>        con.Open()</div>
<div>        adp = New OleDb.OleDbDataAdapter("SELECT TOP 10 * FROM kbc ORDER By NEWID()", con)</div>
<div>        adp.Fill(ds, "kbc")</div>
<div>        bm = Me.BindingContext(ds, "kbc")</div>
<div>        bm.Position = 0</div>
<div>        showrecord(bm.Position)</div>
<div>    End Sub</div>
<div></div>
<div>    Private Sub Button2_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button2.Click</div>
<div>        Dim result As DialogResult = MessageBox.Show("Are You Sure", "Millionaire", MessageBoxButtons.OKCancel, MessageBoxIcon.Question)</div>
<div>        If result = Windows.Forms.DialogResult.OK Then</div>
<div>            If Button2.Text = Button6.Text Then</div>
<div>                bm.Position += 1</div>
<div>                showrecord(bm.Position)</div>
<div>            Else</div>
<div>                Label2.Text = "Sorry Wrong Answer"</div>
<div>            End If</div>
<div>        End If</div>
<div>    End Sub</div>
<div></div>
<div>    Private Sub Button3_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button3.Click</div>
<div>       Dim result As DialogResult = MessageBox.Show("Are You Sure", "Millionaire", MessageBoxButtons.OKCancel, MessageBoxIcon.Question)</div>
<div>        If result = Windows.Forms.DialogResult.OK Then</div>
<div>            If Button3.Text = Button6.Text Then</div>
<div>                bm.Position += 1</div>
<div>                showrecord(bm.Position)</div>
<div>            Else</div>
<div>                Label2.Text = "Sorry Wrong Answer"</div>
<div>            End If</div>
<div>        End If</div>
<div>    End Sub</div>
<div></div>
<div>    Private Sub Button4_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button4.Click</div>
<div>        Dim result As DialogResult = MessageBox.Show("Are You Sure", "Millionaire", MessageBoxButtons.OKCancel, MessageBoxIcon.Question)</div>
<div>        If result = Windows.Forms.DialogResult.OK Then</div>
<div>            If Button4.Text = Button6.Text Then</div>
<div>                bm.Position += 1</div>
<div>                showrecord(bm.Position)</div>
<div>            Else</div>
<div>                Label2.Text = "Sorry Wrong Answer"</div>
<div>            End If</div>
<div>        End If</div>
<div>    End Sub</div>
<div></div>
<div>    Private Sub Button5_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button5.Click</div>
<div>         Dim result As DialogResult = MessageBox.Show("Are You Sure", "Millionaire", MessageBoxButtons.OKCancel, MessageBoxIcon.Question)</div>
<div>        If result = Windows.Forms.DialogResult.OK Then</div>
<div>            If Button5.Text = Button6.Text Then</div>
<div>                bm.Position += 1</div>
<div>                showrecord(bm.Position)</div>
<div>            Else</div>
<div>                Label2.Text = "Sorry Wrong Answer"</div>
<div>            End If</div>
<div>        End If</div>
<div>    End Sub</div>
<div>End Class</div>
<div></pre>
</div>
<div>i have written a quiz game in this code. i have 12 labels from LabelX1 to LabelX12.</div>
<div>here i want their background color white one by one when a user click on the correct answer.</div>
<div>how can i do that ?</div>
<!-- wpms-network-global-inserts -->]]></content:encoded>
			<wfw:commentRss>http://itknowledgeexchange.techtarget.com/itanswers/condition-based-color-changing-of-labels/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>What is the easiest and best Front End development for SQL server.</title>
		<link>http://itknowledgeexchange.techtarget.com/itanswers/what-is-the-easiest-and-best-front-end-development-for-sql-server/</link>
		<comments>http://itknowledgeexchange.techtarget.com/itanswers/what-is-the-easiest-and-best-front-end-development-for-sql-server/#comments</comments>
		<pubDate>Sun, 14 Mar 2010 18:21:32 +0000</pubDate>
		<dc:creator>KRMerker531</dc:creator>
				<category><![CDATA[SQL Server 2008]]></category>
		<category><![CDATA[VB]]></category>
		<category><![CDATA[VB.NET]]></category>
		<category><![CDATA[Visual Studio 2008 Professional]]></category>

		<guid isPermaLink="false"></guid>
		<description><![CDATA[What is the easiest and best Front End development for SQL server. I have Visual Studio 2008 Professional IDE. VB.net or VB.]]></description>
				<content:encoded><![CDATA[<p>What is the easiest and best Front End development for SQL server. I have Visual Studio 2008 Professional IDE. VB.net or VB.</p>
<!-- wpms-network-global-inserts -->]]></content:encoded>
			<wfw:commentRss>http://itknowledgeexchange.techtarget.com/itanswers/what-is-the-easiest-and-best-front-end-development-for-sql-server/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>TableAdapterManager contains no connection information. Set each TableAdapterManager TableAdapter property to a valid TableAdapter instance.</title>
		<link>http://itknowledgeexchange.techtarget.com/itanswers/tableadaptermanager-contains-no-connection-information-set-each-tableadaptermanager-tableadapter-property-to-a-valid-tableadapter-instance/</link>
		<comments>http://itknowledgeexchange.techtarget.com/itanswers/tableadaptermanager-contains-no-connection-information-set-each-tableadaptermanager-tableadapter-property-to-a-valid-tableadapter-instance/#comments</comments>
		<pubDate>Thu, 09 Jul 2009 18:56:42 +0000</pubDate>
		<dc:creator>Apeman</dc:creator>
				<category><![CDATA[ODAC]]></category>
		<category><![CDATA[Oracle 11g]]></category>
		<category><![CDATA[Oracle Data Access]]></category>
		<category><![CDATA[Oracle Data Access Components]]></category>
		<category><![CDATA[Oracle Data Access Components (ODAC)ODAC 11g 11.1.0.6.21]]></category>
		<category><![CDATA[Visual Studio]]></category>
		<category><![CDATA[Visual Studio 2008]]></category>
		<category><![CDATA[Visual Studio 2008 Professional]]></category>
		<category><![CDATA[Windows XP]]></category>
		<category><![CDATA[Windows XP SP3]]></category>

		<guid isPermaLink="false"></guid>
		<description><![CDATA[I am very new to oracle. I was able to install it and was trying the tutorial: Building .NET Applications Using Oracle Developer Tools for Visual Studio. I am using Windows XP sp3 and Visual Studio 2008 Professional. I was working on the tutorial that came with the Oracle Data Access Components (ODAC)ODAC 11g 11.1.0.6.21 [...]]]></description>
				<content:encoded><![CDATA[<p>I am very new to oracle. I was able to install it and was trying the tutorial:<br />
Building .NET Applications Using Oracle Developer Tools for Visual Studio. I am using Windows XP sp3 and Visual Studio 2008 Professional.</p>
<p>I was working on the tutorial that came with the Oracle Data Access Components (ODAC)ODAC 11g 11.1.0.6.21</p>
<p>I was following the C# example that came with the tutorial. Whenever I modify the table and click on the Save Button, I get the error below:</p>
<p>TableAdapterManager contains no connection information. Set each TableAdapterManager TableAdapter property to a valid TableAdapter instance.</p>
<p>Does anyone knows how to solve this problem?</p>
<!-- wpms-network-global-inserts -->]]></content:encoded>
			<wfw:commentRss>http://itknowledgeexchange.techtarget.com/itanswers/tableadaptermanager-contains-no-connection-information-set-each-tableadaptermanager-tableadapter-property-to-a-valid-tableadapter-instance/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

<!-- Performance optimized by W3 Total Cache. Learn more: http://www.w3-edge.com/wordpress-plugins/

Page Caching using memcached
Database Caching 3/18 queries in 0.020 seconds using memcached
Object Caching 464/514 objects using memcached

Served from: itknowledgeexchange.techtarget.com @ 2013-05-25 16:51:19 -->