 




<?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 2003</title>
	<atom:link href="http://itknowledgeexchange.techtarget.com/itanswers/tag/visual-studio-2003/feed/" rel="self" type="application/rss+xml" />
	<link>http://itknowledgeexchange.techtarget.com/itanswers</link>
	<description></description>
	<lastBuildDate>Sat, 18 May 2013 21:33:01 +0000</lastBuildDate>
	<language>en-US</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	
		<item>
		<title>how to center a crystal report</title>
		<link>http://itknowledgeexchange.techtarget.com/itanswers/how-to-center-a-crystal-report/</link>
		<comments>http://itknowledgeexchange.techtarget.com/itanswers/how-to-center-a-crystal-report/#comments</comments>
		<pubDate>Tue, 01 Jun 2010 23:15:08 +0000</pubDate>
		<dc:creator>Springfield</dc:creator>
				<category><![CDATA[Crystal Reports]]></category>
		<category><![CDATA[Crystal Reports Standard Report Creation Wizard]]></category>
		<category><![CDATA[Visual Studio 2003]]></category>
		<category><![CDATA[Windows XP]]></category>

		<guid isPermaLink="false"></guid>
		<description><![CDATA[Using VS 2003 I make a Crystal Report but the report content can have variable size. My problem is how to center a Crystal Report for viewing/printing that is nicely centered vertically on the page? For example; if one were creating a letter it would be better to see it centered vertically rather than starting [...]]]></description>
				<content:encoded><![CDATA[<p>Using VS 2003 I make a Crystal Report but the report content can have variable size. My problem is how to center a Crystal Report for viewing/printing that is nicely centered vertically on the page?<br/><br/> For example; if one were creating a letter it would be better to see it centered vertically rather than starting at the top of the page and ending halfway down.<br/><br/></p>
<!-- wpms-network-global-inserts -->]]></content:encoded>
			<wfw:commentRss>http://itknowledgeexchange.techtarget.com/itanswers/how-to-center-a-crystal-report/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Will Visual Studio 2003 and SQL Server 2008</title>
		<link>http://itknowledgeexchange.techtarget.com/itanswers/will-visual-studio-2003-and-sql-server-2008/</link>
		<comments>http://itknowledgeexchange.techtarget.com/itanswers/will-visual-studio-2003-and-sql-server-2008/#comments</comments>
		<pubDate>Tue, 22 Dec 2009 14:15:17 +0000</pubDate>
		<dc:creator>CGarnett</dc:creator>
				<category><![CDATA[SQL Server 2008]]></category>
		<category><![CDATA[Visual Studio 2003]]></category>

		<guid isPermaLink="false"></guid>
		<description><![CDATA[Will Visual Studio 2003 work with SQL Server 2008 databases.]]></description>
				<content:encoded><![CDATA[<p>Will Visual Studio 2003 work with SQL Server 2008 databases.</p>
<!-- wpms-network-global-inserts -->]]></content:encoded>
			<wfw:commentRss>http://itknowledgeexchange.techtarget.com/itanswers/will-visual-studio-2003-and-sql-server-2008/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>.NET connecting to Oracle 9i</title>
		<link>http://itknowledgeexchange.techtarget.com/itanswers/connecting-to-oracle-9i/</link>
		<comments>http://itknowledgeexchange.techtarget.com/itanswers/connecting-to-oracle-9i/#comments</comments>
		<pubDate>Sun, 08 Mar 2009 00:57:48 +0000</pubDate>
		<dc:creator>Dax</dc:creator>
				<category><![CDATA[.NET]]></category>
		<category><![CDATA[.NET development]]></category>
		<category><![CDATA[Oracle 9i]]></category>
		<category><![CDATA[Oracle 9i Enterprise Edition 9.2.0.7.0]]></category>
		<category><![CDATA[Oracle connectivity]]></category>
		<category><![CDATA[Oracle development]]></category>
		<category><![CDATA[Visual Studio 2003]]></category>

		<guid isPermaLink="false"></guid>
		<description><![CDATA[Please Help. I am new to .Net. Using .Net 2003 Oracle 9i Imports Oracle.DataAccess.Client Public Class Form1 Inherits System.Windows.Forms.Form Dim objConnection As OracleConnection = New _ OracleConnection(&#8220;User Id=system;Password=dax856;Data Source=DMS&#8221;) Dim objDataAdapter As New OracleDataAdapter Dim objDataSet As DataSet = New DataSet Private Sub Form1_Load(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MyBase.Load &#8216; Set [...]]]></description>
				<content:encoded><![CDATA[<p>Please Help.<br />
I am new to .Net. Using .Net 2003 Oracle 9i</p>
<p>Imports Oracle.DataAccess.Client</p>
<p>Public Class Form1<br />
    Inherits System.Windows.Forms.Form</p>
<p>    Dim objConnection As OracleConnection = New _<br />
            OracleConnection(&#8220;User Id=system;Password=dax856;Data Source=DMS&#8221;)<br />
    Dim objDataAdapter As New OracleDataAdapter<br />
    Dim objDataSet As DataSet = New DataSet<br />
Private Sub Form1_Load(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MyBase.Load</p>
<p>        &#8216; Set the SelectCommand properties&#8230;<br />
        objDataAdapter.SelectCommand = New OracleCommand<br />
        objDataAdapter.SelectCommand.Connection = objConnection<br />
        objDataAdapter.SelectCommand.CommandText = _<br />
            &#8220;Select * From EMP&#8221;<br />
        objDataAdapter.SelectCommand.CommandType = CommandType.Text</p>
<p>        &#8216; open the data base<br />
        objConnection.Open()</p>
<p>An unhandled exception of type &#8216;Oracle.DataAccess.Client.OracleException&#8217; occurred in oracle.dataaccess.dll</p>
<p>Additional information: System error.<br />
Imports System.Data</p>
<p>I am able to connect to the database using the Tool &#8211; Connect to Data Base<br />
I am not able to connect to the database using the Tool &#8211; Connect To Oracle Data Base</p>
<p>Regards</p>
<!-- wpms-network-global-inserts -->]]></content:encoded>
			<wfw:commentRss>http://itknowledgeexchange.techtarget.com/itanswers/connecting-to-oracle-9i/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Deploying 2000 reporting services reports on 2005 reporting services</title>
		<link>http://itknowledgeexchange.techtarget.com/itanswers/deploying-2000-reporting-services-reports-on-2005-reporting-services/</link>
		<comments>http://itknowledgeexchange.techtarget.com/itanswers/deploying-2000-reporting-services-reports-on-2005-reporting-services/#comments</comments>
		<pubDate>Sun, 21 Sep 2008 04:33:30 +0000</pubDate>
		<dc:creator>Atom123</dc:creator>
				<category><![CDATA[RSScripter]]></category>
		<category><![CDATA[SQL Server Reporting Services]]></category>
		<category><![CDATA[SSRS]]></category>
		<category><![CDATA[SSRS 2000]]></category>
		<category><![CDATA[SSRS 2005]]></category>
		<category><![CDATA[Visual Studio 2003]]></category>

		<guid isPermaLink="false"></guid>
		<description><![CDATA[Hi ! I have a large number of reports created in visual studio 2003 .They were originally deployed on SQl server reporting services 2000. Now durinfg the process of upgradation to 2005 , i transferred all the reports from 2000 server to 2005 server using RSscripter which worked fine.However , my problem is that they [...]]]></description>
				<content:encoded><![CDATA[<p>Hi  !</p>
<p>I have a large number of reports created in visual studio 2003 .They were originally deployed on SQl server reporting services 2000. Now durinfg the process of upgradation to 2005 , i transferred all the  reports from 2000 server to 2005 server using RSscripter which worked fine.However , my problem is that they are still in 2000 fromat ( i checked it by downloading report from 2005 server and opening it in notepod ), whereas it is mentioned in one of  the article on MSDN (Upgrading reports) that after u deploy your 2000 reports on 2005 server they automatically gets upgraded on first use by the user. There is another way to upgrade your reports by opening in visual studio 2005 but it will  take too much time if i individually open every report in 2005 and after converting them deploy to 2005 server. Is there any way you can convert all your 2000 reports into 2005 version? Please advice.</p>
<p>Thanks</p>
<!-- wpms-network-global-inserts -->]]></content:encoded>
			<wfw:commentRss>http://itknowledgeexchange.techtarget.com/itanswers/deploying-2000-reporting-services-reports-on-2005-reporting-services/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>how to remove space b/w page footer and report footer in Crystal Report Question</title>
		<link>http://itknowledgeexchange.techtarget.com/itanswers/how-to-remove-space-bw-page-footer-and-report-footer-in-crystal-report-question/</link>
		<comments>http://itknowledgeexchange.techtarget.com/itanswers/how-to-remove-space-bw-page-footer-and-report-footer-in-crystal-report-question/#comments</comments>
		<pubDate>Fri, 18 Jul 2008 11:16:45 +0000</pubDate>
		<dc:creator>Jyoshnna</dc:creator>
				<category><![CDATA[.NET Framework]]></category>
		<category><![CDATA[Crystal Reports]]></category>
		<category><![CDATA[Crystal Reports 9]]></category>
		<category><![CDATA[Visual Studio 2003]]></category>
		<category><![CDATA[VS 2003]]></category>

		<guid isPermaLink="false"></guid>
		<description><![CDATA[New Discussion Post by ansneed]]></description>
				<content:encoded><![CDATA[New Discussion Post by ansneed]]></content:encoded>
			<wfw:commentRss>http://itknowledgeexchange.techtarget.com/itanswers/how-to-remove-space-bw-page-footer-and-report-footer-in-crystal-report-question/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>vb.net</title>
		<link>http://itknowledgeexchange.techtarget.com/itanswers/vbnet/</link>
		<comments>http://itknowledgeexchange.techtarget.com/itanswers/vbnet/#comments</comments>
		<pubDate>Wed, 07 May 2008 09:28:46 +0000</pubDate>
		<dc:creator>Roshy</dc:creator>
				<category><![CDATA[VB.NET]]></category>
		<category><![CDATA[Visual Basic .NET]]></category>
		<category><![CDATA[Visual Studio]]></category>
		<category><![CDATA[Visual Studio 2003]]></category>

		<guid isPermaLink="false"></guid>
		<description><![CDATA[I have developed an application in VB.NET using Visual Studion.NET 2003 on my computer. I can successfully run the application using the VS.NET 2003.. Now i want to run the same application on another computer, in which there is no Visual Studio.NET installed&#8230; but the operating Systems for both the computers are same windows 2000 [...]]]></description>
				<content:encoded><![CDATA[<p>I have developed an application in VB.NET using Visual Studion.NET 2003 on my computer. I can successfully run the application using the VS.NET 2003.. </p>
<p>Now i want to run the same application on another computer, in which there is no Visual Studio.NET installed&#8230; but the operating Systems for both the computers are same windows 2000 Professional.. </p>
<p>My problem is how to run the application developed using VB.NET in VS.NET 2003 on a computer, on another computer which deosn&#8217;t have the VS.NET environment&#8230; </p>
<p>Can anyone help me in this.. </p>
<p>Thank you very much..</p>
<!-- wpms-network-global-inserts -->]]></content:encoded>
			<wfw:commentRss>http://itknowledgeexchange.techtarget.com/itanswers/vbnet/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/24 queries in 0.029 seconds using memcached
Object Caching 659/741 objects using memcached

Served from: itknowledgeexchange.techtarget.com @ 2013-05-19 16:02:44 -->