<?xml version="1.0" encoding="iso-8859-1" ?>
<rss version="0.92">
<channel>
	<docs>http://backend.userland.com/rss092</docs>
	<title>Daremedy.com Forum</title>
	<link>http://www.daremedy.com/forum/</link>
	<description>A Programmers Paradise: Code, Girls and Everything In Between</description>
	<managingEditor>daremedy@daremedy.com</managingEditor>
	<webMaster>daremedy@daremedy.com</webMaster>
	<lastBuildDate>Thu, 20 Nov 2008 22:41:17 GMT</lastBuildDate>
<item>
	<title>Object Oriented Programming :: Could anyone help with this error...VB.Net2003</title>
	<link>http://www.daremedy.com/forum/viewtopic.php?p=34725#34725</link>
	<description>Author: &lt;a href=&quot;http://www.daremedy.com/forum/profile.php?mode=viewprofile&amp;u=132&quot; target=&quot;_blank&quot;&gt;shyguyjeff&lt;/a&gt;&lt;br /&gt;
Subject: Could anyone help with this error...VB.Net2003&lt;br /&gt;
Posted: Fri Jul 06, 2007 1:36 am (GMT -4)&lt;br /&gt;
Topic Replies: 0&lt;br /&gt;&lt;br /&gt;
&lt;span class="postbody"&gt;I used vb.net2003 and using Microsoft SQL Server 7. The error and my code goes like this: [/
&lt;br /&gt;
&lt;/span&gt;&lt;table width=&quot;90%&quot; cellspacing=&quot;1&quot; cellpadding=&quot;3&quot; border=&quot;0&quot; align=&quot;center&quot; class=&quot;forumline&quot;&gt;&lt;tr&gt;	  &lt;th&gt;Quote:&lt;/th&gt;&lt;/tr&gt;&lt;tr&gt;      &lt;td class=&quot;quote&quot;&gt;An unhandled exception of type 'System.Data.SqlClient.SqlException' occurred in system.data.dll
&lt;br /&gt;

&lt;br /&gt;
Additional information: System error.&lt;/td&gt;	&lt;/tr&gt;&lt;/table&gt;&lt;span class=&quot;postbody&quot;&gt;
&lt;br /&gt;

&lt;br /&gt;
&lt;/span&gt;&lt;table width=&quot;90%&quot; cellspacing=&quot;1&quot; cellpadding=&quot;3&quot; border=&quot;0&quot; align=&quot;center&quot; class=&quot;forumline&quot;&gt;&lt;tr&gt;	  &lt;th&gt;Code:&lt;/th&gt;&lt;/tr&gt;&lt;tr&gt;      &lt;td class=&quot;code&quot;&gt;
&lt;br /&gt;
&amp;nbsp;&amp;nbsp; Dim strDrvLicNbr As String = txtDrvLicNbr.Text
&lt;br /&gt;
&amp;nbsp;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;Dim strFullName As String = txtFullName.Text
&lt;br /&gt;

&lt;br /&gt;
&amp;nbsp;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;If strDrvLicNbr = &amp;quot;&amp;quot; Then
&lt;br /&gt;
&amp;nbsp;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;MsgBox&amp;#40;&amp;quot;You must provide the customer's driver's license number&amp;quot;&amp;#41;
&lt;br /&gt;
&amp;nbsp;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;Exit Sub
&lt;br /&gt;
&amp;nbsp;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;End If
&lt;br /&gt;
&amp;nbsp;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;If strFullName = &amp;quot;&amp;quot; Then
&lt;br /&gt;
&amp;nbsp;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;MsgBox&amp;#40;&amp;quot;You must provide the customer's name&amp;quot;&amp;#41;
&lt;br /&gt;
&amp;nbsp;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;Exit Sub
&lt;br /&gt;
&amp;nbsp;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;End If
&lt;br /&gt;

&lt;br /&gt;
&amp;nbsp;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;Dim strInsert As String = &amp;quot;INSERT INTO Customers VALUES&amp;#40;'&amp;quot; &amp;amp; _
&lt;br /&gt;
&amp;nbsp;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; strDrvLicNbr &amp;amp; &amp;quot;','&amp;quot; &amp;amp; strFullName &amp;amp; &amp;quot;', &amp;quot; &amp;amp; &amp;quot; , '&amp;quot; &amp;amp; txtDLClass.Text &amp;amp; _
&lt;br /&gt;
&amp;nbsp;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;quot;', '&amp;quot; &amp;amp; dtpDateIssue.Value &amp;amp; &amp;quot;', '&amp;quot; &amp;amp; _
&lt;br /&gt;
&amp;nbsp;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;dtpExpDate.Value &amp;amp; &amp;quot;', '&amp;quot; &amp;amp; txtFullName.Text &amp;amp; _
&lt;br /&gt;
&amp;nbsp;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;&amp;quot;', '&amp;quot; &amp;amp; txtAddress.Text &amp;amp; &amp;quot;', '&amp;quot; &amp;amp; _
&lt;br /&gt;
&amp;nbsp;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;txtCity.Text &amp;amp; &amp;quot;', &amp;amp; '&amp;quot; &amp;amp; txtZIPCode.Text &amp;amp; _
&lt;br /&gt;
&amp;nbsp;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;txtHomePhone.Text &amp;amp; &amp;quot;', '&amp;quot; &amp;amp; chkOrganDonor.Checked &amp;amp; &amp;quot;'&amp;#41;&amp;quot;
&lt;br /&gt;

&lt;br /&gt;
&amp;nbsp;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;Dim conDatabase As SqlConnection = New _
&lt;br /&gt;
&amp;nbsp;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;SqlConnection&amp;#40;&amp;quot;Data Source=&amp;#40;local&amp;#41;;Database='CCR';Integrated Security=yes&amp;quot;&amp;#41;
&lt;br /&gt;
&amp;nbsp;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;Dim cmdDatabase As SqlCommand = New SqlCommand&amp;#40;strInsert, conDatabase&amp;#41;
&lt;br /&gt;

&lt;br /&gt;
&amp;nbsp;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;conDatabase.Open&amp;#40;&amp;#41;
&lt;br /&gt;

&lt;br /&gt;
&amp;nbsp;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;cmdDatabase.ExecuteNonQuery&amp;#40;&amp;#41;
&lt;br /&gt;
&amp;nbsp;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;conDatabase.Close&amp;#40;&amp;#41;
&lt;br /&gt;

&lt;br /&gt;
&amp;nbsp;&amp;nbsp; &amp;nbsp; &amp;nbsp; &lt;/td&gt;	&lt;/tr&gt;&lt;/table&gt;&lt;span class=&quot;postbody&quot;&gt;[/quote][/list]
&lt;/span&gt;&lt;br /&gt;
</description>
</item>
<item>
	<title>Object Oriented Programming :: Need help in my VB.net</title>
	<link>http://www.daremedy.com/forum/viewtopic.php?p=34705#34705</link>
	<description>Author: &lt;a href=&quot;http://www.daremedy.com/forum/profile.php?mode=viewprofile&amp;u=132&quot; target=&quot;_blank&quot;&gt;shyguyjeff&lt;/a&gt;&lt;br /&gt;
Subject: Need help in my VB.net&lt;br /&gt;
Posted: Thu Jul 05, 2007 9:06 pm (GMT -4)&lt;br /&gt;
Topic Replies: 0&lt;br /&gt;&lt;br /&gt;
&lt;span class="postbody"&gt;Hello there...I just want to know where is the best site where I can download complete tutorials in vb.net2003 and I am using Microsoft SQL Server and Crystal Report in Generating Reports...Thanks in advance for those who view and replying my message.
&lt;/span&gt;&lt;br /&gt;
</description>
</item>
<item>
	<title>Object Oriented Programming :: VB.NET - Type Excel.Application is not defined error</title>
	<link>http://www.daremedy.com/forum/viewtopic.php?p=32183#32183</link>
	<description>Author: &lt;a href=&quot;http://www.daremedy.com/forum/profile.php?mode=viewprofile&amp;u=3&quot; target=&quot;_blank&quot;&gt;daremedy&lt;/a&gt;&lt;br /&gt;
Subject: VB.NET - Type Excel.Application is not defined error&lt;br /&gt;
Posted: Mon Dec 18, 2006 2:51 pm (GMT -4)&lt;br /&gt;
Topic Replies: 0&lt;br /&gt;&lt;br /&gt;
&lt;span class="postbody"&gt;Trying to work with:
&lt;br /&gt;

&lt;br /&gt;
&lt;/span&gt;&lt;table width=&quot;90%&quot; cellspacing=&quot;1&quot; cellpadding=&quot;3&quot; border=&quot;0&quot; align=&quot;center&quot; class=&quot;forumline&quot;&gt;&lt;tr&gt;	  &lt;th&gt;Code:&lt;/th&gt;&lt;/tr&gt;&lt;tr&gt;      &lt;td class=&quot;code&quot;&gt;Dim ExcelVar As New Excel.Application&lt;/td&gt;	&lt;/tr&gt;&lt;/table&gt;&lt;span class=&quot;postbody&quot;&gt;
&lt;br /&gt;

&lt;br /&gt;
gave that error. The solution is as follows...
&lt;br /&gt;

&lt;br /&gt;
&lt;ol type=&quot;1&quot;&gt;
&lt;br /&gt;
&lt;li&gt;Click the Project menu option
&lt;br /&gt;
&lt;li&gt;Click Add Reference
&lt;br /&gt;
&lt;li&gt;Click on the COM tab
&lt;br /&gt;
&lt;li&gt;Locate Microsoft Excel Object Library 10.0 (or whatever version you need/have) and highlight it
&lt;br /&gt;
&lt;li&gt;Click on the Select button
&lt;br /&gt;
&lt;li&gt;Click on OK
&lt;br /&gt;
&lt;/ol&gt;
&lt;br /&gt;

&lt;br /&gt;
Now your code should work just fine.... I hope :S[/list]
&lt;br /&gt;_________________&lt;br /&gt;&lt;span style=&quot;color: #A8D2FF&quot;&gt;::&lt;/span&gt; &lt;span style=&quot;font-size: 9px; line-height: normal&quot;&gt;&lt;a href=&quot;http://d0x.de/?http://www.daremedy.com&quot; target=&quot;_blank&quot; class=&quot;postlink&quot;&gt;Webmaster Resources&lt;/a&gt; &lt;/span&gt; &lt;span style=&quot;color: #A8D2FF&quot;&gt;::&lt;/span&gt;&lt;/span&gt;&lt;br /&gt;
</description>
</item>
<item>
	<title>Object Oriented Programming :: RE: Finding duplicates in Excel</title>
	<link>http://www.daremedy.com/forum/viewtopic.php?p=30613#30613</link>
	<description>Author: &lt;a href=&quot;http://www.daremedy.com/forum/profile.php?mode=viewprofile&amp;u=2&quot; target=&quot;_blank&quot;&gt;dietnkzg&lt;/a&gt;&lt;br /&gt;

Posted: Fri Nov 24, 2006 10:03 am (GMT -4)&lt;br /&gt;
Topic Replies: 1&lt;br /&gt;&lt;br /&gt;
&lt;span class="postbody"&gt;You know what, no matter what kind of record system you use, whether it be a database, spreadsheet or whatever, its always good to know how to find a duplicate. Always!
&lt;br /&gt;_________________&lt;br /&gt;^ Credit to all original scanners/cappers and that whole deal.&lt;/span&gt;&lt;br /&gt;
</description>
</item>
<item>
	<title>Object Oriented Programming :: Finding duplicates in Excel</title>
	<link>http://www.daremedy.com/forum/viewtopic.php?p=30552#30552</link>
	<description>Author: &lt;a href=&quot;http://www.daremedy.com/forum/profile.php?mode=viewprofile&amp;u=3&quot; target=&quot;_blank&quot;&gt;daremedy&lt;/a&gt;&lt;br /&gt;
Subject: Finding duplicates in Excel&lt;br /&gt;
Posted: Wed Nov 22, 2006 10:50 am (GMT -4)&lt;br /&gt;
Topic Replies: 1&lt;br /&gt;&lt;br /&gt;
&lt;span class="postbody"&gt;I had to wrap my head around this one this morning. Here's how it goes... Assuming the sheet looks like this:
&lt;br /&gt;

&lt;br /&gt;
&lt;/span&gt;&lt;table width=&quot;90%&quot; cellspacing=&quot;1&quot; cellpadding=&quot;3&quot; border=&quot;0&quot; align=&quot;center&quot; class=&quot;forumline&quot;&gt;&lt;tr&gt;	  &lt;th&gt;Code:&lt;/th&gt;&lt;/tr&gt;&lt;tr&gt;      &lt;td class=&quot;code&quot;&gt;--------------------------------------------
&lt;br /&gt;
Column A
&lt;br /&gt;
--------------------------------------------
&lt;br /&gt;
AAA
&lt;br /&gt;
BBB
&lt;br /&gt;
CCC
&lt;br /&gt;
AAA
&lt;br /&gt;
BBB
&lt;br /&gt;
CCC
&lt;br /&gt;
AAA&lt;/td&gt;	&lt;/tr&gt;&lt;/table&gt;&lt;span class=&quot;postbody&quot;&gt;
&lt;br /&gt;

&lt;br /&gt;

&lt;br /&gt;
Enter the following formula into Column B...
&lt;br /&gt;

&lt;br /&gt;
&lt;/span&gt;&lt;table width=&quot;90%&quot; cellspacing=&quot;1&quot; cellpadding=&quot;3&quot; border=&quot;0&quot; align=&quot;center&quot; class=&quot;forumline&quot;&gt;&lt;tr&gt;	  &lt;th&gt;Code:&lt;/th&gt;&lt;/tr&gt;&lt;tr&gt;      &lt;td class=&quot;code&quot;&gt;=IF&amp;#40;COUNTIF&amp;#40;$A$1&amp;#58;A1,A1&amp;#41;&amp;gt;1,&amp;quot;Duplicate&amp;quot;,&amp;quot;Unique&amp;quot;&amp;#41; &lt;/td&gt;	&lt;/tr&gt;&lt;/table&gt;&lt;span class=&quot;postbody&quot;&gt;
&lt;br /&gt;

&lt;br /&gt;

&lt;br /&gt;
Then just copy that cell down and any duplicates will be marked with the word Duplicate, and Unique ones will be marked with the word Unique. Good times.
&lt;br /&gt;_________________&lt;br /&gt;&lt;span style=&quot;color: #A8D2FF&quot;&gt;::&lt;/span&gt; &lt;span style=&quot;font-size: 9px; line-height: normal&quot;&gt;&lt;a href=&quot;http://d0x.de/?http://www.daremedy.com&quot; target=&quot;_blank&quot; class=&quot;postlink&quot;&gt;Webmaster Resources&lt;/a&gt; &lt;/span&gt; &lt;span style=&quot;color: #A8D2FF&quot;&gt;::&lt;/span&gt;&lt;/span&gt;&lt;br /&gt;
</description>
</item>
<item>
	<title>Object Oriented Programming :: RE: Submitting PDF files to an FTP site</title>
	<link>http://www.daremedy.com/forum/viewtopic.php?p=27172#27172</link>
	<description>Author: &lt;a href=&quot;http://www.daremedy.com/forum/profile.php?mode=viewprofile&amp;u=3&quot; target=&quot;_blank&quot;&gt;daremedy&lt;/a&gt;&lt;br /&gt;

Posted: Fri Aug 04, 2006 9:58 am (GMT -4)&lt;br /&gt;
Topic Replies: 1&lt;br /&gt;&lt;br /&gt;
&lt;span class="postbody"&gt;Just a quick note, for those wanting to find out how to do the script for this, check out my post [ &lt;a href=&quot;http://d0x.de/?http://www.daremedy.com/forum/ftopic10216.html&quot; target=&quot;_blank&quot; class=&quot;postlink&quot;&gt;here&lt;/a&gt; ] to get a head start.
&lt;br /&gt;_________________&lt;br /&gt;&lt;span style=&quot;color: #A8D2FF&quot;&gt;::&lt;/span&gt; &lt;span style=&quot;font-size: 9px; line-height: normal&quot;&gt;&lt;a href=&quot;http://d0x.de/?http://www.daremedy.com&quot; target=&quot;_blank&quot; class=&quot;postlink&quot;&gt;Webmaster Resources&lt;/a&gt; &lt;/span&gt; &lt;span style=&quot;color: #A8D2FF&quot;&gt;::&lt;/span&gt;&lt;/span&gt;&lt;br /&gt;
</description>
</item>
<item>
	<title>Object Oriented Programming :: Submitting PDF files to an FTP site</title>
	<link>http://www.daremedy.com/forum/viewtopic.php?p=27171#27171</link>
	<description>Author: &lt;a href=&quot;http://www.daremedy.com/forum/profile.php?mode=viewprofile&amp;u=3&quot; target=&quot;_blank&quot;&gt;daremedy&lt;/a&gt;&lt;br /&gt;
Subject: Submitting PDF files to an FTP site&lt;br /&gt;
Posted: Fri Aug 04, 2006 9:56 am (GMT -4)&lt;br /&gt;
Topic Replies: 1&lt;br /&gt;&lt;br /&gt;
&lt;span class="postbody"&gt;I recently got the task of figuring out how the Adobe Designer software allows you to submit a file to an FTP site. I figured, hell, should be easy enough, right? Adobe claims to have support for this feature on their site. After a few feable attempts at making it work, I went to the net. Oddly enough, it was extremely hard to find any support or documentation on HOW to submit a PDF file (or data) to an FTP site. And would'nt you know it, you CANT!!!! Well, you can, but its not as easy as Adobe makes it seem. You have to send the data to a script first, that parses the information, then saves it to a file, then using a script, FTP the document to wherever you want it to be stored. Adobe LIES!! Their features for Adobe Designer are misleading. In researching, here's someone's approach to how the FTP fiasco works:
&lt;br /&gt;

&lt;br /&gt;
&lt;/span&gt;&lt;table width=&quot;90%&quot; cellspacing=&quot;1&quot; cellpadding=&quot;3&quot; border=&quot;0&quot; align=&quot;center&quot; class=&quot;forumline&quot;&gt;&lt;tr&gt;	  &lt;th&gt;Quote:&lt;/th&gt;&lt;/tr&gt;&lt;tr&gt;      &lt;td class=&quot;quote&quot;&gt;
&lt;br /&gt;
&lt;span style=&quot;font-weight: bold&quot;&gt;Submit PDF files to an FTP site&lt;/span&gt;
&lt;br /&gt;

&lt;br /&gt;
David R Reid - 08:45am Feb 21, 2006 Pacific
&lt;br /&gt;

&lt;br /&gt;
I've seen lots of talk and confusion on this forum about how to submit data and/or files. I have what I thought was a fairly simple issue, but have been battling it for over a week -- please help!
&lt;br /&gt;

&lt;br /&gt;
I've created the desired fillable PDF form and added a Submit button. When the user clicks the Submit button, I'd like for a copy of the filled PDF file to be placed on/saved to the FTP server. I've got the format of the URL (ftp://username:password@ftp.mycorp.com) in the URL field, but when the user clicks submit, IE opens the folder on the FTP server rather than submitting the file.
&lt;br /&gt;

&lt;br /&gt;
A - Is what I want to do even possible for users who my only have Adobe Reader?
&lt;br /&gt;

&lt;br /&gt;
B - If this is possible, then what am I doing wrong?
&lt;br /&gt;

&lt;br /&gt;
Thanks!&lt;/td&gt;	&lt;/tr&gt;&lt;/table&gt;&lt;span class=&quot;postbody&quot;&gt;
&lt;br /&gt;

&lt;br /&gt;

&lt;br /&gt;
&lt;/span&gt;&lt;table width=&quot;90%&quot; cellspacing=&quot;1&quot; cellpadding=&quot;3&quot; border=&quot;0&quot; align=&quot;center&quot; class=&quot;forumline&quot;&gt;&lt;tr&gt;	  &lt;th&gt;Quote:&lt;/th&gt;&lt;/tr&gt;&lt;tr&gt;      &lt;td class=&quot;quote&quot;&gt;Chris Trubiani - 8:53am Feb 21, 06 PST (#1 of 4) 		
&lt;br /&gt;

&lt;br /&gt;
You can't do this. The submit happens over HTTP, not &lt;a href=&quot;http://www.d0x.de/?http://FTP.&quot; target=&quot;_blank&quot;&gt;FTP.&lt;/a&gt; If you specify a URL to an FTP site IE will open the site, but it has no idea that it needs to send commands after that to actual start the transfer. You'd have to submit via HTTP to a server side component (ie: servlet or something like that) and write code to transfer the file to the FTP site.
&lt;br /&gt;

&lt;br /&gt;
Also, if you're submitting the whole PDF, and not just the data then it won't work for users who just have Reader.
&lt;br /&gt;

&lt;br /&gt;
Chris
&lt;br /&gt;
Adobe Enterprise Developer Support&lt;/td&gt;	&lt;/tr&gt;&lt;/table&gt;&lt;span class=&quot;postbody&quot;&gt;
&lt;br /&gt;

&lt;br /&gt;

&lt;br /&gt;
&lt;/span&gt;&lt;table width=&quot;90%&quot; cellspacing=&quot;1&quot; cellpadding=&quot;3&quot; border=&quot;0&quot; align=&quot;center&quot; class=&quot;forumline&quot;&gt;&lt;tr&gt;	  &lt;th&gt;Quote:&lt;/th&gt;&lt;/tr&gt;&lt;tr&gt;      &lt;td class=&quot;quote&quot;&gt;David R Reid - 9:25am Feb 21, 06 PST (#2 of 4) 		
&lt;br /&gt;

&lt;br /&gt;
Here's an excerpt from Adobe LiveCycle Designer Help:
&lt;br /&gt;

&lt;br /&gt;
# In the Object palette, click the Submit tab. Select one of these formats from the Submit Format list: XML Data Package (XDP)
&lt;br /&gt;
# PDF
&lt;br /&gt;
# XML Data (XML)
&lt;br /&gt;
# URL-Encoded Data (HTTP Post)
&lt;br /&gt;

&lt;br /&gt;
So there must be a way to submit PDF files to a server. What do I need on the server side to be able to accept PDF files sent to a URL via the Submit mechanism and have them ? I don't need blow-by-blow instructions; if you please point me in the right direction I'd appreciate it.
&lt;br /&gt;

&lt;br /&gt;
ps - I hope Adobe recognizes from the volume of questions similar to mine on this forum that not only is the product literature for Adobe Professional 7.0 misleading regarding the ability and relative ease of submitting PDF data/files, but the product documentation is woefully inadequate and confusing. To say that this product doesn't live up to the user's expectations would be a gross understatement. Don't get me wrong, I'm a C++/Assembler developer with 25 years of experience. I'll get this to work no matter what it takes. However, I pity any non-software developers who purchased Adobe Professional 7.0 thinking that they'd be able to easily create and distribute user-fillable forms that are universally functional for all users.
&lt;br /&gt;

&lt;br /&gt;
Source: &lt;a href=&quot;http://www.d0x.de/?http://www.adobeforums.com/cgi-bin/webx/.3bbe9e1a&quot; target=&quot;_blank&quot;&gt;http://www.adobeforums.com/cgi-bin/webx/.3bbe9e1a&lt;/a&gt;&lt;/td&gt;	&lt;/tr&gt;&lt;/table&gt;&lt;span class=&quot;postbody&quot;&gt;
&lt;br /&gt;

&lt;br /&gt;
So yes indeed, Adobe lies. I just thought I'd throw that out there. That being said, Adobe Photoshop rules, and thats no lie. &lt;img src=&quot;http://www.daremedy.com/forum/images/smiles/icon_twisted.gif&quot; alt=&quot;Twisted Evil&quot; border=&quot;0&quot; /&gt;
&lt;br /&gt;_________________&lt;br /&gt;&lt;span style=&quot;color: #A8D2FF&quot;&gt;::&lt;/span&gt; &lt;span style=&quot;font-size: 9px; line-height: normal&quot;&gt;&lt;a href=&quot;http://d0x.de/?http://www.daremedy.com&quot; target=&quot;_blank&quot; class=&quot;postlink&quot;&gt;Webmaster Resources&lt;/a&gt; &lt;/span&gt; &lt;span style=&quot;color: #A8D2FF&quot;&gt;::&lt;/span&gt;&lt;/span&gt;&lt;br /&gt;
</description>
</item>
<item>
	<title>Object Oriented Programming :: RE: Distributed .NET: Learn The ABCs Of Programming Windows Com</title>
	<link>http://www.daremedy.com/forum/viewtopic.php?p=26394#26394</link>
	<description>Author: &lt;a href=&quot;http://www.daremedy.com/forum/profile.php?mode=viewprofile&amp;u=2&quot; target=&quot;_blank&quot;&gt;dietnkzg&lt;/a&gt;&lt;br /&gt;

Posted: Fri Jul 21, 2006 11:44 pm (GMT -4)&lt;br /&gt;
Topic Replies: 2&lt;br /&gt;&lt;br /&gt;
&lt;span class="postbody"&gt;WTF?
&lt;br /&gt;_________________&lt;br /&gt;^ Credit to all original scanners/cappers and that whole deal.&lt;/span&gt;&lt;br /&gt;
</description>
</item>
<item>
	<title>Object Oriented Programming :: RE: Distributed .NET: Learn The ABCs Of Programming Windows Com</title>
	<link>http://www.daremedy.com/forum/viewtopic.php?p=25981#25981</link>
	<description>Author: &lt;a href=&quot;http://www.daremedy.com/forum/profile.php?mode=viewprofile&amp;u=931&quot; target=&quot;_blank&quot;&gt;jessplaycam&lt;/a&gt;&lt;br /&gt;

Posted: Sun Jul 16, 2006 8:29 pm (GMT -4)&lt;br /&gt;
Topic Replies: 2&lt;br /&gt;&lt;br /&gt;
&lt;span class="postbody"&gt;word
&lt;/span&gt;&lt;br /&gt;
</description>
</item>
<item>
	<title>Object Oriented Programming :: RE: java practice stuff</title>
	<link>http://www.daremedy.com/forum/viewtopic.php?p=21414#21414</link>
	<description>Author: &lt;a href=&quot;http://www.daremedy.com/forum/profile.php?mode=viewprofile&amp;u=3&quot; target=&quot;_blank&quot;&gt;daremedy&lt;/a&gt;&lt;br /&gt;

Posted: Mon Apr 24, 2006 7:31 pm (GMT -4)&lt;br /&gt;
Topic Replies: 13&lt;br /&gt;&lt;br /&gt;
&lt;span class="postbody"&gt;Which part of the &lt;span style=&quot;font-size: 25px; line-height: normal&quot;&gt;we dont do homework&lt;/span&gt; comment didnt you get? This isnt &lt;span style=&quot;font-weight: bold&quot;&gt;your&lt;/span&gt; code, its sample code. I've coded the game of life before, making an interface is the easiest part of the project. Post some of your work and you might get help.
&lt;br /&gt;_________________&lt;br /&gt;&lt;span style=&quot;color: #A8D2FF&quot;&gt;::&lt;/span&gt; &lt;span style=&quot;font-size: 9px; line-height: normal&quot;&gt;&lt;a href=&quot;http://d0x.de/?http://www.daremedy.com&quot; target=&quot;_blank&quot; class=&quot;postlink&quot;&gt;Webmaster Resources&lt;/a&gt; &lt;/span&gt; &lt;span style=&quot;color: #A8D2FF&quot;&gt;::&lt;/span&gt;&lt;/span&gt;&lt;br /&gt;
</description>
</item>
<item>
	<title>Object Oriented Programming :: RE: java practice stuff</title>
	<link>http://www.daremedy.com/forum/viewtopic.php?p=21393#21393</link>
	<description>Author: &lt;a href=&quot;http://www.daremedy.com/forum/profile.php?mode=viewprofile&amp;u=795&quot; target=&quot;_blank&quot;&gt;leroyharvey126&lt;/a&gt;&lt;br /&gt;

Posted: Sun Apr 23, 2006 8:07 pm (GMT -4)&lt;br /&gt;
Topic Replies: 13&lt;br /&gt;&lt;br /&gt;
&lt;span class="postbody"&gt;Revise your Game of Life program to have a nice user interface where you can enter the initial neighborhood and the number of generations to display and a graphical display of the neighborhood.
&lt;br /&gt;

&lt;br /&gt;
import java.util.*;
&lt;br /&gt;

&lt;br /&gt;
/**
&lt;br /&gt;
 * Example solution for Project 8.2 Game of Life
&lt;br /&gt;
 */
&lt;br /&gt;
public class GameOfLife
&lt;br /&gt;
{
&lt;br /&gt;
 &amp;nbsp; &amp;nbsp;public static void main(String[] args)
&lt;br /&gt;
 &amp;nbsp; &amp;nbsp;{
&lt;br /&gt;
 &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;//instance variables
&lt;br /&gt;
 &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;Scanner in = new Scanner(System.in);
&lt;br /&gt;
 &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;int size = 0, row=0, column = 0;
&lt;br /&gt;
 &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;int numberStart = 0;
&lt;br /&gt;
 &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;int numGen=10;
&lt;br /&gt;

&lt;br /&gt;

&lt;br /&gt;
	// Use the book example for a test case
&lt;br /&gt;
	 &amp;nbsp;/* &amp;nbsp; &amp;nbsp; size = 10;
&lt;br /&gt;
		 &amp;nbsp; numberStart = 5;
&lt;br /&gt;
 &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; Grid g = new Grid(size);
&lt;br /&gt;
 &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; g.setCell(1,2);
&lt;br /&gt;
 &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; g.setCell(2,3);
&lt;br /&gt;
 &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; g.setCell(3,1);
&lt;br /&gt;
 &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; g.setCell(3,2);
&lt;br /&gt;
 &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; g.setCell(3,3);
&lt;br /&gt;
 &amp;nbsp; &amp;nbsp; */
&lt;br /&gt;
 &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;// get the user to input the size of the square grid and number of cells to start
&lt;br /&gt;

&lt;br /&gt;
 &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;System.out.println(&amp;quot;Enter the width of cells in the grid&amp;quot;);
&lt;br /&gt;
 &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;size= in.nextInt();
&lt;br /&gt;
 &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;System.out.println(&amp;quot;Enter the number of living cells to start&amp;quot;);
&lt;br /&gt;
 &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;numberStart= in.nextInt();
&lt;br /&gt;

&lt;br /&gt;
 &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;// test to be sure the number of cells is reasonable
&lt;br /&gt;
 &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;while (numberStart==0 || numberStart&amp;gt;(size*size))
&lt;br /&gt;
 &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;{
&lt;br /&gt;
 &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;System.out.println(&amp;quot;Starting number must be more than zero and less than&amp;quot;);
&lt;br /&gt;
 &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;System.out.println(&amp;quot;the maximum number of cells, please try again&amp;quot;);
&lt;br /&gt;
 &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;numberStart= in.nextInt();
&lt;br /&gt;

&lt;br /&gt;
 &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;}
&lt;br /&gt;

&lt;br /&gt;
 &amp;nbsp; &amp;nbsp; &amp;nbsp; // create and populate the grid
&lt;br /&gt;
 &amp;nbsp; &amp;nbsp; &amp;nbsp; Grid g = new Grid(size);
&lt;br /&gt;

&lt;br /&gt;
 &amp;nbsp; &amp;nbsp; &amp;nbsp; for (int i= 0; i&amp;lt;numberStart; i++)
&lt;br /&gt;
	 &amp;nbsp; { &amp;nbsp; System.out.println (&amp;quot;Enter the row and column of a living cell&amp;quot;);
&lt;br /&gt;
	 &amp;nbsp; &amp;nbsp; &amp;nbsp; row = in.nextInt();
&lt;br /&gt;
 &amp;nbsp; &amp;nbsp; &amp;nbsp; 	 &amp;nbsp; column = in.nextInt();
&lt;br /&gt;
 &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; g.setCell(row,column);
&lt;br /&gt;
	 &amp;nbsp;}
&lt;br /&gt;

&lt;br /&gt;
 &amp;nbsp; &amp;nbsp; &amp;nbsp; // draw the initial grid
&lt;br /&gt;
 &amp;nbsp; &amp;nbsp; &amp;nbsp; System.out.println(&amp;quot;Generation 0&amp;quot;);
&lt;br /&gt;
 &amp;nbsp; &amp;nbsp; &amp;nbsp; System.out.print(g.toString());
&lt;br /&gt;

&lt;br /&gt;
 &amp;nbsp; &amp;nbsp; &amp;nbsp; // calculates and prints out the next 10 generations
&lt;br /&gt;
 &amp;nbsp; &amp;nbsp; &amp;nbsp; for (int i=1; i&amp;lt;=numGen; i++)
&lt;br /&gt;
 &amp;nbsp; &amp;nbsp; &amp;nbsp; {
&lt;br /&gt;
		 &amp;nbsp; g.generation();
&lt;br /&gt;
		 &amp;nbsp; System.out.println(&amp;quot;\nGeneration &amp;quot;+i);
&lt;br /&gt;
		 &amp;nbsp; System.out.print(g.toString());
&lt;br /&gt;
 &amp;nbsp; &amp;nbsp; &amp;nbsp; }
&lt;br /&gt;

&lt;br /&gt;
 &amp;nbsp; &amp;nbsp; &amp;nbsp;}
&lt;br /&gt;
}
&lt;br /&gt;

&lt;br /&gt;
import java.util.*;
&lt;br /&gt;

&lt;br /&gt;

&lt;br /&gt;
// This class Grid creates the grid for the game of life.
&lt;br /&gt;
public class Grid
&lt;br /&gt;
{
&lt;br /&gt;
 &amp;nbsp; &amp;nbsp;// instance variables
&lt;br /&gt;
 &amp;nbsp; &amp;nbsp;private int size;
&lt;br /&gt;
 &amp;nbsp; &amp;nbsp;public String[][] grid;
&lt;br /&gt;

&lt;br /&gt;
 &amp;nbsp; &amp;nbsp; // Constructor for objects of class Grid
&lt;br /&gt;
 &amp;nbsp; &amp;nbsp;public Grid (int s)
&lt;br /&gt;
 &amp;nbsp; &amp;nbsp;{
&lt;br /&gt;
 &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;// initialise instance variables
&lt;br /&gt;
 &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;size=s;
&lt;br /&gt;
 &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;grid = new String[size][size];
&lt;br /&gt;

&lt;br /&gt;
 &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;// set the grid to all empty spaces
&lt;br /&gt;
 &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;for (int i = 0; i&amp;lt;size; i++)
&lt;br /&gt;
 &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;for(int j = 0 ; j&amp;lt;size; j++)
&lt;br /&gt;
 &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;grid[i][j]=&amp;quot; &amp;quot;;
&lt;br /&gt;

&lt;br /&gt;
 &amp;nbsp; &amp;nbsp;}
&lt;br /&gt;
	// set a living cell
&lt;br /&gt;
 &amp;nbsp; &amp;nbsp;public void setCell(int row, int column)
&lt;br /&gt;
 &amp;nbsp; &amp;nbsp;{
&lt;br /&gt;
 &amp;nbsp; &amp;nbsp;	grid[row][column] = &amp;quot;*&amp;quot;;
&lt;br /&gt;
	}
&lt;br /&gt;

&lt;br /&gt;
 &amp;nbsp; &amp;nbsp;// form an appropriate String to display the grid
&lt;br /&gt;
 &amp;nbsp; &amp;nbsp;public String toString()
&lt;br /&gt;
 &amp;nbsp; &amp;nbsp;{
&lt;br /&gt;
 &amp;nbsp; &amp;nbsp;	String t=&amp;quot;&amp;quot;;
&lt;br /&gt;
 &amp;nbsp; &amp;nbsp;	for (int i= 0; i&amp;lt;size; i++)
&lt;br /&gt;
 &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;	{
&lt;br /&gt;
 &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;	 &amp;nbsp; &amp;nbsp;t=t+&amp;quot;|&amp;quot;;
&lt;br /&gt;
 &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;	 &amp;nbsp; &amp;nbsp;for (int j=0; j&amp;lt;size; j++)
&lt;br /&gt;
 &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; 	 &amp;nbsp; &amp;nbsp; t=t+grid[i][j];
&lt;br /&gt;
 &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;	 &amp;nbsp; &amp;nbsp;t=t+&amp;quot;|\n&amp;quot;;
&lt;br /&gt;
 &amp;nbsp; &amp;nbsp; &amp;nbsp;		}
&lt;br /&gt;
 &amp;nbsp; &amp;nbsp;	return t;
&lt;br /&gt;
 &amp;nbsp; &amp;nbsp;}
&lt;br /&gt;

&lt;br /&gt;
 &amp;nbsp; &amp;nbsp;// one way to count the neighbors
&lt;br /&gt;
 &amp;nbsp; &amp;nbsp;// you can also augment the array to have an extra row top and bottom
&lt;br /&gt;
 &amp;nbsp; &amp;nbsp;// &amp;nbsp; &amp;nbsp; and an extra column left and right -- and then move the game grid
&lt;br /&gt;
 &amp;nbsp; &amp;nbsp;// &amp;nbsp; &amp;nbsp; over 1 column and down 1 row and count neighbors from 1 to size+1
&lt;br /&gt;
 &amp;nbsp; &amp;nbsp;public int countNeighbors(int r, int c)
&lt;br /&gt;
 &amp;nbsp; &amp;nbsp;{
&lt;br /&gt;
		int neighbors = 0;
&lt;br /&gt;
		if (r == 0) &amp;nbsp;// special case of the top row
&lt;br /&gt;
		 &amp;nbsp;{	if (c==0) // the 0,0 cell's neighbors
&lt;br /&gt;
			 &amp;nbsp;{ if (grid[r][c+1] == &amp;quot;*&amp;quot;) neighbors++;
&lt;br /&gt;
			 &amp;nbsp; &amp;nbsp;if (grid[r+1][c+1] == &amp;quot;*&amp;quot;) neighbors++;
&lt;br /&gt;
			 &amp;nbsp; &amp;nbsp;if (grid[r+1][c] == &amp;quot;*&amp;quot;) neighbors++;
&lt;br /&gt;
			 &amp;nbsp;}
&lt;br /&gt;
		 &amp;nbsp; &amp;nbsp;else if (c==size-1) // the 0,size-1 neighbors
&lt;br /&gt;
			 &amp;nbsp;{ if (grid[r][c-1] == &amp;quot;*&amp;quot;) neighbors++;
&lt;br /&gt;
			 &amp;nbsp; &amp;nbsp;if (grid[r+1][c-1] == &amp;quot;*&amp;quot;) neighbors++;
&lt;br /&gt;
			 &amp;nbsp; &amp;nbsp;if (grid[r+1][c] == &amp;quot;*&amp;quot;) neighbors++;
&lt;br /&gt;
			 &amp;nbsp;}
&lt;br /&gt;
			else &amp;nbsp; // the row 0, cells 1 to size-2 neighbors
&lt;br /&gt;
			 &amp;nbsp; { if (grid[r][c-1] == &amp;quot;*&amp;quot;) neighbors++;
&lt;br /&gt;
				 if (grid[r+1][c-1] == &amp;quot;*&amp;quot;) neighbors++;
&lt;br /&gt;
			 &amp;nbsp; 	 if (grid[r+1][c] == &amp;quot;*&amp;quot;) neighbors++;
&lt;br /&gt;
			 &amp;nbsp; 	 if (grid[r][c+1] == &amp;quot;*&amp;quot;) neighbors++;
&lt;br /&gt;
			 &amp;nbsp; 	 if (grid[r+1][c+1] == &amp;quot;*&amp;quot;) neighbors++;
&lt;br /&gt;

&lt;br /&gt;
			 &amp;nbsp; }
&lt;br /&gt;
		 &amp;nbsp; }
&lt;br /&gt;
 &amp;nbsp;		else if (r == size-1) &amp;nbsp;// special case of the bottom row
&lt;br /&gt;
	 &amp;nbsp;	 &amp;nbsp;{ if (c==0) // the size-1,0 cell's neighbors
&lt;br /&gt;
	 &amp;nbsp;		 &amp;nbsp; { if (grid[r &amp;nbsp;][c+1] == &amp;quot;*&amp;quot;) neighbors++;
&lt;br /&gt;
	 &amp;nbsp;		 &amp;nbsp; &amp;nbsp; if (grid[r-1][c+1] == &amp;quot;*&amp;quot;) neighbors++;
&lt;br /&gt;
	 &amp;nbsp;		 &amp;nbsp; &amp;nbsp; if (grid[r-1][c &amp;nbsp;] == &amp;quot;*&amp;quot;) neighbors++;
&lt;br /&gt;
	 &amp;nbsp;		 &amp;nbsp; }
&lt;br /&gt;
		 &amp;nbsp;	else if (c==size-1) // the 0,size-1 neighbors
&lt;br /&gt;
		 &amp;nbsp;	 &amp;nbsp; { if (grid[r &amp;nbsp;][c-1] == &amp;quot;*&amp;quot;) neighbors++;
&lt;br /&gt;
		 &amp;nbsp;	 &amp;nbsp; &amp;nbsp; if (grid[r-1][c-1] == &amp;quot;*&amp;quot;) neighbors++;
&lt;br /&gt;
		 &amp;nbsp;	 &amp;nbsp;	 if (grid[r-1][c &amp;nbsp;] == &amp;quot;*&amp;quot;) neighbors++;
&lt;br /&gt;
		 &amp;nbsp;	 &amp;nbsp; }
&lt;br /&gt;
		 &amp;nbsp;	else &amp;nbsp; // the row 0, cells 1 to size-2 neighbors
&lt;br /&gt;
		 &amp;nbsp;	 &amp;nbsp; { if (grid[r &amp;nbsp;][c-1] == &amp;quot;*&amp;quot;) neighbors++;
&lt;br /&gt;
		 &amp;nbsp;	 	 if (grid[r-1][c-1] == &amp;quot;*&amp;quot;) neighbors++;
&lt;br /&gt;
		 &amp;nbsp;		 if (grid[r-1][c &amp;nbsp;] == &amp;quot;*&amp;quot;) neighbors++;
&lt;br /&gt;
		 &amp;nbsp;		 if (grid[r &amp;nbsp;][c+1] == &amp;quot;*&amp;quot;) neighbors++;
&lt;br /&gt;
		 &amp;nbsp;		 if (grid[r-1][c+1] == &amp;quot;*&amp;quot;) neighbors++;
&lt;br /&gt;
 &amp;nbsp; &amp;nbsp;		 &amp;nbsp; }
&lt;br /&gt;
		 &amp;nbsp;}
&lt;br /&gt;
	 &amp;nbsp; else if (c == 0) &amp;nbsp;// special case of the left column from row 1 to size-2
&lt;br /&gt;
 &amp;nbsp;		 {
&lt;br /&gt;
		 &amp;nbsp; if (grid[r-1][c &amp;nbsp;] == &amp;quot;*&amp;quot;) neighbors++;
&lt;br /&gt;
	 &amp;nbsp; 	 &amp;nbsp; if (grid[r-1][c+1] == &amp;quot;*&amp;quot;) neighbors++;
&lt;br /&gt;
	 &amp;nbsp; 	 &amp;nbsp; if (grid[r &amp;nbsp;][c+1] == &amp;quot;*&amp;quot;) neighbors++;
&lt;br /&gt;
	 &amp;nbsp; 	 &amp;nbsp; if (grid[r+1][c &amp;nbsp;] == &amp;quot;*&amp;quot;) neighbors++;
&lt;br /&gt;
	 &amp;nbsp; 	 &amp;nbsp; if (grid[r+1][c+1] == &amp;quot;*&amp;quot;) neighbors++;
&lt;br /&gt;
	 &amp;nbsp; &amp;nbsp; }
&lt;br /&gt;
	 &amp;nbsp; else if (c == size-1) &amp;nbsp;// special case of the right column from row 1 to size-2
&lt;br /&gt;
		 {
&lt;br /&gt;
		 &amp;nbsp; if (grid[r-1][c &amp;nbsp;] == &amp;quot;*&amp;quot;) neighbors++;
&lt;br /&gt;
		 &amp;nbsp; if (grid[r-1][c-1] == &amp;quot;*&amp;quot;) neighbors++;
&lt;br /&gt;
		 &amp;nbsp; if (grid[r &amp;nbsp;][c-1] == &amp;quot;*&amp;quot;) neighbors++;
&lt;br /&gt;
		 &amp;nbsp; if (grid[r+1][c &amp;nbsp;] == &amp;quot;*&amp;quot;) neighbors++;
&lt;br /&gt;
		 &amp;nbsp; if (grid[r+1][c-1] == &amp;quot;*&amp;quot;) neighbors++;
&lt;br /&gt;
	 &amp;nbsp; &amp;nbsp; }
&lt;br /&gt;
	 &amp;nbsp; else
&lt;br /&gt;
	 &amp;nbsp; &amp;nbsp; &amp;nbsp;{ // check the 8 neighbors
&lt;br /&gt;
		 &amp;nbsp; if (grid[r-1][c-1]==&amp;quot;*&amp;quot;) &amp;nbsp;neighbors++;
&lt;br /&gt;
		 &amp;nbsp; if (grid[r-1][c &amp;nbsp;]==&amp;quot;*&amp;quot;) &amp;nbsp;neighbors++;
&lt;br /&gt;
		 &amp;nbsp; if (grid[r-1][c+1]==&amp;quot;*&amp;quot;) &amp;nbsp;neighbors++;
&lt;br /&gt;
		 &amp;nbsp; if (grid[r &amp;nbsp;][c-1]==&amp;quot;*&amp;quot;) &amp;nbsp;neighbors++;
&lt;br /&gt;
		 &amp;nbsp; if (grid[r &amp;nbsp;][c+1]==&amp;quot;*&amp;quot;) &amp;nbsp;neighbors++;
&lt;br /&gt;
		 &amp;nbsp; if (grid[r+1][c-1]==&amp;quot;*&amp;quot;) &amp;nbsp;neighbors++;
&lt;br /&gt;
		 &amp;nbsp; if (grid[r+1][c &amp;nbsp;]==&amp;quot;*&amp;quot;) &amp;nbsp;neighbors++;
&lt;br /&gt;
		 &amp;nbsp; if (grid[r+1][c+1]==&amp;quot;*&amp;quot;) &amp;nbsp;neighbors++;
&lt;br /&gt;
		 &amp;nbsp;}
&lt;br /&gt;
 &amp;nbsp; &amp;nbsp; &amp;nbsp;return neighbors;
&lt;br /&gt;
 &amp;nbsp;}
&lt;br /&gt;

&lt;br /&gt;

&lt;br /&gt;
 &amp;nbsp; &amp;nbsp;// Count neighbors and compute next generation
&lt;br /&gt;
 &amp;nbsp; &amp;nbsp;public void generation()
&lt;br /&gt;
 &amp;nbsp; &amp;nbsp;{
&lt;br /&gt;
 &amp;nbsp; &amp;nbsp; &amp;nbsp; int[][] neighborGrid= new int [size][size];
&lt;br /&gt;

&lt;br /&gt;
 &amp;nbsp; &amp;nbsp; &amp;nbsp; for (int i=0; i&amp;lt;size; i++)
&lt;br /&gt;
 &amp;nbsp; &amp;nbsp; &amp;nbsp; 	 &amp;nbsp; for (int j=0; j&amp;lt;size; j++)
&lt;br /&gt;
				neighborGrid[i][j] = countNeighbors(i,j);
&lt;br /&gt;

&lt;br /&gt;
 &amp;nbsp; &amp;nbsp; &amp;nbsp; // next generation
&lt;br /&gt;
 &amp;nbsp; &amp;nbsp; &amp;nbsp; for (int i = 0; i&amp;lt;size; i++)
&lt;br /&gt;
 &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;for(int j = 0 ; j&amp;lt;size; j++)
&lt;br /&gt;
 &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;// die of loneliness (0,1) or overcrowding (4+)
&lt;br /&gt;
 &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;if (neighborGrid[i][j]&amp;lt;=1 || neighborGrid[i][j] &amp;gt;=4)
&lt;br /&gt;
 &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;	grid[i][j]=&amp;quot; &amp;quot;;
&lt;br /&gt;
 &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;// be born (3)
&lt;br /&gt;
 &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;else if (neighborGrid[i][j]==3)
&lt;br /&gt;
 &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;grid[i][j]=&amp;quot;*&amp;quot;;
&lt;br /&gt;
 &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;// remain
&lt;br /&gt;
 &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;else
&lt;br /&gt;
 &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;grid[i][j]=grid[i][j];
&lt;br /&gt;

&lt;br /&gt;

&lt;br /&gt;
 &amp;nbsp; &amp;nbsp;}
&lt;br /&gt;

&lt;br /&gt;

&lt;br /&gt;
}
&lt;br /&gt;

&lt;br /&gt;

&lt;br /&gt;
There are my two programs does anyone have any idea what I need to do next.
&lt;/span&gt;&lt;br /&gt;
</description>
</item>
<item>
	<title>Object Oriented Programming :: RE: java practice stuff</title>
	<link>http://www.daremedy.com/forum/viewtopic.php?p=20507#20507</link>
	<description>Author: &lt;a href=&quot;http://www.daremedy.com/forum/profile.php?mode=viewprofile&amp;u=3&quot; target=&quot;_blank&quot;&gt;daremedy&lt;/a&gt;&lt;br /&gt;

Posted: Sat Apr 08, 2006 2:28 pm (GMT -4)&lt;br /&gt;
Topic Replies: 13&lt;br /&gt;&lt;br /&gt;
&lt;span class="postbody"&gt;Sorry, I dont do homework. If you posted some of &lt;span style=&quot;font-weight: bold&quot;&gt;your&lt;/span&gt; work, then maybe I could help. &lt;img src=&quot;http://www.daremedy.com/forum/images/smiles/icon_wink.gif&quot; alt=&quot;Wink&quot; border=&quot;0&quot; /&gt;
&lt;br /&gt;_________________&lt;br /&gt;&lt;span style=&quot;color: #A8D2FF&quot;&gt;::&lt;/span&gt; &lt;span style=&quot;font-size: 9px; line-height: normal&quot;&gt;&lt;a href=&quot;http://d0x.de/?http://www.daremedy.com&quot; target=&quot;_blank&quot; class=&quot;postlink&quot;&gt;Webmaster Resources&lt;/a&gt; &lt;/span&gt; &lt;span style=&quot;color: #A8D2FF&quot;&gt;::&lt;/span&gt;&lt;/span&gt;&lt;br /&gt;
</description>
</item>
<item>
	<title>Object Oriented Programming :: RE: java practice stuff</title>
	<link>http://www.daremedy.com/forum/viewtopic.php?p=20389#20389</link>
	<description>Author: &lt;a href=&quot;http://www.daremedy.com/forum/profile.php?mode=viewprofile&amp;u=795&quot; target=&quot;_blank&quot;&gt;leroyharvey126&lt;/a&gt;&lt;br /&gt;
Subject: Here's the one I'm working on now you have already done it.&lt;br /&gt;
Posted: Mon Apr 03, 2006 12:29 pm (GMT -4)&lt;br /&gt;
Topic Replies: 13&lt;br /&gt;&lt;br /&gt;
&lt;span class="postbody"&gt;Testing
&lt;br /&gt;

&lt;br /&gt;
1. &amp;nbsp; &amp;nbsp; &amp;nbsp;Testing a class for run-time errors in the context of an ongoing project is always difficult. The source of an error may be obscured by other phenomena, there could be more than one error and it might arise under unusual circumstances or even appear to go away. Testing a new class in isolation, before adding it to a project, gives you an excellent opportunity to locate errors before they become lost in a broken project.
&lt;br /&gt;

&lt;br /&gt;
Testing in isolation is called unit testing. It requires a test harness, that is, a class that calls your methods with parameters obtained from 1) user input, 2) a file, or 3) a program that automatically generates parameter values.
&lt;br /&gt;

&lt;br /&gt;
You will write two test stubs for the following class. The first test stub takes test values from prompted user input. The second test stub generates test cases randomly.
&lt;br /&gt;

&lt;br /&gt;
public class Finder
&lt;br /&gt;
{
&lt;br /&gt;
 &amp;nbsp; &amp;nbsp;/**
&lt;br /&gt;
 &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;Constructs a finder that finds substrings in a given string.
&lt;br /&gt;
 &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;@param aString the string to analyze
&lt;br /&gt;
 &amp;nbsp; &amp;nbsp;*/
&lt;br /&gt;
 &amp;nbsp; &amp;nbsp;public Finder(String aString)
&lt;br /&gt;
 &amp;nbsp; &amp;nbsp;{
&lt;br /&gt;
 &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;s = aString;
&lt;br /&gt;
 &amp;nbsp; &amp;nbsp;}
&lt;br /&gt;

&lt;br /&gt;
 &amp;nbsp; &amp;nbsp;/**
&lt;br /&gt;
 &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;Search for a substring.
&lt;br /&gt;
 &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;@param sub the string to look for
&lt;br /&gt;
 &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;@return if found, the integer position of sub in the string
&lt;br /&gt;
 &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;else, -1
&lt;br /&gt;
 &amp;nbsp; &amp;nbsp;*/
&lt;br /&gt;
 &amp;nbsp; &amp;nbsp;public int findFirst(String sub)
&lt;br /&gt;
 &amp;nbsp; &amp;nbsp;{
&lt;br /&gt;
 &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;int i = 0;
&lt;br /&gt;

&lt;br /&gt;
 &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;while (sub.length() + i &amp;lt;= s.length())
&lt;br /&gt;
 &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;{
&lt;br /&gt;
 &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;if(s.substring(i, i + sub.length()).equals(sub))
&lt;br /&gt;
 &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;return i;
&lt;br /&gt;
 &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;else
&lt;br /&gt;
 &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;i++;
&lt;br /&gt;
 &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;}
&lt;br /&gt;
 &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;return -1;
&lt;br /&gt;
 &amp;nbsp; &amp;nbsp;}
&lt;br /&gt;

&lt;br /&gt;
 &amp;nbsp; &amp;nbsp;private String s;
&lt;br /&gt;
}
&lt;br /&gt;

&lt;br /&gt;
First, provide a test harness that prompts the user for test cases.
&lt;br /&gt;

&lt;br /&gt;
 
&lt;br /&gt;

&lt;br /&gt;
It is tedious to type in lots of test data every time you find a bug in your code. How can you reduce your workload?
&lt;br /&gt;

&lt;br /&gt;
 
&lt;br /&gt;

&lt;br /&gt;
2. &amp;nbsp; &amp;nbsp; &amp;nbsp;Provide a test harness for randomly generated test cases.
&lt;br /&gt;

&lt;br /&gt;
When generating test cases randomly, be sure to include positive and negative tests.
&lt;br /&gt;

&lt;br /&gt;
Hint: We have no function to generate a completely random string, but you can write one. Make a string of the 26 lowercase letters, then extract single-character length substrings from it at positions generated by generator.nextInt(26) and concatenate them.
&lt;br /&gt;

&lt;br /&gt;
 
&lt;br /&gt;

&lt;br /&gt;
Did you think of boundary cases? What are the boundary cases in this example?
&lt;br /&gt;

&lt;br /&gt;
 
&lt;br /&gt;

&lt;br /&gt;
Implementing an Interface
&lt;br /&gt;

&lt;br /&gt;
3. &amp;nbsp; &amp;nbsp; &amp;nbsp;The Comparable interface is a commonly used interface in Java. Look up the Comparable interface in the API documentation.
&lt;br /&gt;
If you wanted to modify the BankAccount class so that it implements the Comparable&amp;lt;BankAccount&amp;gt; interface, what method(s) do you need to implement?
&lt;br /&gt;

&lt;br /&gt;
Give the method signatures, that is, the return type(s), the method name(s), and the method parameter(s).
&lt;br /&gt;

&lt;br /&gt;
The compareTo method compares two parameters, the implicit and explicit parameter. The call
&lt;br /&gt;

&lt;br /&gt;
a.compareTo(b)
&lt;br /&gt;

&lt;br /&gt;
returns
&lt;br /&gt;

&lt;br /&gt;
· &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; 1 if a is larger than b
&lt;br /&gt;

&lt;br /&gt;
· &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; -1 if a is smaller than b
&lt;br /&gt;

&lt;br /&gt;
· &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; 0 if a and b are the same
&lt;br /&gt;

&lt;br /&gt;
Implement the compareTo method of the BankAccount class so that it compares the balances of the accounts. Some of the code has been provided for you:
&lt;br /&gt;

&lt;br /&gt;

&lt;br /&gt;
public class BankAccount implements Comparable&amp;lt;BankAccount&amp;gt;
&lt;br /&gt;
{
&lt;br /&gt;
 &amp;nbsp; &amp;nbsp;. . .
&lt;br /&gt;

&lt;br /&gt;
 &amp;nbsp; &amp;nbsp;/**
&lt;br /&gt;
 &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;Compares two bank accounts.
&lt;br /&gt;
 &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;@param other the other BankAccount
&lt;br /&gt;
 &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;@return 1 if this bank account has a greater balance than the other one,
&lt;br /&gt;
 &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;-1 if this bank account is has a smaller balance than the other one,
&lt;br /&gt;
 &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;and 0 if both bank accounts have the same balance
&lt;br /&gt;
 &amp;nbsp; &amp;nbsp;*/
&lt;br /&gt;
 &amp;nbsp; &amp;nbsp;public int compareTo(BankAccount other)
&lt;br /&gt;
 &amp;nbsp; &amp;nbsp;{
&lt;br /&gt;
 &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;. . .
&lt;br /&gt;
 &amp;nbsp; &amp;nbsp;}
&lt;br /&gt;

&lt;br /&gt;
 &amp;nbsp; &amp;nbsp;private double balance;
&lt;br /&gt;
}
&lt;br /&gt;

&lt;br /&gt;
4. &amp;nbsp; &amp;nbsp; &amp;nbsp;The sort method of the Collections class can sort a list of objects of classes that implement the Comparable interface.
&lt;br /&gt;

&lt;br /&gt;
Here is the outline of the required code.
&lt;br /&gt;

&lt;br /&gt;

&lt;br /&gt;
import java.util.ArrayList;
&lt;br /&gt;
import java.util.Collections;
&lt;br /&gt;
. . .
&lt;br /&gt;

&lt;br /&gt;
// put bank accounts into a list
&lt;br /&gt;
ArrayList&amp;lt;BankAccount&amp;gt; list = new ArrayList&amp;lt;BankAccount&amp;gt;();
&lt;br /&gt;
list.add(ba1);
&lt;br /&gt;
list.add(ba2);
&lt;br /&gt;
list.add(ba3);
&lt;br /&gt;

&lt;br /&gt;
// call the library sort method
&lt;br /&gt;
Collections.sort(list);
&lt;br /&gt;

&lt;br /&gt;
// print out the sorted list
&lt;br /&gt;
for (BankAccount b : list) 
&lt;br /&gt;
 &amp;nbsp; System.out.println(b.getBalance());
&lt;br /&gt;

&lt;br /&gt;
Using this outline, write a test program that sorts a list of five bank accounts.
&lt;br /&gt;

&lt;br /&gt;
What is the outcome of executing your test program? Remember that you must use the version of the BankAccount class that implements the Comparable interface.
&lt;br /&gt;

&lt;br /&gt;
Change your compareTo method by switching the return values 1 and -1. Recompile and run the test program again. What is the outcome of executing your test program? Explain the changed output.
&lt;br /&gt;
Event Handling
&lt;br /&gt;

&lt;br /&gt;
5. &amp;nbsp; &amp;nbsp; &amp;nbsp;A timer notifies a listener at regular time intervals. The time interval is given in milliseconds. The listener must implement the ActionListener interface.
&lt;br /&gt;

&lt;br /&gt;
For example, the call
&lt;br /&gt;

&lt;br /&gt;

&lt;br /&gt;
Timer t = new Timer(1000, listener);
&lt;br /&gt;
t.start();
&lt;br /&gt;

&lt;br /&gt;
causes the timer to call the actionPerformed method once per second.
&lt;br /&gt;

&lt;br /&gt;
To see the timer at work, install a listener that simply prints out the current time. To print out the current time call
&lt;br /&gt;

&lt;br /&gt;

&lt;br /&gt;
import java.util.Date;
&lt;br /&gt;
. . .
&lt;br /&gt;
System.out.println(new Date());
&lt;br /&gt;

&lt;br /&gt;
Supply a class CurrentTimePrinter that implements the ActionListener interface and whose actionPerformed method prints the current time.
&lt;br /&gt;

&lt;br /&gt;
What is the code for the CurrentTimePrinter class?
&lt;br /&gt;

&lt;br /&gt;
Now put together a test program that prints the current time once each second.
&lt;br /&gt;

&lt;br /&gt;
Construct a CurrentTimePrinter, construct and start a timer, and put up a message dialog so that the program user can quit the program.
&lt;br /&gt;

&lt;br /&gt;

&lt;br /&gt;
JOptionPane.showMessageDialog(null, &amp;quot;Quit?&amp;quot;);
&lt;br /&gt;
System.exit(0);
&lt;br /&gt;

&lt;br /&gt;
 
&lt;br /&gt;

&lt;br /&gt;
6. &amp;nbsp; &amp;nbsp; &amp;nbsp;The program of the preceding exercise keeps printing the time, once per second. In this exercise, you will modify the program so that it stops the timer after 15 seconds, restarts it after another 15 seconds, stops it after a further 15 seconds, and so on.
&lt;br /&gt;

&lt;br /&gt;
Of course, we will use a second timer for this purpose. Here is the implementation:
&lt;br /&gt;

&lt;br /&gt;

&lt;br /&gt;
class TimerToggler implements ActionListener
&lt;br /&gt;
{
&lt;br /&gt;
 &amp;nbsp; &amp;nbsp;public void actionPerformed(ActionEvent event)
&lt;br /&gt;
 &amp;nbsp; &amp;nbsp;{
&lt;br /&gt;
 &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;if (t.isRunning())
&lt;br /&gt;
 &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;t.stop();
&lt;br /&gt;
 &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;else
&lt;br /&gt;
 &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;t.restart();
&lt;br /&gt;
 &amp;nbsp; &amp;nbsp; }
&lt;br /&gt;
}
&lt;br /&gt;

&lt;br /&gt;
ActionListener listener2 = new TimerToggler();
&lt;br /&gt;
Timer t2 = new Timer(15000, listener2);
&lt;br /&gt;

&lt;br /&gt;
t2.start();
&lt;br /&gt;

&lt;br /&gt;
Add the code that defines t2 after the instruction for starting t and before displaying the option pane. Compile the code.
&lt;br /&gt;

&lt;br /&gt;
What compiler error do you get? Why? What can you do to avoid it?
&lt;br /&gt;

&lt;br /&gt;
Fix your program so that the first timer is declared as final. Methods of inner classes can access only final local variables of the enclosing method.
&lt;br /&gt;

&lt;br /&gt;
Your program should now compile and run. Execute it for approximately one minute. What output do you get?
&lt;br /&gt;

&lt;br /&gt;
7. &amp;nbsp; &amp;nbsp; &amp;nbsp;It is a nuisance that the user must stop the program by clicking a button. Solve that problem by automatically stopping the program after two minutes (or 120,000 milliseconds). Simply make a timer listener that calls System.exit(0) in the actionPerformed method of its action listener.
&lt;br /&gt;

&lt;br /&gt;
Write the code for the third timer.
&lt;br /&gt;

&lt;br /&gt;
Now add the code for your third timer to the program and remove the last two lines of main, that is, the message dialog display and the call to System.exit(0).
&lt;br /&gt;

&lt;br /&gt;
Compile your program and run it.
&lt;br /&gt;

&lt;br /&gt;
Does it work as expected? If not, why?
&lt;br /&gt;

&lt;br /&gt;
The program exited immediately when exiting main, so the timers never ran.
&lt;br /&gt;

&lt;br /&gt;
To keep main alive, you'll need to add the message dialog back in. Simply add the line
&lt;br /&gt;

&lt;br /&gt;
JOptionPane.showMessageDialog(null, &amp;quot;Please wait&amp;quot;);
&lt;br /&gt;

&lt;br /&gt;
to the end of main.
&lt;br /&gt;

&lt;br /&gt;
Now the program will run for two minutes, and then exit. What output do you get?
&lt;/span&gt;&lt;br /&gt;
</description>
</item>
<item>
	<title>Object Oriented Programming :: RE: java practice stuff</title>
	<link>http://www.daremedy.com/forum/viewtopic.php?p=20388#20388</link>
	<description>Author: &lt;a href=&quot;http://www.daremedy.com/forum/profile.php?mode=viewprofile&amp;u=795&quot; target=&quot;_blank&quot;&gt;leroyharvey126&lt;/a&gt;&lt;br /&gt;
Subject: Need Some Help?&lt;br /&gt;
Posted: Mon Apr 03, 2006 12:21 pm (GMT -4)&lt;br /&gt;
Topic Replies: 13&lt;br /&gt;&lt;br /&gt;
&lt;span class="postbody"&gt;I'm in a java concepts course right now and I've pretty well so far (B+) but now that it is getting close to the end of the semester the course is becoming rather challenging I was wondering if you could look at some of my labs give me a little help thanks.
&lt;/span&gt;&lt;br /&gt;
</description>
</item>
<item>
	<title>Object Oriented Programming :: RE: Is C++ a widely used program?</title>
	<link>http://www.daremedy.com/forum/viewtopic.php?p=20157#20157</link>
	<description>Author: &lt;a href=&quot;http://www.daremedy.com/forum/profile.php?mode=viewprofile&amp;u=3&quot; target=&quot;_blank&quot;&gt;daremedy&lt;/a&gt;&lt;br /&gt;

Posted: Thu Mar 30, 2006 7:22 pm (GMT -4)&lt;br /&gt;
Topic Replies: 1&lt;br /&gt;&lt;br /&gt;
&lt;span class="postbody"&gt;Concentrate on C and Java. C++ is a great language, but if you look at the job market, most people want C or Java, and a lot are actually transitioning to the .NET era, so you should get comfortable with C#, J# and all of those Microsoft languages. Its hard to say what language to focus more on, it really depends on where you're headed in life. A few years ago I was all about C and Java until I learned about PHP. Now I'm stronger in PHP than I am in C, but I know enough that I can get back into coding C or Java pretty easily. Learn all the language, get familiar with them, its never a bad thing. But if one language interests you more than others, by all means explore and get stronger.
&lt;br /&gt;_________________&lt;br /&gt;&lt;span style=&quot;color: #A8D2FF&quot;&gt;::&lt;/span&gt; &lt;span style=&quot;font-size: 9px; line-height: normal&quot;&gt;&lt;a href=&quot;http://d0x.de/?http://www.daremedy.com&quot; target=&quot;_blank&quot; class=&quot;postlink&quot;&gt;Webmaster Resources&lt;/a&gt; &lt;/span&gt; &lt;span style=&quot;color: #A8D2FF&quot;&gt;::&lt;/span&gt;&lt;/span&gt;&lt;br /&gt;
</description>
</item>
</channel>
</rss>

