<?xml version="1.0" encoding="utf-8"?>

<rss version="2.0" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:content="http://purl.org/rss/1.0/modules/content/">
	<channel>
		<title>DaniWeb IT Discussion Community</title>
		<link>http://www.daniweb.com/forums/</link>
		<description>Tech support, programming, web development, and internet marketing community. Forums to get free computer help and support.</description>
		<language>en-US</language>
		<lastBuildDate>Mon, 21 Dec 2009 12:51:48 GMT</lastBuildDate>
		<generator>vBulletin</generator>
		<ttl>60</ttl>
		<image>
			<url>http://www.daniweb.com/alphaimages/misc/rss.jpg</url>
			<title>DaniWeb IT Discussion Community</title>
			<link>http://www.daniweb.com/forums/</link>
		</image>
		<item>
			<title>Start executable on linux server from windows</title>
			<link>http://www.daniweb.com/forums/thread247035.html</link>
			<pubDate>Thu, 17 Dec 2009 04:01:42 GMT</pubDate>
			<description>Hi 
I have beed developing an appliction that will start an executable on remote computer to zip the files. I provide the location of files to zip. 
 
Now the problem is that i want to start the executable on linux server that hosts the files. I want to start an executable on linux server that zips...</description>
			<content:encoded><![CDATA[<div>Hi<br />
I have beed developing an appliction that will start an executable on remote computer to zip the files. I provide the location of files to zip.<br />
<br />
Now the problem is that i want to start the executable on linux server that hosts the files. I want to start an executable on linux server that zips the given files to specified location.<br />
<br />
Is it possible to start executable on linux server from my windows client computer.<br />
<br />
I searched on internet and also asked on fellow php programmers, they have been doing this using the exec command of php to invoke the zip executable on linux server and they have passed the full name of files to zip.<br />
<br />
I just want to invoke the same executable that current php code is executing.<br />
<br />
Is it possible to do that.:-/</div> ]]></content:encoded>
			<category domain="http://www.daniweb.com/forums/forum61.html">C#</category>
			<dc:creator>nccsbim071</dc:creator>
			<guid isPermaLink="true">http://www.daniweb.com/forums/thread247035.html</guid>
		</item>
		<item>
			<title>Compress file on the file during FTP file download</title>
			<link>http://www.daniweb.com/forums/thread246810.html</link>
			<pubDate>Wed, 16 Dec 2009 08:20:27 GMT</pubDate>
			<description>Hi i want to compress the file on the file during FTP file download. Is it possible to do that. 
I have an application that downloads the files from remote FTP server as windows forms application using VB.net 
 
Please help 
Thanks</description>
			<content:encoded><![CDATA[<div>Hi i want to compress the file on the file during FTP file download. Is it possible to do that.<br />
I have an application that downloads the files from remote FTP server as windows forms application using VB.net<br />
<br />
Please help<br />
Thanks</div> ]]></content:encoded>
			<category domain="http://www.daniweb.com/forums/forum61.html">C#</category>
			<dc:creator>nccsbim071</dc:creator>
			<guid isPermaLink="true">http://www.daniweb.com/forums/thread246810.html</guid>
		</item>
		<item>
			<title>Eliminate use statement in mysql dump</title>
			<link>http://www.daniweb.com/forums/thread246787.html</link>
			<pubDate>Wed, 16 Dec 2009 06:26:48 GMT</pubDate>
			<description><![CDATA[Hi everybody 
 
I have been using mysqldump utility to dump the contents of database to a file. 
 
Everything is ok 
but i want to eliminate the "USE `db_name`;" statement that appears in mysqldump. 
 
Is it possible to do that. 
Please help:sweat:]]></description>
			<content:encoded><![CDATA[<div>Hi everybody<br />
<br />
I have been using mysqldump utility to dump the contents of database to a file.<br />
<br />
Everything is ok<br />
but i want to eliminate the &quot;USE `db_name`;&quot; statement that appears in mysqldump.<br />
<br />
Is it possible to do that.<br />
Please help:sweat:</div> ]]></content:encoded>
			<category domain="http://www.daniweb.com/forums/forum126.html">MySQL</category>
			<dc:creator>nccsbim071</dc:creator>
			<guid isPermaLink="true">http://www.daniweb.com/forums/thread246787.html</guid>
		</item>
		<item>
			<title>Refer to other project folder in a single solution</title>
			<link>http://www.daniweb.com/forums/thread245976.html</link>
			<pubDate>Sun, 13 Dec 2009 05:46:11 GMT</pubDate>
			<description>Hi 
I have a solution file that consist of two different projects. 
In one of the projects i have a code to upload the file and save it. 
 
Currently the file is saved in same project directory that consist of code to upload the file. 
 
I want to upload the file in other project directory. 
 
Is...</description>
			<content:encoded><![CDATA[<div>Hi<br />
I have a solution file that consist of two different projects.<br />
In one of the projects i have a code to upload the file and save it.<br />
<br />
Currently the file is saved in same project directory that consist of code to upload the file.<br />
<br />
I want to upload the file in other project directory.<br />
<br />
Is it possible.<br />
<br />
I am developing the application in asp.net mvc.<br />
<br />
Please help</div> ]]></content:encoded>
			<category domain="http://www.daniweb.com/forums/forum18.html">ASP.NET</category>
			<dc:creator>nccsbim071</dc:creator>
			<guid isPermaLink="true">http://www.daniweb.com/forums/thread245976.html</guid>
		</item>
		<item>
			<title>VB.NET equivalent of following inline function in C#</title>
			<link>http://www.daniweb.com/forums/thread244077.html</link>
			<pubDate>Sun, 06 Dec 2009 10:50:19 GMT</pubDate>
			<description>Hi 
Please tell vb.net equivalent of following method: 
 
 private void LookForUpdates() 
        { 
            System.Threading.ThreadStart timerThreadStart = new System.Threading.ThreadStart(delegate() 
            { 
 
                sua = new ShowUpdatAvailable(); 
               ...</description>
			<content:encoded><![CDATA[<div>Hi<br />
Please tell vb.net equivalent of following method:<br />
<br />
 <pre style="margin:20px; line-height:13px"> private void LookForUpdates()<br />
&nbsp; &nbsp; &nbsp; &nbsp; {<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; System.Threading.ThreadStart timerThreadStart = new System.Threading.ThreadStart(delegate()<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; {<br />
<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; sua = new ShowUpdatAvailable();<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; DelGetUpdateArgs delGetUpdateArgs = new DelGetUpdateArgs(this.GetUpdateArgs);<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; sua.GetUpdateArgs = delGetUpdateArgs;<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; sua.StartLookingForUpdate();<br />
<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; });<br />
<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; timerThread = new System.Threading.Thread(timerThreadStart);<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; timerThread.Start();<br />
&nbsp; &nbsp; &nbsp; &nbsp; }</pre>I tried using C# to VB.NET code converter which gave me this:<br />
<br />
 <pre style="margin:20px; line-height:13px">Private Sub LookForUpdates()<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; Dim timerThreadStart As New System.Threading.ThreadStart(Function() Do<br />
<br />
&nbsp; &nbsp; &nbsp; &nbsp; sua = New My.ShowUpdatAvailable()<br />
&nbsp; &nbsp; &nbsp; &nbsp; Dim delGetUpdateArgs As New DelGetUpdateArgs(AddressOf Me.GetUpdateArgs)<br />
&nbsp; &nbsp; &nbsp; &nbsp; sua.GetUpdateArgs = delGetUpdateArgs<br />
<br />
&nbsp; &nbsp; &nbsp; &nbsp; sua.StartLookingForUpdate()<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; End Function)<br />
<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; timerThread = New System.Threading.Thread(timerThreadStart)<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; timerThread.Start()<br />
&nbsp; &nbsp; &nbsp; &nbsp; End Sub</pre><br />
Which on build in visual studio 2005 gives an error.<br />
<br />
Please help</div> ]]></content:encoded>
			<category domain="http://www.daniweb.com/forums/forum58.html">VB.NET</category>
			<dc:creator>nccsbim071</dc:creator>
			<guid isPermaLink="true">http://www.daniweb.com/forums/thread244077.html</guid>
		</item>
		<item>
			<title>starting mysql server with phpmyadmin</title>
			<link>http://www.daniweb.com/forums/thread242134.html</link>
			<pubDate>Sun, 29 Nov 2009 05:49:00 GMT</pubDate>
			<description>How do i start mysqlserver with option of --log-bin using phpmyadmin. 
 
Where do i set mysql server startup  options in phpmyadmin.</description>
			<content:encoded><![CDATA[<div>How do i start mysqlserver with option of --log-bin using phpmyadmin.<br />
<br />
Where do i set mysql server startup  options in phpmyadmin.</div> ]]></content:encoded>
			<category domain="http://www.daniweb.com/forums/forum17.html">PHP</category>
			<dc:creator>nccsbim071</dc:creator>
			<guid isPermaLink="true">http://www.daniweb.com/forums/thread242134.html</guid>
		</item>
		<item>
			<title>Access remote server mysql database server using windows forms client application</title>
			<link>http://www.daniweb.com/forums/thread241726.html</link>
			<pubDate>Fri, 27 Nov 2009 04:37:42 GMT</pubDate>
			<description>I have been developing a MySQL database backup and restore appliation in windows forms. This application crates a dump of a mysql database at remote location and imports everything from the dump file back into local mysql database. 
 
MySQL database is located at the server which hosts my php...</description>
			<content:encoded><![CDATA[<div>I have been developing a MySQL database backup and restore appliation in windows forms. This application crates a dump of a mysql database at remote location and imports everything from the dump file back into local mysql database.<br />
<br />
MySQL database is located at the server which hosts my php website. So it is obvious that if i want to access that mysql server from my local network, i have to allow mysqlserver at remote location to allow me to connect from my company's local network, by adding the public ip of my network in the lists of ip that remote mysqlserver  can allow connections from. I set this thing in CPanel.<br />
<br />
It's working fine.<br />
<br />
But my question is that, i have anathor software called let's say mysqlyog, that can connect to remote mysqlserver without allowing my local networks ip in the cpanel of remote server.<br />
<br />
So i mean to say that if mysqlyog can do that, why my application can't do that the same way msqlyog does.<br />
<br />
What kind of mechanism do they apply?<br />
i just don't know how to do this in windows forms and C#.<br />
<br />
how do they bypass the firewalls and or just connect to remote mysqlserver.<br />
<br />
What is the trick?</div> ]]></content:encoded>
			<category domain="http://www.daniweb.com/forums/forum61.html">C#</category>
			<dc:creator>nccsbim071</dc:creator>
			<guid isPermaLink="true">http://www.daniweb.com/forums/thread241726.html</guid>
		</item>
		<item>
			<title>Printing in Windows forms</title>
			<link>http://www.daniweb.com/forums/thread241530.html</link>
			<pubDate>Thu, 26 Nov 2009 09:53:30 GMT</pubDate>
			<description><![CDATA[Hi 
I have a windows application that prints a record in a given page size. 
 
I looked all over but i could not see how did it set the page size. 
 and now requirement is to print the paper size in legal paper size of 18.5" by 14". 
 
How can i set the printing process to print in this paper size....]]></description>
			<content:encoded><![CDATA[<div>Hi<br />
I have a windows application that prints a record in a given page size.<br />
<br />
I looked all over but i could not see how did it set the page size.<br />
 and now requirement is to print the paper size in legal paper size of 18.5&quot; by 14&quot;.<br />
<br />
How can i set the printing process to print in this paper size.<br />
<br />
I have not done this kind of job before so i am finding it quite difficult.<br />
Searching internet was not much help<br />
<br />
Please help</div> ]]></content:encoded>
			<category domain="http://www.daniweb.com/forums/forum61.html">C#</category>
			<dc:creator>nccsbim071</dc:creator>
			<guid isPermaLink="true">http://www.daniweb.com/forums/thread241530.html</guid>
		</item>
		<item>
			<title>Mysql database backup and restore using mysql.data.client</title>
			<link>http://www.daniweb.com/forums/thread240576.html</link>
			<pubDate>Mon, 23 Nov 2009 04:09:30 GMT</pubDate>
			<description>Hi everybody 
I have been developing windows client application in .net framework 3.5. The system is supposed to copy the remote mysqldb and restore my local mysqldb with all the schema and data withing remote schema to my local mysqldb with the same database name. 
 
Well i found a solution to...</description>
			<content:encoded><![CDATA[<div>Hi everybody<br />
I have been developing windows client application in .net framework 3.5. The system is supposed to copy the remote mysqldb and restore my local mysqldb with all the schema and data withing remote schema to my local mysqldb with the same database name.<br />
<br />
Well i found a solution to this using a mysqldump command and executing it from .net by writing all the necessary command in a bat file and executing the bat file by invoking from .net.<br />
<br />
But i was looking for a better solution.<br />
<br />
The way we make a sqlserver db backup and restore usig SqlServer.Smo package in .net<br />
<br />
<br />
I there any way to make a database backup and restore using mysql.data.client. or just copy my remote mysql database to my local mysql database. all using mysql.data.client.<br />
<br />
Thanks</div> ]]></content:encoded>
			<category domain="http://www.daniweb.com/forums/forum61.html">C#</category>
			<dc:creator>nccsbim071</dc:creator>
			<guid isPermaLink="true">http://www.daniweb.com/forums/thread240576.html</guid>
		</item>
		<item>
			<title>Using Interface and interface members in C#</title>
			<link>http://www.daniweb.com/forums/thread236941.html</link>
			<pubDate>Sun, 08 Nov 2009 06:32:17 GMT</pubDate>
			<description>What is the difference between following declarations: 
 
WebUserService.Service.IUserService userService = new WebUserService.Service.UserService(); 
WebUserService.Service.UserService userService = new WebUserService.Service.UserService(); 
 
I want to know the difference in usage and the the one...</description>
			<content:encoded><![CDATA[<div>What is the difference between following declarations:<br />
 <pre style="margin:20px; line-height:13px">WebUserService.Service.IUserService userService = new WebUserService.Service.UserService();<br />
WebUserService.Service.UserService userService = new WebUserService.Service.UserService();</pre><br />
I want to know the difference in usage and the the one that is most efficient in terms of programming in C#.</div> ]]></content:encoded>
			<category domain="http://www.daniweb.com/forums/forum61.html">C#</category>
			<dc:creator>nccsbim071</dc:creator>
			<guid isPermaLink="true">http://www.daniweb.com/forums/thread236941.html</guid>
		</item>
		<item>
			<title>Ship applications developed in .net using C#</title>
			<link>http://www.daniweb.com/forums/thread235019.html</link>
			<pubDate>Sun, 01 Nov 2009 04:36:45 GMT</pubDate>
			<description><![CDATA[Hi 
I have developed application in .net framework 3.5 WPF. 
Well, you know WPF also requires .net framwork 3.5 SP1. 
 
Now it's works fine on my computer. 
But i need to ship it the client. 
 
What will be the software requirements at the client side to run my application. 
 
Is it possible that i...]]></description>
			<content:encoded><![CDATA[<div>Hi<br />
I have developed application in .net framework 3.5 WPF.<br />
Well, you know WPF also requires .net framwork 3.5 SP1.<br />
<br />
Now it's works fine on my computer.<br />
But i need to ship it the client.<br />
<br />
What will be the software requirements at the client side to run my application.<br />
<br />
Is it possible that i just pack everything in a single exe file or a folder and client don't have to install anything else except to double click the exe file and start using it.<br />
<br />
Well the problem occured when i developed the application in WPF and ship it to client but at client computer there was .net framework 3.5 installed along with .net framework 3.5 service pack one.<br />
So i suggested him to install both of them and then he can use the application i developed.<br />
<br />
Well, you understand that it's complicated for client to handle these technical issues and moreover .net framework 3.5 is large and along with it they also had to install .net framework 3.5 sp1.<br />
<br />
Well, i don't think this is a best idea, there must be something else easier and more compact.<br />
<br />
Thanks</div> ]]></content:encoded>
			<category domain="http://www.daniweb.com/forums/forum61.html">C#</category>
			<dc:creator>nccsbim071</dc:creator>
			<guid isPermaLink="true">http://www.daniweb.com/forums/thread235019.html</guid>
		</item>
		<item>
			<title>develop applications for vista on windows xp machine</title>
			<link>http://www.daniweb.com/forums/thread235016.html</link>
			<pubDate>Sun, 01 Nov 2009 04:18:43 GMT</pubDate>
			<description>Hi 
All the coders out there. I need a suggestion. 
I have windows xp installed on my computer and i need to develop application for windows vista. 
 
I would prefer to use .net framework 2.0 and visual studio 2005. 
Instead of .net framework 3.5 and visual studio 2008. 
 
Well, selection between...</description>
			<content:encoded><![CDATA[<div>Hi<br />
All the coders out there. I need a suggestion.<br />
I have windows xp installed on my computer and i need to develop application for windows vista.<br />
<br />
I would prefer to use .net framework 2.0 and visual studio 2005.<br />
Instead of .net framework 3.5 and visual studio 2008.<br />
<br />
Well, selection between .net framework is not a problem. It's ok if i could just use any of them. But i need to develop it on windows xp machine and would expect to implement it on windows vista or higher version of windows.<br />
<br />
How can i do this?<br />
Please help<br />
Thanks</div> ]]></content:encoded>
			<category domain="http://www.daniweb.com/forums/forum61.html">C#</category>
			<dc:creator>nccsbim071</dc:creator>
			<guid isPermaLink="true">http://www.daniweb.com/forums/thread235016.html</guid>
		</item>
		<item>
			<title>WPF WebBrowser Control</title>
			<link>http://www.daniweb.com/forums/thread234612.html</link>
			<pubDate>Fri, 30 Oct 2009 07:08:44 GMT</pubDate>
			<description><![CDATA[I have a php website which i want to run in C# wpf webbrowser control. 
 
I have a validated a username and password for the site by connecting to it's database using .net. 
 
Now i want the functionality to take username and password and submit the post form to php page that will validate the...]]></description>
			<content:encoded><![CDATA[<div>I have a php website which i want to run in C# wpf webbrowser control.<br />
<br />
I have a validated a username and password for the site by connecting to it's database using .net.<br />
<br />
Now i want the functionality to take username and password and submit the post form to php page that will validate the username and password again(of course it is already validated) or not validate and send the user to the page that it needs to redirect. and i want that page to be seen in my webbrowser control.<br />
<br />
How do i do this.</div> ]]></content:encoded>
			<category domain="http://www.daniweb.com/forums/forum61.html">C#</category>
			<dc:creator>nccsbim071</dc:creator>
			<guid isPermaLink="true">http://www.daniweb.com/forums/thread234612.html</guid>
		</item>
		<item>
			<title>Problem with extracting file names from the file names returned by FTP LIST command</title>
			<link>http://www.daniweb.com/forums/thread233098.html</link>
			<pubDate>Sun, 25 Oct 2009 06:57:19 GMT</pubDate>
			<description>Hi 
 
I am developing FTP Clinet application that downloads files from the specified server 
i sent the LIST command and server returned a list of file names in following order: 
 
-rw-r--r--    1 devubas  devubas        24 Sep  5  2008 .bash_logout 
 
now the problem is how do i extract the...</description>
			<content:encoded><![CDATA[<div>Hi<br />
<br />
I am developing FTP Clinet application that downloads files from the specified server<br />
i sent the LIST command and server returned a list of file names in following order:<br />
<br />
-rw-r--r--    1 devubas  devubas        24 Sep  5  2008 .bash_logout<br />
<br />
now the problem is how do i extract the filename fom above string for example just the .bash_logout.<br />
<br />
Is there any way to just get the filename from FTP server by sending this command combined with other parameters.<br />
<br />
Please help</div> ]]></content:encoded>
			<category domain="http://www.daniweb.com/forums/forum61.html">C#</category>
			<dc:creator>nccsbim071</dc:creator>
			<guid isPermaLink="true">http://www.daniweb.com/forums/thread233098.html</guid>
		</item>
	</channel>
</rss>
