<?xml version="1.0" encoding="utf-8" ?><?xml-stylesheet type="text/xsl" href="http://www.daniweb.com/js/rss.xsl"?><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/</link>
		<description>Online discussion community for IT professionals and enthusiasts. Technology publication meets social media.</description>
		<language>en-US</language>
		<ttl>60</ttl>
		<!-- PubSubHubbub Discovery -->
		<link rel="hub" href="http://daniweb.superfeedr.com/" xmlns="http://www.w3.org/2005/Atom" />
		<link rel="self" href="http://www.daniweb.com/rss/pull" xmlns="http://www.w3.org/2005/Atom" />
		<!-- End Of PubSubHubbub Discovery -->
				<item>
			<title>my table wont update</title>
			<link>http://www.daniweb.com/web-development/php/threads/454885/my-table-wont-update</link>
			<pubDate>Sat, 18 May 2013 20:30:49 +0000</pubDate>
			<description>hallo there, Its a very complicate problem and i wiil try to be as brief as i can. I hope you ll be able to understand my description. i ve coded a script that works perfect in my localhost. When i uploaded the files to a server some things just ...</description>
			<content:encoded><![CDATA[ <p>hallo there,</p>

<p>Its a very complicate problem and i wiil try to be as brief as i can. I hope you ll be able to understand my description.</p>

<p>i ve coded a script that works perfect in my localhost. When i uploaded the files to a server some things just did not work.</p>

<p>For the script i used 2 mysql tambles. The tables have the same exact structure and different names. They are 'big' tables. 46 fields each.</p>

<p>the fields from the tables fills by forms section by section (lets say that a section is 3-5 fields). (one insert and then with updates).</p>

<p>It seems that when  most fields are already filled up the next fields just wont update. There are no errors. When i try to fill up those fields by hand using PHPMYADMIN and the same sql command i used in my code the fields updates just fine.</p>

<p>Is there something i am missing? Do u thing it is a coding mistake or there is a apache setting i did not think about? it is important to mention that if i reapet the procedure by starting filling the table from the section that wouldnt update it will, and soon another section wont update.</p>

<p>i know i may did not give a quite good description. If you dont understand what i am saynig i will try again including some code..</p>
 ]]></content:encoded>
			<category domain="http://www.daniweb.com/web-development/php/17">PHP</category>
			<dc:creator>dourvas</dc:creator>
			<guid isPermaLink="true">http://www.daniweb.com/web-development/php/threads/454885/my-table-wont-update</guid>
		</item>
				<item>
			<title>Mystery of Multiple Record Insertions</title>
			<link>http://www.daniweb.com/web-development/php/threads/454884/mystery-of-multiple-record-insertions</link>
			<pubDate>Sat, 18 May 2013 20:09:51 +0000</pubDate>
			<description>Hi All I'm sure I'm missing something very small - and embarrassing! I'm being lazy - I could have entered the data manually, but wanted to automate it. I have a small csv file containing swimming meets, dates and locations along the following lines: May-13;;;; 17;other;Level 1 Program 1;Arboretum; 24;other;All ...</description>
			<content:encoded><![CDATA[ <p>Hi All<br />
I'm sure I'm missing something very small - and embarrassing!<br />
I'm being lazy - I could have entered the data manually, but wanted to automate it.</p>

<p>I have a small csv file containing swimming meets, dates and locations along the following lines:</p>

<pre><code>May-13;;;;
17;other;Level 1 Program 1;Arboretum;
24;other;All Levels Program 2;King's Park;
June-13;;;;
15;other;Level 2 3 Program3;Pmb;
.
. and so forth
</code></pre>

<p>I read this into an array, run through the array to correct the date format and then insert each line into a mySQL database table.<br />
All easy, but my code is inserting multiple entries for each key in the array! Sometimes it inserts 6 records for each key and sometimes 19. It jsut seems to be quite random!</p>

<p>My code:</p>

<pre><code>//===== Read csv into array =====
if (($handle = fopen("../uploads/KZNCal.csv", "r")) !== FALSE) {
    while (($data = fgetcsv($handle, 1000, ";")) !== FALSE) {
        $Cal[] = $data;
    }
  fclose($data);
}
$con  = new mysqli($HOST, $USER, $PASS, $NAME);
if (mysqli_connect_errno()) {
    printf("Connect failed: %s\n", mysqli_connect_error());
    exit();
}

$query = $con-&gt;prepare("INSERT INTO `kzn_upcoming` (`meet_name`, `location`, `start_date`) VALUES (?, ?, ?)");
foreach ($Cal as $Key =&gt; $Event) {
    //===== First 2 rows not needed =====
    if ($Key &gt; 1) {
        if (!is_numeric(substr($Event[0], 0, 1))) {
            //===== Get month and year =====
            $Month = date('m', strtotime(substr($Event[0], 0, 3)));
            $Year  = '20' . substr($Event[0], 4);
        }
        else {
            $Day        = trim(substr($Event[0], 0, 2));
            if ($Day &lt; 10) {$Day = '0' . $Day;}
            // === Discarded $Event[1] - of no consequence for this table. ===
            $Name       = $Event[2];
            $Location   = $Event[3];
            $Start      = "$Year-$Month-$Day";
            //===== Inserted into "clean" array to see if there was something wrong =====
            $Calendar[] = array($Name, $Location, $Start);
        }
    }
}
echo "&lt;br&gt;Count: " . count($Calendar) . "&lt;br&gt;"; //===== Produces expected result of 39 =====

$query = $con-&gt;prepare("INSERT INTO `kzn_upcoming` (`meet_name`, `location`, `start_date`) VALUES (?, ?, ?)");
foreach ($Calendar as $Key =&gt; $Meet) {
    echo "$Key: $Meet[0] - $Meet[1] - $Meet[2]&lt;br&gt;"; //===== All displayed correctly =====
    $query-&gt;bind_param("sss", $Meet[0], $Meet[1], $Meet[2]);
    $query-&gt;execute();
}

$query-&gt;close();
$con-&gt;close();
</code></pre>

<p>There are a whole 39 rows in the $Calendar array. The echo produces the expected result - 39 rows, as per the count(). I get random duplication of each record inserted into the table! One run, I had 91 records for each Meet, another "only" 6!<br />
What have I missed?</p>
 ]]></content:encoded>
			<category domain="http://www.daniweb.com/web-development/php/17">PHP</category>
			<dc:creator>RoryGren</dc:creator>
			<guid isPermaLink="true">http://www.daniweb.com/web-development/php/threads/454884/mystery-of-multiple-record-insertions</guid>
		</item>
				<item>
			<title>Eurovision</title>
			<link>http://www.daniweb.com/community-center/geeks-lounge/threads/454883/eurovision</link>
			<pubDate>Sat, 18 May 2013 20:09:30 +0000</pubDate>
			<description>Watching the Eurovision Song Contest. For those of you who have no idea about it, it's a song contest (duh, obviously), contested by 26 countries - in the final anyway. It's truly dire and brilliant in equal measure. I love wathcing it for the scantily clad Eastern Europeans - but ...</description>
			<content:encoded><![CDATA[ <p>Watching the Eurovision Song Contest. For those of you who have no idea about it, it's a song contest (duh, obviously), contested by 26 countries - in the final anyway. It's truly dire and brilliant in equal measure. I love wathcing it for the scantily clad Eastern Europeans - but don't tell the wife. I'm here dutifully scoring the contestants on their musical prowess of course. :)</p>

<p><a href="http://www.eurovision.tv/page/timeline" rel="nofollow">http://www.eurovision.tv/page/timeline</a></p>

<p>A secret passion...</p>

<p>//EDIT</p>

<p>OMG - Romania have to win!!!</p>

<p>Even if Bonnie Tyler (UK entry) is Welsh. That's going to be embarrassing.</p>
 ]]></content:encoded>
			<category domain="http://www.daniweb.com/community-center/geeks-lounge/6">Geeks' Lounge</category>
			<dc:creator>diafol</dc:creator>
			<guid isPermaLink="true">http://www.daniweb.com/community-center/geeks-lounge/threads/454883/eurovision</guid>
		</item>
				<item>
			<title>Assembly Beginner, question</title>
			<link>http://www.daniweb.com/software-development/assembly/threads/454882/assembly-beginner-question</link>
			<pubDate>Sat, 18 May 2013 20:07:19 +0000</pubDate>
			<description>Howdy Friends; I have just started learning assembly, and am currently working with NASM, in Linux. I am not creating anything close to advanced, yet because I would like to know if I am on the right path with what I am learning. The code that is posted below is ...</description>
			<content:encoded><![CDATA[ <p>Howdy Friends;<br />
I have just started learning assembly, and am currently working with NASM, in Linux. I am not creating anything close to advanced, yet because I would like to know if I am on the right path with what I am learning. The code that is posted below is simply a hello world with two lines of output (but it doesn't work the way I intended). The output that I was hoping for was:</p>

<blockquote>
  <p>Howdy Folks!<br />
  Another line!</p>
</blockquote>

<p>However; I simlpy get:</p>

<blockquote>
  <p>Another line!</p>
</blockquote>

<p>Here is my code:</p>

<pre><code>SECTION .text
            global start
START:
            mov eax, 4          ;sys_write
            mov ebx, 1          ;output to screen
            mov ecx, string ;creates address for my string variable
            mov ecx, string2    ;creates address for another string
            mov edx, length ;creates address for my length variable
            mov edx, length2    ;creates address for another length
            int 80h             ;call the kernel
            mov eax, 1          ;sys_exit
            mov ebx, 0          ;no error exit
            int 80h             ;call the kernel
SECTION .data
string: db 'Howdy Folks!', 0Ah  ;output string
length: equ 12                      ;length of string
string2: db 'Another line!', 0Ah    ;output another string
length2: equ 13                 ;length of string2
</code></pre>

<p>Where did I go wrong?<br />
Did I accidentally overwrite string ('Howdy Folks') with the value of string2 ('Another Line!')?<br />
How can I go about fixing this?<br />
Also, are my comments appropriate with how the line actually functions?</p>

<p>For instance;</p>

<pre><code>int 80h             ;call the kernel
</code></pre>

<p>Does this line really call the kernel?<br />
If so what is it actually doing there?</p>

<p>Thanks for any help.</p>
 ]]></content:encoded>
			<category domain="http://www.daniweb.com/software-development/assembly/125">Assembly</category>
			<dc:creator>pbj.codez</dc:creator>
			<guid isPermaLink="true">http://www.daniweb.com/software-development/assembly/threads/454882/assembly-beginner-question</guid>
		</item>
				<item>
			<title>how to include java file in jsp file?</title>
			<link>http://www.daniweb.com/software-development/java/threads/454881/how-to-include-java-file-in-jsp-file</link>
			<pubDate>Sat, 18 May 2013 19:44:48 +0000</pubDate>
			<description>i want to use JavaFunctions.java into login.jsp file. my plan is to store all my java functions in one file and i can use them later. ex check for string or number etc functions... first my folder tree. webside_01 &gt;.settings &gt;build &gt;src &gt;newServlet JavaFunctions.java website_01_Servlet.java &gt;WebContent &gt;META-INF &gt;WEB-INF index.jsp login.jsp ...</description>
			<content:encoded><![CDATA[ <p>i want to use JavaFunctions.java into login.jsp file. my plan is to store all my java functions in one file and i can use them later. ex check for string or number etc functions...</p>

<p>first my folder tree.</p>

<pre><code class="language-java">webside_01
    &gt;.settings
    &gt;build
    &gt;src
         &gt;newServlet
              JavaFunctions.java
              website_01_Servlet.java
    &gt;WebContent
        &gt;META-INF
        &gt;WEB-INF
        index.jsp
        login.jsp
</code></pre>

<p>JavaFunctions.java</p>

<pre><code class="language-java">public class JavaFunctions {
    /*** test to see if its a number ***/
    public static boolean isNumber(String str){
        try{
            int num = Integer.parseInt(str);
        }
        catch(NumberFormatException e){
            return false;
        }
        return true;
    }/*** End of isnumber Method***/
}
</code></pre>

<p>Know in this login.jsp file i want to use 'isNumber()' method. but iam getting error on:<br />
 &lt;%@ include file="JavaFunctions.java" %&gt;</p>

<p>login.jsp</p>

<pre><code class="language-java">&lt;%@ page language="java" contentType="text/html; charset=ISO-8859-1"
    pageEncoding="ISO-8859-1"%&gt;
 &lt;%@ include file="JavaFunctions.java" %&gt;
&lt;!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "<a href="http://www.w3.org/TR/html4/loose.dtd" rel="nofollow">http://www.w3.org/TR/html4/loose.dtd</a>"&gt;
&lt;html&gt;
&lt;head&gt;&lt;/head&gt;
&lt;body&gt;

    .....
&lt;/body&gt;
....
</code></pre>
 ]]></content:encoded>
			<category domain="http://www.daniweb.com/software-development/java/9">Java</category>
			<dc:creator>game06</dc:creator>
			<guid isPermaLink="true">http://www.daniweb.com/software-development/java/threads/454881/how-to-include-java-file-in-jsp-file</guid>
		</item>
				<item>
			<title>Auto-Populate Based on Text Box</title>
			<link>http://www.daniweb.com/software-development/vbnet/threads/454880/auto-populate-based-on-text-box</link>
			<pubDate>Sat, 18 May 2013 18:23:54 +0000</pubDate>
			<description>I have Visual Studio Express for Desktop 2012. I am trying to make an accouunt search feature. Similair to this: http://tinypic.com/r/4r2cer/5 Anyways, the Account Holder Name and Balance fields are read-only. How do I type in the Account Number and auto-populate those two fields based on the acct. number. If ...</description>
			<content:encoded><![CDATA[ <p>I have Visual Studio Express for Desktop 2012.</p>

<p>I am trying to make an accouunt search feature. Similair to this: <a href="http://tinypic.com/r/4r2cer/5" rel="nofollow">http://tinypic.com/r/4r2cer/5</a></p>

<p>Anyways, the Account Holder Name and Balance fields are read-only. How do I type in the Account Number and auto-populate those two fields based on the acct. number. If no existance, pop up message. Any info? Which db should i use? Tutorial link?</p>

<p>Thanks</p>
 ]]></content:encoded>
			<category domain="http://www.daniweb.com/software-development/vbnet/58">VB.NET</category>
			<dc:creator>ahudson</dc:creator>
			<guid isPermaLink="true">http://www.daniweb.com/software-development/vbnet/threads/454880/auto-populate-based-on-text-box</guid>
		</item>
				<item>
			<title>How to solve this case</title>
			<link>http://www.daniweb.com/web-development/databases/mysql/threads/454879/how-to-solve-this-case</link>
			<pubDate>Sat, 18 May 2013 17:25:09 +0000</pubDate>
			<description>There are two tables &quot;LESSON&quot; TABLE Attributes : - id_lesson -lesson_name - semester &quot;LECTURES&quot; TABLE Attributes : - id_lectures - id_lesson - id_lecturer - hour - day How to display all atributes in lectures table where lessons in 2nd semester ? Note : there's id_lesson in lectures table</description>
			<content:encoded><![CDATA[ <p>There are two tables<br />
"LESSON" TABLE<br />
Attributes :<br />
- id_lesson<br />
-lesson_name<br />
- semester</p>

<p>"LECTURES" TABLE<br />
Attributes :<br />
- id_lectures<br />
- id_lesson<br />
- id_lecturer<br />
- hour<br />
- day</p>

<p>How to display all atributes in lectures table where lessons in 2nd semester ?</p>

<p>Note : there's id_lesson in lectures table</p>
 ]]></content:encoded>
			<category domain="http://www.daniweb.com/web-development/databases/mysql/126">MySQL</category>
			<dc:creator>andika.kurniawan.121</dc:creator>
			<guid isPermaLink="true">http://www.daniweb.com/web-development/databases/mysql/threads/454879/how-to-solve-this-case</guid>
		</item>
				<item>
			<title>Color Picker - Hover selector</title>
			<link>http://www.daniweb.com/web-development/javascript-dhtml-ajax/threads/454878/color-picker-hover-selector</link>
			<pubDate>Sat, 18 May 2013 17:22:01 +0000</pubDate>
			<description>I need to make that when you use a color picker the hover styling would work too. So far I've only got background and border bottom working here is the code below (uses JQuery): var customElements2 =&quot;#search .submit_input, .reputation.positive, .members li.positive&quot;; var customElements = &quot;.maintitle, #community_app_menu &gt; li.active &gt; a, ...</description>
			<content:encoded><![CDATA[ <p>I need to make that when you use a color picker the hover styling would work too. So far I've only got background and border bottom working here is the code below (uses JQuery):</p>

<pre><code class="language-js">    var customElements2 ="#search .submit_input, .reputation.positive, .members li.positive";
    var customElements = ".maintitle, #community_app_menu &gt; li.active &gt; a, .ipsSideBlock h3, #sc-topbar";
    var customText = "#user_navigation a, #main_search, #search_options, #community_app_menu div  li:hover &gt; a, #community_app_menu  li:hover &gt; a, #community_app_menu li.click.click_active &gt; a, #more_apps_menucontentul  li &gt; a:hover, #community_app_menu &gt; li.active &gt; a";

    jQuery('#colorpicker').ColorPicker({
        onSubmit: function(hsb, hex, rgb, el) {
            jQuery(el).val(hex);
            jQuery(el).ColorPickerHide();
            jQuery(el).css("borderBottomColor", "#" + hex);
            jQuery(el).css("backgroundColor", "#" + hex);
            jQuery(customElements).css("border-bottom-color", "#" + hex);
            jQuery(customElements2).css("background-color", "#" + hex);
            jQuery(customText).css("color", "#" + hex);
            jQuery.cookie('customcolor',hex,{ expires: 365, path: '/'});
        },
        onBeforeShow: function () {
            jQuery(this).ColorPickerSetColor(this.value);
        },
        onChange: function (hsb, hex, rgb) {
            jQuery(customElements).css("border-bottom-color", "#" + hex);
            jQuery(customElements2).css("background-color", "#" + hex);
            jQuery(customText).css("color", "#" + hex);
            jQuery.cookie('customcolor',hex,{ expires: 365, path: '/'});
        }
    })
    .bind('keyup', function(){
        jQuery(this).ColorPickerSetColor(this.value);
    });

    if ( (jQuery.cookie('customcolor') != null))    {
        jQuery(customElements).css("border-bottom-color", "#" + jQuery.cookie('customcolor'));
        jQuery(customElements2).css("background-color", "#" + jQuery.cookie('customcolor'));
        jQuery(customText).css("color", "#" + jQuery.cookie('customcolor'));
        jQuery("#colorpicker").val(jQuery.cookie('customcolor'));
    }
    else{
        jQuery(customElements).css("border-bottom-color","#C42323");
        jQuery(customText).css("color","#C42323");
    }

});
</code></pre>
 ]]></content:encoded>
			<category domain="http://www.daniweb.com/web-development/javascript-dhtml-ajax/117">JavaScript / DHTML / AJAX</category>
			<dc:creator>christian.mcquilkin.9</dc:creator>
			<guid isPermaLink="true">http://www.daniweb.com/web-development/javascript-dhtml-ajax/threads/454878/color-picker-hover-selector</guid>
		</item>
				<item>
			<title>win32com error with cx_freeze </title>
			<link>http://www.daniweb.com/software-development/python/threads/454877/win32com-error-with-cx_freeze-</link>
			<pubDate>Sat, 18 May 2013 17:17:11 +0000</pubDate>
			<description>Hi guys have a python software that i want to freeze for distribution. The problem is after freezing it with cx_freeze and i run it, it works fine on my development computer but when i sent it to my testing computer (window XP sp3 32bit) it give me this error ...</description>
			<content:encoded><![CDATA[ <p>Hi guys have a python software that i want to freeze for distribution. The problem is after freezing it with cx_freeze and i run it, it works fine on my development computer but when i sent it to my testing computer (window XP sp3 32bit) it give me this error</p>

<pre><code class="language-py">Traceback(mostresent call last):
    File "C:Python27\lib\site-packages\cx_Freeze\initscripts\Console.py", line27, in &lt;module?
    File "timeTracker.py", line 555, in &lt;module&gt;
    File "timeTracker.py", line 381, in __init__
    File "timeTracker.py", line 427, in runTimeThread
    File "timeTracker.py", line 494, in __init__
    File "timeTracker.py", line 118, in __init__
    File "C:Python27\lib\site-packages\pyttsx1.1-py2.7.egg\pyttsx\__init__.py", line 39, in init
    File "C:Python27\lib\site-packages\pyttsx1.1-py2.7.egg\pyttsx\engine.py", line 45, in __init__
    File "C:Python27\lib\site-packages\pyttsx1.1-py2.7.egg\pyttsx\driver.py", line 66, in __init__
    File "C:Python27\lib\site-packages\pyttsx1.1-py2.7.egg\pyttsx\drivers\sapi5.py", line 37, in buildDriver
    File "C:Python27\lib\site-packages\pyttsx1.1-py2.7.egg\pyttsx\drivers\sapi5.py", line 46, in __init__
    File "C:Python27\lib\site-packages\win32com\client\__init__.py", line 317, in WithEvents
    AttributeError: 'NoneType' object has no attribute 'CLSID'
</code></pre>

<p>the setup.py script for the building cx_freeze is</p>

<pre><code class="language-py">import sys

from cx_Freeze import setup, Executable

includes =['atexit']
packages = ['pyttsx','win32com.server','win32com.client']
base = None
if sys.platform == "win32":
    base = "Win32GUI"

setup(
        name = "timeTracker",
        version = "1.0.0",
        description = "Keep track of your time take control of your life",
        options = {"build_exe" : {"includes" : includes, "packages": packages }},
        executables = [Executable("timeTracker.py", base = base)])
</code></pre>

<p>Note i don't have much expereince i</p>
 ]]></content:encoded>
			<category domain="http://www.daniweb.com/software-development/python/114">Python</category>
			<dc:creator>otengkwaku</dc:creator>
			<guid isPermaLink="true">http://www.daniweb.com/software-development/python/threads/454877/win32com-error-with-cx_freeze-</guid>
		</item>
				<item>
			<title>IE automaticlly open on startup!</title>
			<link>http://www.daniweb.com/hardware-and-software/microsoft-windows/viruses-spyware-and-other-nasties/threads/454876/ie-automaticlly-open-on-startup</link>
			<pubDate>Sat, 18 May 2013 16:58:14 +0000</pubDate>
			<description>I seem to have a problem with my internet explorer. it is starting up automatically when I start my computerI have checked the MSCONFIG and regitry settings for startup but iexplore is not listed anywhere, not even in the startup folder. I also did a HijackThis scan and i am ...</description>
			<content:encoded><![CDATA[ <h2>I seem to have a problem with my internet explorer. it is starting up automatically when I start my computerI have checked the MSCONFIG and regitry settings for startup but iexplore is not listed anywhere, not even in the startup folder. I also did a HijackThis scan and i am posting it here.</h2>

<p>Logfile of Trend Micro HijackThis v2.0.4<br />
Scan saved at 12:54:56 AM, on 19/5/2013<br />
Platform: Windows 7 SP1 (WinNT 6.00.3505)<br />
MSIE: Internet Explorer v10.0 (10.00.9200.16576)<br />
Boot mode: Normal</p>

<p>Running processes:<br />
C:\Windows\SysWOW64\rundll32.exe<br />
C:\Program Files (x86)\WebcamMax\wcmmon.exe<br />
C:\Program Files (x86)\NTI\Acer Backup Manager\BackupManagerTray.exe<br />
C:\Program Files (x86)\Launch Manager\LManager.exe<br />
C:\Program Files (x86)\Acer\clear.fi\Movie\clear.fiMovieService.exe<br />
C:\Program Files (x86)\Winamp\winampa.exe<br />
C:\Program Files (x86)\Celcom Broadband\UIExec.exe<br />
C:\Program Files (x86)\Acer\clear.fi\MVP\clear.fiAgent.exe<br />
C:\Program Files (x86)\Launch Manager\LMworker.exe<br />
C:\Program Files (x86)\Acer\clear.fi\MVP.\Kernel\DMR\DMREngine.exe<br />
C:\Program Files (x86)\Mozilla Firefox\firefox.exe<br />
C:\Program Files (x86)\Internet Download Manager\IDMan.exe<br />
C:\Program Files (x86)\Internet Download Manager\IEMonitor.exe<br />
C:\Windows\system32.exe<br />
C:\Program Files (x86)\Internet Explorer\IELowutil.exe<br />
C:\Program Files (x86)\HijackThis\Trend Micro\HiJackThis\HiJackThis.exe</p>

<p>R1 - HKCU\Software\Microsoft\Internet Explorer\Main,Default_Page_URL = <a href="http://acer.msn.com" rel="nofollow">http://acer.msn.com</a><br />
R0 - HKCU\Software\Microsoft\Internet Explorer\Main,Start Page = <a href="http://acer.msn.com/" rel="nofollow">http://acer.msn.com/</a><br />
R1 - HKLM\Software\Microsoft\Internet Explorer\Main,Default_Page_URL = <a href="http://go.microsoft.com/fwlink/p/?LinkId=255141" rel="nofollow">http://go.microsoft.com/fwlink/p/?LinkId=255141</a><br />
R1 - HKLM\Software\Microsoft\Internet Explorer\Main,Default_Search_URL = <a href="http://go.microsoft.com/fwlink/?LinkId=54896" rel="nofollow">http://go.microsoft.com/fwlink/?LinkId=54896</a><br />
R1 - HKLM\Software\Microsoft\Internet Explorer\Main,Search Page = <a href="http://go.microsoft.com/fwlink/?LinkId=54896" rel="nofollow">http://go.microsoft.com/fwlink/?LinkId=54896</a><br />
R0 - HKLM\Software\Microsoft\Internet Explorer\Main,Start Page = <a href="http://go.microsoft.com/fwlink/p/?LinkId=255141" rel="nofollow">http://go.microsoft.com/fwlink/p/?LinkId=255141</a><br />
R0 - HKLM\Software\Microsoft\Internet Explorer\Search,SearchAssistant =<br />
R0 - HKLM\Software\Microsoft\Internet Explorer\Search,CustomizeSearch =<br />
R0 - HKLM\Software\Microsoft\Internet Explorer\Main,Local Page = C:\Windows\SysWOW64\blank.htm<br />
R0 - HKCU\Software\Microsoft\Internet Explorer\Toolbar,LinksFolderName =<br />
F2 - REG:system.ini: UserInit=userinit.exe<br />
O2 - BHO: IDM Helper - {0055C089-8582-441B-A0BF-17B458C2A3A8} - C:\Program Files (x86)\Internet Download Manager\IDMIECC.dll<br />
O2 - BHO: WsSVRIEHelper - {65DEE40A-3E93-4cae-9F98-B8E06DCEE2BF} - C:\Program Files (x86)\Wondershare\Video Converter Ultimate\SVRIEPlugin.dll<br />
O2 - BHO: IESpeakDoc - {8D10F6C4-0E01-4BD4-8601-11AC1FDF8126} - C:\Program Files (x86)\Bluetooth Suite\IEPlugIn.dll<br />
O2 - BHO: Windows Live ID Sign-in Helper - {9030D464-4C02-4ABF-8ECC-5164760863C6} - C:\Program Files (x86)\Common Files\Microsoft Shared\Windows Live\WindowsLiveLogin.dll<br />
O2 - BHO: SingleInstance Class - {FDAD4DA1-61A2-4FD8-9C17-86F7AC245081} - C:\Program Files (x86)\Yahoo!\Companion\Installs\cpn0\YTSingleInstance.dll<br />
O4 - HKLM..\Run: [BackupManagerTray] "C:\Program Files (x86)\NTI\Acer Backup Manager\BackupManagerTray.exe" -h -k<br />
O4 - HKLM..\Run: [SuiteTray] "C:\Program Files (x86)\EgisTec MyWinLockerSuite\x86\SuiteTray.exe"<br />
O4 - HKLM..\Run: [Dolby Advanced Audio v2] "C:\Dolby PCEE4\pcee4.exe" -autostart<br />
O4 - HKLM..\Run: [LManager] C:\Program Files (x86)\Launch Manager\LManager.exe<br />
O4 - HKLM..\Run: [ArcadeMovieService] "C:\Program Files (x86)\Acer\clear.fi\Movie\clear.fiMovieService.exe"<br />
O4 - HKLM..\Run: [WinampAgent] "C:\Program Files (x86)\Winamp\winampa.exe"<br />
O4 - HKLM..\Run: [BrowserPlugInHelper] C:\Program Files (x86)\Wondershare\Video Converter Ultimate\BrowserPlugInHelper.exe<br />
O4 - HKLM..\Run: [SwitchBoard] C:\Program Files (x86)\Common Files\Adobe\SwitchBoard\SwitchBoard.exe<br />
O4 - HKLM..\Run: [AdobeCS6ServiceManager] "C:\Program Files (x86)\Common Files\Adobe\CS6ServiceManager\CS6ServiceManager.exe" -launchedbylogin<br />
O4 - HKLM..\Run: [UIExec] "C:\Program Files (x86)\Celcom Broadband\UIExec.exe"<br />
O4 - HKLM..\Run: [Windows Data Serivce] system32.exe<br />
O4 - HKCU..\Run: [Messenger (Yahoo!)] "C:\PROGRA~2\Yahoo!\MESSEN~1\YahooMessenger.exe" -quiet<br />
O4 - HKCU..\Run: [Facebook Update] "C:\Users\User\AppData\Local\Facebook\Update\FacebookUpdate.exe" /c /nocrashserver<br />
O4 - HKCU..\Run: [LightShot] C:\Users\User\AppData\Local\Skillbrains\lightshot\LightShot.exe Flags: uninsdeletevalue<br />
O4 - HKCU..\Run: [Sidebar] C:\Program Files\Windows Sidebar\sidebar.exe /autoRun<br />
O4 - HKCU..\Run: [GarenaPlus] "C:\Program Files (x86)\Garena Plus\GarenaMessenger.exe" -autolaunch<br />
O4 - HKCU..\Run: [WebcamMaxAutoRun] "C:\Program Files (x86)\WebcamMax\wcmmon.exe" -a<br />
O4 - HKCU..\Run: [Rfeiez] C:\Users\User\AppData\Roaming\Rfeiez.exe<br />
O4 - HKUS\S-1-5-19..\Run: [Sidebar] %ProgramFiles%\Windows Sidebar\Sidebar.exe /autoRun (User 'LOCAL SERVICE')<br />
O4 - HKUS\S-1-5-19..\RunOnce: [mctadmin] C:\Windows\System32\mctadmin.exe (User 'LOCAL SERVICE')<br />
O4 - HKUS\S-1-5-20..\Run: [Sidebar] %ProgramFiles%\Windows Sidebar\Sidebar.exe /autoRun (User 'NETWORK SERVICE')<br />
O4 - HKUS\S-1-5-20..\RunOnce: [mctadmin] C:\Windows\System32\mctadmin.exe (User 'NETWORK SERVICE')<br />
O4 - HKUS\S-1-5-18..\RunOnce: [IsMyWinLockerReboot] msiexec.exe /qn /x{voidguid} (User 'SYSTEM')<br />
O4 - HKUS.DEFAULT..\RunOnce: [IsMyWinLockerReboot] msiexec.exe /qn /x{voidguid} (User 'Default user')<br />
O8 - Extra context menu item: Download all links with IDM - C:\Program Files (x86)\Internet Download Manager\IEGetAll.htm<br />
O8 - Extra context menu item: Download with IDM - C:\Program Files (x86)\Internet Download Manager\IEExt.htm<br />
O9 - Extra button: @C:\Program Files (x86)\Windows Live\Writer\WindowsLiveWriterShortcuts.dll,-1004 - {219C3416-8CB2-491a-A3C7-D9FCDDC9D600} - C:\Program Files (x86)\Windows Live\Writer\WriterBrowserExtension.dll<br />
O9 - Extra 'Tools' menuitem: @C:\Program Files (x86)\Windows Live\Writer\WindowsLiveWriterShortcuts.dll,-1003 - {219C3416-8CB2-491a-A3C7-D9FCDDC9D600} - C:\Program Files (x86)\Windows Live\Writer\WriterBrowserExtension.dll<br />
O9 - Extra button: (no name) - {7815BE26-237D-41A8-A98F-F7BD75F71086} - C:\Program Files (x86)\Bluetooth Suite\IEPlugIn.dll<br />
O9 - Extra 'Tools' menuitem: Send by Bluetooth to - {7815BE26-237D-41A8-A98F-F7BD75F71086} - C:\Program Files (x86)\Bluetooth Suite\IEPlugIn.dll<br />
O9 - Extra button: (no name) - {9819CC0E-9669-4D01-9CD7-2C66DA43AC6C} - (no file)<br />
O10 - Unknown file in Winsock LSP: c:\program files (x86)\common files\microsoft shared\windows live\wlidnsp.dll<br />
O10 - Unknown file in Winsock LSP: c:\program files (x86)\common files\microsoft shared\windows live\wlidnsp.dll<br />
O11 - Options group: [ACCELERATED_GRAPHICS] Accelerated graphics<br />
O18 - Protocol: skype4com - {FFC8B962-9B40-4DFF-9458-1830C7DD7F5D} - C:\PROGRA~2\COMMON~1\Skype\SKYPE4~1.DLL<br />
O18 - Protocol: wlpg - {E43EF6CD-A37A-4A9B-9E6F-83F89B8E6324} - C:\Program Files (x86)\Windows Live\Photo Gallery\AlbumDownloadProtocolHandler.dll<br />
O23 - Service: Adobe Acrobat Update Service (AdobeARMservice) - Adobe Systems Incorporated - C:\Program Files (x86)\Common Files\Adobe\ARM\1.0\armsvc.exe<br />
O23 - Service: Adobe Flash Player Update Service (AdobeFlashPlayerUpdateSvc) - Adobe Systems Incorporated - C:\Windows\SysWOW64\Macromed\Flash\FlashPlayerUpdateService.exe<br />
O23 - Service: Arp Intelligent Protection Service (AIPS) - Arcai.com - C:\Program Files (x86)\netcut\services\AIPS.exe<br />
O23 - Service: @%SystemRoot%\system32\Alg.exe,-112 (ALG) - Unknown owner - C:\Windows\System32\alg.exe (file missing)<br />
O23 - Service: AtherosSvc - Atheros Commnucations - C:\Program Files (x86)\Bluetooth Suite\adminservice.exe<br />
O23 - Service: Dritek WMI Service (DsiWMIService) - Dritek System Inc. - C:\Program Files (x86)\Launch Manager\dsiwmis.exe<br />
O23 - Service: @%SystemRoot%\system32\efssvc.dll,-100 (EFS) - Unknown owner - C:\Windows\System32\lsass.exe (file missing)<br />
O23 - Service: EgisTec Ticket Service - Egis Technology Inc.  - C:\Program Files (x86)\Common Files\EgisTec\Services\EgisTicketService.exe<br />
O23 - Service: Acer ePower Service (ePowerSvc) - Acer Incorporated - C:\Program Files\Acer\Acer ePower Management\ePowerSvc.exe<br />
O23 - Service: @%systemroot%\system32\fxsresm.dll,-118 (Fax) - Unknown owner - C:\Windows\system32\fxssvc.exe (file missing)<br />
O23 - Service: FLEXnet Licensing Service - Acresso Software Inc. - C:\Program Files (x86)\Common Files\Macrovision Shared\FLEXnet Publisher\FNPLicensingService.exe<br />
O23 - Service: FLEXnet Licensing Service 64 - Acresso Software Inc. - C:\Program Files\Common Files\Macrovision Shared\FLEXnet Publisher\FNPLicensingService64.exe<br />
O23 - Service: GamesAppService - WildTangent, Inc. - C:\Program Files (x86)\WildTangent Games\App\GamesAppService.exe<br />
O23 - Service: GREGService - Acer Incorporated - C:\Program Files (x86)\Acer\Registration\GREGsvc.exe<br />
O23 - Service: Google Update Service (gupdate) (gupdate) - Google Inc. - C:\Program Files (x86)\Google\Update\GoogleUpdate.exe<br />
O23 - Service: Google Update Service (gupdatem) (gupdatem) - Google Inc. - C:\Program Files (x86)\Google\Update\GoogleUpdate.exe<br />
O23 - Service: @keyiso.dll,-100 (KeyIso) - Unknown owner - C:\Windows\system32\lsass.exe (file missing)<br />
O23 - Service: Live Updater Service - Acer Incorporated - C:\Program Files\Acer\Acer Updater\UpdaterService.exe<br />
O23 - Service: Intel(R) Management and Security Application Local Management Service (LMS) - Intel Corporation - C:\Program Files (x86)\Intel\Intel(R) Management Engine Components\LMS\LMS.exe<br />
O23 - Service: Mozilla Maintenance Service (MozillaMaintenance) - Mozilla Foundation - C:\Program Files (x86)\Mozilla Maintenance Service\maintenanceservice.exe<br />
O23 - Service: @comres.dll,-2797 (MSDTC) - Unknown owner - C:\Windows\System32\msdtc.exe (file missing)<br />
O23 - Service: @C:\Program Files (x86)\Nero\Update\NASvc.exe,-200 (NAUpdate) - Nero AG - C:\Program Files (x86)\Nero\Update\NASvc.exe<br />
O23 - Service: NitroPDFReaderDriverCreatorReadSpool2 (NitroReaderDriverReadSpool2) - Nitro PDF Software - C:\Program Files\Common Files\Nitro PDF\Reader\2.0\NitroPDFReaderDriverService2x64.exe<br />
O23 - Service: nProtect GameGuard Service (npggsvc) - Unknown owner - C:\Windows\system32\GameMon.des.exe (file missing)<br />
O23 - Service: NTI IScheduleSvc - NTI Corporation - C:\Program Files (x86)\NTI\Acer Backup Manager\IScheduleSvc.exe<br />
O23 - Service: Overwolf Updater Service (OverwolfUpdaterService) - Overwolf Ltd - C:\Program Files (x86)\Overwolf\OverwolfUpdater.exe<br />
O23 - Service: @%systemroot%\system32\psbase.dll,-300 (ProtectedStorage) - Unknown owner - C:\Windows\system32\lsass.exe (file missing)<br />
O23 - Service: @%systemroot%\system32\Locator.exe,-2 (RpcLocator) - Unknown owner - C:\Windows\system32\locator.exe (file missing)<br />
O23 - Service: @%SystemRoot%\system32\samsrv.dll,-1 (SamSs) - Unknown owner - C:\Windows\system32\lsass.exe (file missing)<br />
O23 - Service: ScsiAccess - Unknown owner - C:\Program Files (x86)\Photodex\ProShow Producer\ScsiAccess.exe<br />
O23 - Service: Skype Updater (SkypeUpdate) - Skype Technologies - C:\Program Files (x86)\Skype\Updater\Updater.exe<br />
O23 - Service: @%systemroot%\system32\spoolsv.exe,-1 (Spooler) - Unknown owner - C:\Windows\System32\spoolsv.exe (file missing)<br />
O23 - Service: @%SystemRoot%\system32\sppsvc.exe,-101 (sppsvc) - Unknown owner - C:\Windows\system32\sppsvc.exe (file missing)<br />
O23 - Service: SwitchBoard - Adobe Systems Incorporated - C:\Program Files (x86)\Common Files\Adobe\SwitchBoard\SwitchBoard.exe<br />
O23 - Service: TuneUp Utilities Service (TuneUp.UtilitiesSvc) - TuneUp Software - C:\Program Files (x86)\TuneUp Utilities 2013\TuneUpUtilitiesService64.exe<br />
O23 - Service: UI Assistant Service - Unknown owner - C:\Program Files (x86)\Celcom Broadband\AssistantServices.exe<br />
O23 - Service: @%SystemRoot%\system32\ui0detect.exe,-101 (UI0Detect) - Unknown owner - C:\Windows\system32\UI0Detect.exe (file missing)<br />
O23 - Service: Intel(R) Management and Security Application User Notification Service (UNS) - Intel Corporation - C:\Program Files (x86)\Intel\Intel(R) Management Engine Components\UNS\UNS.exe<br />
O23 - Service: @%SystemRoot%\system32\vaultsvc.dll,-1003 (VaultSvc) - Unknown owner - C:\Windows\system32\lsass.exe (file missing)<br />
O23 - Service: @%SystemRoot%\system32\vds.exe,-100 (vds) - Unknown owner - C:\Windows\System32\vds.exe (file missing)<br />
O23 - Service: @%systemroot%\system32\vssvc.exe,-102 (VSS) - Unknown owner - C:\Windows\system32\vssvc.exe (file missing)<br />
O23 - Service: @%SystemRoot%\system32\Wat\WatUX.exe,-601 (WatAdminSvc) - Unknown owner - C:\Windows\system32\Wat\WatAdminSvc.exe (file missing)<br />
O23 - Service: @%systemroot%\system32\wbengine.exe,-104 (wbengine) - Unknown owner - C:\Windows\system32\wbengine.exe (file missing)<br />
O23 - Service: @%Systemroot%\system32\wbem\wmiapsrv.exe,-110 (wmiApSrv) - Unknown owner - C:\Windows\system32\wbem\WmiApSrv.exe (file missing)<br />
O23 - Service: Yahoo! Updater (YahooAUService) - Yahoo! Inc. - C:\Program Files (x86)\Yahoo!\SoftwareUpdate\YahooAUService.exe</p>

<p>--<br />
End of file - 12844 bytes</p>
 ]]></content:encoded>
			<category domain="http://www.daniweb.com/hardware-and-software/microsoft-windows/viruses-spyware-and-other-nasties/64">Viruses, Spyware and other Nasties</category>
			<dc:creator>hakka.tokumeino</dc:creator>
			<guid isPermaLink="true">http://www.daniweb.com/hardware-and-software/microsoft-windows/viruses-spyware-and-other-nasties/threads/454876/ie-automaticlly-open-on-startup</guid>
		</item>
				<item>
			<title>Problem installing XNA </title>
			<link>http://www.daniweb.com/software-development/game-development/threads/454875/problem-installing-xna-</link>
			<pubDate>Sat, 18 May 2013 14:44:43 +0000</pubDate>
			<description>**Am having vB.Net on my system, am about installing XNA application but it still ask me that some requirement are missing i.e visual studio 2008, l don't know what to do about that.**</description>
			<content:encoded><![CDATA[ <p><strong>Am having vB.Net on my system, am about installing XNA application but it still ask me that some requirement are missing i.e visual studio 2008, l don't know what to do about that.</strong></p>
 ]]></content:encoded>
			<category domain="http://www.daniweb.com/software-development/game-development/71">Game Development</category>
			<dc:creator>odunfa.toptiner</dc:creator>
			<guid isPermaLink="true">http://www.daniweb.com/software-development/game-development/threads/454875/problem-installing-xna-</guid>
		</item>
				<item>
			<title>Saved File Format</title>
			<link>http://www.daniweb.com/software-development/java/threads/454874/saved-file-format</link>
			<pubDate>Sat, 18 May 2013 14:43:51 +0000</pubDate>
			<description>Hi...! I'm working on a notepad project,in save or saveas option just like the real notepad i want that the file automaticly save as .txt file if in the option below i choose &quot;all files&quot; it saves a file and if i choose &quot;text documnet&quot; save as *.txt file how ...</description>
			<content:encoded><![CDATA[ <p>Hi...! I'm working on a notepad project,in save or saveas option just like the real notepad i want that the file automaticly save as .txt file<br />
if in the option below i choose "all files" it saves a file and if i choose "text documnet" save as *.txt file how can i do that?</p>
 ]]></content:encoded>
			<category domain="http://www.daniweb.com/software-development/java/9">Java</category>
			<dc:creator>peymankop</dc:creator>
			<guid isPermaLink="true">http://www.daniweb.com/software-development/java/threads/454874/saved-file-format</guid>
		</item>
				<item>
			<title>Datagridview combobox column add items</title>
			<link>http://www.daniweb.com/software-development/vbnet/threads/454873/datagridview-combobox-column-add-items</link>
			<pubDate>Sat, 18 May 2013 14:01:06 +0000</pubDate>
			<description>I have a combobox with 5 coloums of which coloumn 1 is DataGridViewComboBoxColumn I want to populate / add items to DataGridViewComboBoxColumn with data from access database using datatable. i am not getting how to add items to DataGridViewComboBoxColumn. How can i do it. Thanks</description>
			<content:encoded><![CDATA[ <p>I have a combobox with 5 coloums of which coloumn 1 is DataGridViewComboBoxColumn</p>

<p>I want to populate / add items to DataGridViewComboBoxColumn with data from access database using datatable.</p>

<p>i am not getting how to add items to DataGridViewComboBoxColumn. How can i do it.</p>

<p>Thanks</p>
 ]]></content:encoded>
			<category domain="http://www.daniweb.com/software-development/vbnet/58">VB.NET</category>
			<dc:creator>PM312</dc:creator>
			<guid isPermaLink="true">http://www.daniweb.com/software-development/vbnet/threads/454873/datagridview-combobox-column-add-items</guid>
		</item>
				<item>
			<title>Windows 8 - Internet Stops working after a while</title>
			<link>http://www.daniweb.com/hardware-and-software/microsoft-windows/windows-vista-and-windows-7-8/threads/454872/windows-8-internet-stops-working-after-a-while</link>
			<pubDate>Sat, 18 May 2013 13:47:56 +0000</pubDate>
			<description>I have a computer that came preloaded with windows 8, and I have noticed that when I leave it on without using it for a while (maybe 15 mins, haven't actually timed it) it will say that I am connected to the internet with internet access, but when I try ...</description>
			<content:encoded><![CDATA[ <p>I have a computer that came preloaded with windows 8, and I have noticed that when I leave it on without using it for a while (maybe 15 mins, haven't actually timed it) it will say that I am connected to the internet with internet access, but when I try to use it it displays that I have no internet connection in the browser. If I run the windows diagnosis from the network &amp; sharing center it says that there is no problem with the internet. Then I click search for online solutions and it says I need to connect to the internet (while already being connected with internet access).</p>

<p>I searched online, and came across a site which said there was a power saving feature in windows 8 that would turn off the wireless if the computer was not being used, and it said to go to the battery options, select the mode you are running and hit advanced settings, and then set wireless adapter settings power saving mode to max performance. I did this, but my computer is still losing connection to the internet. So far the only working solution I have found is to restart the computer. How can I fix this problem?</p>

<p>Thanks for the help.</p>

<p>ps.</p>

<p>I have tried:<br />
disconnect from internet and reconnect to internet<br />
locking the screen<br />
changing power plans (both had wireless adapter setting set to max performance)<br />
putting the computer to sleep and restarting it<br />
doing something else for 5 mins then trying the internet</p>
 ]]></content:encoded>
			<category domain="http://www.daniweb.com/hardware-and-software/microsoft-windows/windows-vista-and-windows-7-8/38">Windows Vista and Windows 7 / 8</category>
			<dc:creator>sirlink99</dc:creator>
			<guid isPermaLink="true">http://www.daniweb.com/hardware-and-software/microsoft-windows/windows-vista-and-windows-7-8/threads/454872/windows-8-internet-stops-working-after-a-while</guid>
		</item>
				<item>
			<title>Build a new pc</title>
			<link>http://www.daniweb.com/hardware-and-software/threads/454871/build-a-new-pc</link>
			<pubDate>Sat, 18 May 2013 13:16:19 +0000</pubDate>
			<description>I am planning to build a budget gaming pc this June. **Not worth more than $600.** Here's the configuration: http://www.flipkart.com/wishlist/navking.venkat7-7098 [$215] CPU: Intel i5 3470 3.2 GHz [$78] GPU: ZOTAC NVidia GEforce GT630 Synergy edition (2GB) [$86] HDD: Seagate Barracuda 1TB [$89] Mobo: Gigabyte GA-B75M-D3H [$92] RAM: Corsair Vengeance 4GB ...</description>
			<content:encoded><![CDATA[ <p>I am planning to build a budget gaming pc this June. <strong>Not worth more than $600.</strong><br />
Here's the configuration: <a href="http://www.flipkart.com/wishlist/navking.venkat7-7098" rel="nofollow">http://www.flipkart.com/wishlist/navking.venkat7-7098</a></p>

<p>[$215] CPU: Intel i5 3470 3.2 GHz<br />
[$78] GPU: ZOTAC NVidia GEforce GT630 Synergy edition (2GB)<br />
[$86] HDD: Seagate Barracuda 1TB<br />
[$89] Mobo: Gigabyte GA-B75M-D3H<br />
[$92] RAM: Corsair Vengeance 4GB x 2 (8GB total)<br />
[$20] ODD: Samsung SH-224BB DVD Burner Internal Optical Drive<br />
[$63] PSU: Corsair VS550 550 watt<br />
[$39]Cab: Cooler Master Elite 310 (blue)</p>

<p><strong>Q1. Will each component be compatible with the others?</strong></p>

<p><strong>Q2. I saw that i5 has technologies like vPro technology but the motherboard does not have. Will that be a liability for me or will those technologies work?</strong></p>

<p><strong>Q3. Would there be any bottleneck issues in this configuration?</strong></p>

<p><strong>Q4. The above configuration is coming out to be $680!!! I want to reduce the cost to like $600 as I need to buy a monitor too which itself will be around $100. Where should I cut the cost?</strong></p>

<p><strong>Q5. Will this configuration be future proof, for like, 5 years - until I graduate from college?</strong></p>

<p><strong>Q6. Is AMD better than Intel for gaming? Is ATI Radeon better than Nvidia for gaming?</strong></p>

<p><em>Thanks to everyone in advance!</em></p>
 ]]></content:encoded>
			<category domain="http://www.daniweb.com/hardware-and-software/1">Hardware and Software</category>
			<dc:creator>nmakes</dc:creator>
			<guid isPermaLink="true">http://www.daniweb.com/hardware-and-software/threads/454871/build-a-new-pc</guid>
		</item>
				<item>
			<title>input data from text file</title>
			<link>http://www.daniweb.com/software-development/cpp/threads/454870/input-data-from-text-file</link>
			<pubDate>Sat, 18 May 2013 13:11:17 +0000</pubDate>
			<description> 3 years ago, one brother solved this problem, i need this program to make some calculation. actually, i have some fractional/decimal component t (like 2.0213, 3.047) this program can only take integer. Can anybody please help me !!! #include&lt;iostream&gt; #include&lt;fstream&gt; #include&lt;string&gt; #include&lt;cstdlib&gt; #include&lt;cmath&gt; #include&lt;iomanip&gt; #include &lt;windows.h&gt; using namespace std; //void ...</description>
			<content:encoded><![CDATA[ <p>3 years ago, one brother solved this problem, i need this program to make some calculation. actually, i have some fractional/decimal component t (like 2.0213, 3.047) this program can only take integer. Can anybody please help me !!!</p>

<p>#include&lt;iostream&gt;<br />
   #include&lt;fstream&gt;<br />
   #include&lt;string&gt;<br />
   #include&lt;cstdlib&gt;<br />
   #include&lt;cmath&gt;<br />
   #include&lt;iomanip&gt;<br />
   #include &lt;windows.h&gt;</p>

<pre><code class="language-cpp">using namespace std;
//void calculateAverage();
//int calculateGrade();
//void updateFrequency();
int main()
       {

        const int size=25;
        int debug=size;
        int test1[size], test2[size];
        ifstream infile;


            for(int i=0;i&lt;size;i++)
                {
                    test1[i]=0;
                    test2[i]=0;
                }


                cout&lt;&lt;"Reading from file ''input.txt''..."&lt;&lt;endl;
                infile.open("input.txt");
                while(size==debug)
                {
            for(int i=0;i&lt;size;i++)
                {
                    infile&gt;&gt;test1[i];
                    infile&gt;&gt;test2[i];
                }
                debug--;
                }
             for(int i=0;i&lt;size;i++)
                {
                cout&lt;&lt;test1[i]&lt;&lt;" "&lt;&lt;test2[i]&lt;&lt;" "&lt;&lt;endl;
                }
        infile.close();


        system("pause");
        return 0;
        }
</code></pre>
 ]]></content:encoded>
			<category domain="http://www.daniweb.com/software-development/cpp/8">C++</category>
			<dc:creator>siddiquedu</dc:creator>
			<guid isPermaLink="true">http://www.daniweb.com/software-development/cpp/threads/454870/input-data-from-text-file</guid>
		</item>
				<item>
			<title>Not display the alert if email does not exist in table</title>
			<link>http://www.daniweb.com/web-development/php/threads/454869/not-display-the-alert-if-email-does-not-exist-in-table</link>
			<pubDate>Sat, 18 May 2013 12:50:14 +0000</pubDate>
			<description>Can someone have a look at some code for me? Here the problem. This is meant to delet an email address form a mysql table then alert the user this has been done. If the address does not exist then it alerts the user to that too. But even if ...</description>
			<content:encoded><![CDATA[ <p>Can someone have a look at some code for me?</p>

<p>Here the problem. This is meant to delet an email address form a mysql table then alert the user this has been done. If the address does not exist then it alerts the user to that too.</p>

<p>But even if the address ddoes not exist it alerts the user that the address has been deleted!</p>

<p>Heres the code</p>

<pre><code>if (filter_var($email, FILTER_VALIDATE_EMAIL)) {
   if($r = mysql_query("DELETE FROM maillist WHERE email = '$mail'")){
      echo '&lt;script type="text/javascript"&gt; alert("Email Address Has Been Deleted") &lt;/script&gt;';
   }
   else {
      echo '&lt;script type="text/javascript"&gt; alert("Email Does Not Exist In Database") &lt;/script&gt;';
   }
   }
   else {
      echo '&lt;script type="text/javascript"&gt; alert("This Is Not A Valid Email Address!") &lt;/script&gt;';
   }
   }
</code></pre>

<p>Thanks for looking...............</p>
 ]]></content:encoded>
			<category domain="http://www.daniweb.com/web-development/php/17">PHP</category>
			<dc:creator>GlenRogers</dc:creator>
			<guid isPermaLink="true">http://www.daniweb.com/web-development/php/threads/454869/not-display-the-alert-if-email-does-not-exist-in-table</guid>
		</item>
				<item>
			<title>Find a String in Several Files at a ago</title>
			<link>http://www.daniweb.com/software-development/perl/code/454868/find-a-string-in-several-files-at-a-ago</link>
			<pubDate>Sat, 18 May 2013 12:41:45 +0000</pubDate>
			<description>I really got bored and tired of trying to find or remember some codes usage in so many files saved on my system, when it was needed. So, I called 'Monsieur' perl for help, hacking together some codes which works great for me and solve my problem of boredom. You ...</description>
			<content:encoded><![CDATA[ <p>I really got bored and tired of trying to find or remember some codes usage in so many files saved on my system, when it was needed.</p>

<p>So, I called 'Monsieur' perl for help, hacking together some codes which works great for me and solve my problem of boredom.</p>

<p>You run the code from the CLI, like so: perl &lt;perl_script.pl&gt; &lt;-l | -location&gt; &lt;-s | -search &gt;<br />
 E.g. perl search_doc.pl -l Desktop/Doc_file -s Win32::OLE</p>

<ol><li>Your perl file : search_doc.pl</li>
<li>Your location  : -l Desktop/Doc_file or -location Desktop/Doc_file</li>
<li>Your search string: -s Win32::OLE or -search Win32::OLE</li>
</ol>

<p>You can decide to use <code>--l</code> or <code>--search</code> as you want.</p>

<p>Please feel free to add comments, to ask question and use as you want.</p>
 ]]></content:encoded>
			<category domain="http://www.daniweb.com/software-development/perl/112">Perl</category>
			<dc:creator>2teez</dc:creator>
			<guid isPermaLink="true">http://www.daniweb.com/software-development/perl/code/454868/find-a-string-in-several-files-at-a-ago</guid>
		</item>
				<item>
			<title>Php overwrite file with variable</title>
			<link>http://www.daniweb.com/web-development/php/threads/454867/php-overwrite-file-with-variable</link>
			<pubDate>Sat, 18 May 2013 12:36:24 +0000</pubDate>
			<description>Hey all, i'm working on some code and i've got a little problem. $my_file = 'file.php'; $newline = &quot;&lt;?php $root = '&quot;$mylocation&quot;/'; ?&gt;&quot;; file_put_contents($my_file, $newline); As you can see i want to post a line into a file.. The problem is, this file will output: &lt;?php = 'your location'; ?&gt; ...</description>
			<content:encoded><![CDATA[ <p>Hey all,</p>

<p>i'm working on some code and i've got a little problem.</p>

<pre><code>$my_file = 'file.php';
$newline = "&lt;?php $root = '"$mylocation"/'; ?&gt;";
file_put_contents($my_file, $newline);
</code></pre>

<p>As you can see i want to post a line into a file.. The problem is, this file will output:</p>

<p>&lt;?php = 'your location'; ?&gt;</p>

<p>the $root is gone..<br />
Please help me.<br />
Thanks</p>
 ]]></content:encoded>
			<category domain="http://www.daniweb.com/web-development/php/17">PHP</category>
			<dc:creator>martjojo1</dc:creator>
			<guid isPermaLink="true">http://www.daniweb.com/web-development/php/threads/454867/php-overwrite-file-with-variable</guid>
		</item>
				<item>
			<title>Converting mysql class to sqlite class</title>
			<link>http://www.daniweb.com/web-development/php/threads/454865/converting-mysql-class-to-sqlite-class</link>
			<pubDate>Sat, 18 May 2013 11:36:02 +0000</pubDate>
			<description>I need to convert mysql class of one script to make a support for sqlite,but problem is sqlite dont have username/password thing nor database select as well,which means how some parts need to be removed.If i would convert to mssql one search and replace probaly would do the job.There is ...</description>
			<content:encoded><![CDATA[ <p>I need to convert mysql class of one script to make a support for sqlite,but problem is sqlite dont have username/password thing nor database select as well,which  means how some parts need to be removed.If i would convert to mssql one search and replace probaly would do the job.There is another file which contain queries but i belive that does'nt need to be touched.</p>

<p>So here is the code,what lines i need to remove and which just replace?</p>

<pre><code>&lt;?php
class _database {
    private $link       = false;
    private $result     = false;
    private $row        = false;

    public $settings    = array(
            "servername"=&gt; "localhost",
            "serverport"=&gt; "3306",
            "username"  =&gt; false,
            "password"  =&gt; false,
            "database"  =&gt; false,
            "persist"   =&gt; false,
            "dieonerror"=&gt; false,
            "showerror" =&gt; false,
            "error_file"=&gt; true
        );

    function __construct() {
        global $db_config;
        $this-&gt;settings = array_merge($this-&gt;settings, $db_config);
        if($this-&gt;settings["error_file"] === true) $this-&gt;settings["error_file"] = dirname(__FILE__)."/__mysql_errors.log";
    }

    function connect() {
        if (!$this-&gt;link) {
            $this-&gt;link = ($this-&gt;settings["persist"]) ? 
                mysql_pconnect(
                    $this-&gt;settings["servername"].":".$this-&gt;settings["serverport"], 
                    $this-&gt;settings["username"], 
                    $this-&gt;settings["password"]
                ) : 
                mysql_connect(
                    $this-&gt;settings["servername"].":".$this-&gt;settings["serverport"], 
                    $this-&gt;settings["username"], 
                    $this-&gt;settings["password"]
                ) or $this-&gt;error();
        }
        if (!mysql_select_db($this-&gt;settings["database"], $this-&gt;link)) $this-&gt;error();
        if($this-&gt;link) mysql_query("SET NAMES 'utf8'");
        return ($this-&gt;link) ? true : false;
    }

    function query($sql) {
        if (!$this-&gt;link &amp;&amp; !$this-&gt;connect()) $this-&gt;error();
        if (!($this-&gt;result = mysql_query($sql, $this-&gt;link))) $this-&gt;error($sql);
        return ($this-&gt;result) ? true : false;
    }

    function nextr() {
        if(!$this-&gt;result) {
            $this-&gt;error("No query pending");
            return false;
        }
        unset($this-&gt;row);
        $this-&gt;row = mysql_fetch_array($this-&gt;result, MYSQL_BOTH);
        return ($this-&gt;row) ? true : false ;
    }

    function get_row($mode = "both") {
        if(!$this-&gt;row) return false;

        $return = array();
        switch($mode) {
            case "assoc":
                foreach($this-&gt;row as $k =&gt; $v) {
                    if(!is_int($k)) $return[$k] = $v;
                }
                break;
            case "num":
                foreach($this-&gt;row as $k =&gt; $v) {
                    if(is_int($k)) $return[$k] = $v;
                }
                break;
            default:
                $return = $this-&gt;row;
                break;
        }
        return array_map("stripslashes",$return);
    }

    function get_all($mode = "both", $key = false) {
        if(!$this-&gt;result) {
            $this-&gt;error("No query pending");
            return false;
        }
        $return = array();
        while($this-&gt;nextr()) {
            if($key !== false) $return[$this-&gt;f($key)] = $this-&gt;get_row($mode);
            else $return[] = $this-&gt;get_row($mode);
        }
        return $return;
    }

    function f($index) {
        return stripslashes($this-&gt;row[$index]);
    }

    function go_to($row) {
        if(!$this-&gt;result) {
            $this-&gt;error("No query pending");
            return false;
        }
        if(!mysql_data_seek($this-&gt;result, $row)) $this-&gt;error();
    }

    function nf() {
        if ($numb = mysql_num_rows($this-&gt;result) === false) $this-&gt;error();
        return mysql_num_rows($this-&gt;result);
    }
    function af() {
        return mysql_affected_rows();
    }
    function error($string="") {
        $error = mysql_error();
        if($this-&gt;settings["show_error"]) echo $error;
        if($this-&gt;settings["error_file"] !== false) {
            $handle = @fopen($this-&gt;settings["error_file"], "a+");
            if($handle) {
                @fwrite($handle, "[".date("Y-m-d H:i:s")."] ".$string." &lt;".$error."&gt;\n");
                @fclose($handle);
            }
        }
        if($this-&gt;settings["dieonerror"]) {
            if(isset($this-&gt;result)) mysql_free_result($this-&gt;result);
            mysql_close($this-&gt;link);
            die();
        }
    }
    function insert_id() {
        if(!$this-&gt;link) return false;
        return mysql_insert_id();
    }
    function escape($string){
        if(!$this-&gt;link) return addslashes($string);
        return mysql_real_escape_string($string);
    }

    function destroy(){
        if (isset($this-&gt;result)) mysql_free_result($this-&gt;result);
        if (isset($this-&gt;link)) mysql_close($this-&gt;link);
    }


}
?&gt;
</code></pre>
 ]]></content:encoded>
			<category domain="http://www.daniweb.com/web-development/php/17">PHP</category>
			<dc:creator>JACOBKELL</dc:creator>
			<guid isPermaLink="true">http://www.daniweb.com/web-development/php/threads/454865/converting-mysql-class-to-sqlite-class</guid>
		</item>
				<item>
			<title>Image popup from text</title>
			<link>http://www.daniweb.com/web-development/web-design-html-and-css/threads/454864/image-popup-from-text</link>
			<pubDate>Sat, 18 May 2013 10:47:39 +0000</pubDate>
			<description>I want to make a image pop up on my site, where if you hover over a line of text, a image will pop up on top of everything else on the page, using HTML5 and CSS3, can someone help me with this? ~I've tried some tutorials online but they ...</description>
			<content:encoded><![CDATA[ <p>I want to make a image pop up on my site, where if you hover over a line of text, a image will pop up on top of everything else on the page, using HTML5 and CSS3, can someone help me with this?</p>

<p>~I've tried some tutorials online but they havent worked.</p>

<p>Thanks in advance!</p>
 ]]></content:encoded>
			<category domain="http://www.daniweb.com/web-development/web-design-html-and-css/15">Web Design, HTML and CSS</category>
			<dc:creator>Hazzag1995</dc:creator>
			<guid isPermaLink="true">http://www.daniweb.com/web-development/web-design-html-and-css/threads/454864/image-popup-from-text</guid>
		</item>
				<item>
			<title>Custom Class</title>
			<link>http://www.daniweb.com/software-development/vbnet/threads/454863/custom-class</link>
			<pubDate>Sat, 18 May 2013 10:32:49 +0000</pubDate>
			<description>I have created custom text box for specific purpose i.e to accept alphanumeric values only and the length of text should be 6. If the user put less than six characters the code in below block converts it to 6 characters by filling in zeros . ‘Custom Clss block Protected ...</description>
			<content:encoded><![CDATA[ <p>I have created custom text box for specific purpose i.e to accept alphanumeric values only and the length of text should be 6. If the user put less than six characters the  code in below block converts it to 6 characters by filling in zeros .</p>

<pre><code class="language-vb">‘Custom Clss block
Protected Overrides Sub OnLostFocus(ByVal e As System.EventArgs)
‘some code
End sub 
</code></pre>

<p>Also i write code for LostFocus in in form code</p>

<pre><code class="language-vb">‘Form class block
Private Sub TxtPurchasePLCode_LostFocus(ByVal sender As Object, ByVal e As System.EventArgs) Handles TxtPurchasePLCode.LostFocus

‘some code
End sub
</code></pre>

<p>**<br />
Now the  problem is code written  on form class block get triggered before code in Custom Clss block<br />
How can i make Custom Clss block Trigger  before form class<br />
**</p>
 ]]></content:encoded>
			<category domain="http://www.daniweb.com/software-development/vbnet/58">VB.NET</category>
			<dc:creator>PM312</dc:creator>
			<guid isPermaLink="true">http://www.daniweb.com/software-development/vbnet/threads/454863/custom-class</guid>
		</item>
				<item>
			<title>PHP wont make a file.</title>
			<link>http://www.daniweb.com/web-development/php/threads/454862/php-wont-make-a-file</link>
			<pubDate>Sat, 18 May 2013 09:55:21 +0000</pubDate>
			<description>I am trying to create a file that with some values the user entered in the webpage. But my code doesnt create a file. And I have other code that is more or less similar that creates the file: Here is my code: &lt;?php echo &quot;&lt;p&gt; In order to create ...</description>
			<content:encoded><![CDATA[ <p>I am trying to create a file that with some values the user entered in the webpage. But my code doesnt create a file. And I have other code that is more or less similar that creates the file:</p>

<p>Here is my code:</p>

<pre><code>        &lt;?php
            echo "&lt;p&gt; In order to create an account we need certain information about you. We will not in anyway use this information &lt;br&gt; ";
            echo "  To identify you personaly. Read out privacy statement &lt;a href='privacy.php'&gt;HERE&lt;/a&gt;&lt;/p&gt;";
            echo "&lt;div class='min_h_personal'&gt;";
            echo "  &lt;h2 class='per_h2'&gt;Required information&lt;/h2&gt; ";
            echo "&lt;/div&gt;";

            echo "&lt;center&gt;";
            echo "&lt;form&gt;";
            echo "First name:&lt;br&gt;";
            echo "&lt;input type='text' name='fname'/&gt;&lt;br&gt;";
            echo "Last name:&lt;br&gt;";
            echo "&lt;input type='text' name='lname'/&gt;&lt;br&gt;";
            echo "Email: &lt;br&gt;";
            echo "&lt;i style='font-size:12;'&gt; Is also your account name &lt;/i&gt;&lt;br&gt;";
            echo "&lt;input type='text' name='email'/&gt;&lt;br&gt;";
            echo "Password: &lt;br&gt;";
            echo "      &lt;i style='font-size:12;'&gt; Must contain atleas 1 number and 1 upper case character &lt;/i&gt;&lt;br&gt;";
            echo "      &lt;input type='password' name='password'/&gt;&lt;br&gt;";
            echo "      &lt;input type='checkbox' name='gender'/&gt; Male&lt;br&gt;";
            echo "      &lt;input type='checkbox' name='gender'/&gt; Female&lt;br&gt;";
            echo "      Country:&lt;br&gt;";
            echo "      &lt;!-- this took me a long time to list all the countries :| --&gt;";
            echo "      &lt;select&gt;";
            echo "          &lt;option name='c' id='country'&gt; --- Select onse --- &lt;/option&gt;";
            echo "          &lt;option name='africa' id='country'&gt; Africa &lt;/option&gt;";
            echo "          &lt;option name='america' id='country' America &lt;/option&gt;";
            echo "          &lt;option name='europe' id='country' Europe &lt;/option&gt;";
            echo "          &lt;option name='ociania' id='country'&gt; Ociania &lt;/option&gt;";
            echo "          &lt;option name='antartica' id='country'&gt; Antartica &lt;/option&gt;";
            echo "      &lt;/select&gt;";
            echo "      &lt;br&gt;";
            echo "      &lt;iframe src='forumrulesexcept.php' width='500' height='450'&gt;";
            echo "      &lt;/iframe&gt;&lt;br&gt;";
            echo "      &lt;input type='checkbox' name='no'/&gt; No &lt;br&gt;";
            echo "      &lt;input type='checkbox' name='yes'/&gt; Yes &lt;br&gt;";
            echo "  &lt;/form&gt;";
            echo "&lt;/center&gt;";

            echo "&lt;div class='add_info'&gt;";
            echo "  &lt;h2 class='add_h2'&gt;Additional infromation&lt;/h2&gt;";
            echo "&lt;/div&gt;";
            echo "&lt;center&gt;";
            echo "  &lt;form&gt;";
            echo "      Job position: &lt;br&gt;";
            echo "      &lt;input type='text' name='job'/&gt;&lt;br&gt;";
            echo "      Company: &lt;br&gt; ";
            echo "      &lt;input type='text' name='company'&gt;&lt;br&gt;";
            echo "      Cellphone: &lt;br&gt;";
            echo "      &lt;input type='text' name='cell'/&gt;&lt;br&gt;";
            echo "  &lt;/form&gt;";
            echo "  &lt;input type='submit' name='submit' value='Submit'&gt;";
            echo "&lt;/center&gt;";

            if(isset($_REQUEST['submit'])){
            $email = $_REQUEST['email'];
            $pass = $_REQUEST['password'];

            $file = fopen($email.$pass.".html");

            fwrite($file, "$email");

            fclose($file);
            }

            ?&gt;
</code></pre>

<p>This is only a peice, this piece is contained in a larger .php file.<br />
What is wrong and how do I fix it?</p>

<p>Thanks...</p>
 ]]></content:encoded>
			<category domain="http://www.daniweb.com/web-development/php/17">PHP</category>
			<dc:creator>MasterHacker110</dc:creator>
			<guid isPermaLink="true">http://www.daniweb.com/web-development/php/threads/454862/php-wont-make-a-file</guid>
		</item>
				<item>
			<title>Abstract Class in Java</title>
			<link>http://www.daniweb.com/software-development/java/threads/454861/abstract-class-in-java</link>
			<pubDate>Sat, 18 May 2013 09:37:26 +0000</pubDate>
			<description>What is abstract class in Java? and why is it use?</description>
			<content:encoded><![CDATA[ <p>What is abstract class in Java? and why is it use?</p>
 ]]></content:encoded>
			<category domain="http://www.daniweb.com/software-development/java/9">Java</category>
			<dc:creator>sushants</dc:creator>
			<guid isPermaLink="true">http://www.daniweb.com/software-development/java/threads/454861/abstract-class-in-java</guid>
		</item>
				<item>
			<title>Will my idea for a login script work?</title>
			<link>http://www.daniweb.com/web-development/php/threads/454859/will-my-idea-for-a-login-script-work</link>
			<pubDate>Sat, 18 May 2013 08:51:03 +0000</pubDate>
			<description>I am a noob at web programming. I am currently writing a test forum. People will be able to create accounts and then login. But my problem is I dont know how a login script works. So I came up with this idea: 1): Every time an user creates an ...</description>
			<content:encoded><![CDATA[ <p>I am a noob at web programming. I am currently writing a test forum. People will be able to create accounts and then login. But my problem is I dont know how a login script works. So I came up with this idea:</p>

<pre><code>1): 
    Every time an user creates an account I will write the user's name, email and password to a database file.
    Then when he tries to login he my php program will query the file line by line and see if there is a match.
    Once it has a match it will load the users profile page, the name of his page will be [name]+[email]+[password].html
    So that each file will be unique.
</code></pre>

<p>So will it work or is there a nother way, posibly better, more secure way?</p>

<p>Also (I am not sure if this is against daniweb rules, I couldnt find anything that said it was) but if anyone would like to work with me on this project please contact me by sending me a message through daniweb.</p>
 ]]></content:encoded>
			<category domain="http://www.daniweb.com/web-development/php/17">PHP</category>
			<dc:creator>MasterHacker110</dc:creator>
			<guid isPermaLink="true">http://www.daniweb.com/web-development/php/threads/454859/will-my-idea-for-a-login-script-work</guid>
		</item>
				<item>
			<title>Program Java</title>
			<link>http://www.daniweb.com/software-development/java/threads/454858/program-java</link>
			<pubDate>Sat, 18 May 2013 08:03:53 +0000</pubDate>
			<description>I am a final year student. My supervisor had asked me for creating one chat program using java. i don't have any idea on how to started it. he asked me for doing a standalone system. please help me solve this problem?</description>
			<content:encoded><![CDATA[ <p>I am a final year student. My supervisor had asked me for creating one chat program using java. i don't have any idea on how to started it. he asked me for doing a standalone system. please help me solve this problem?</p>
 ]]></content:encoded>
			<category domain="http://www.daniweb.com/software-development/java/9">Java</category>
			<dc:creator>nurib</dc:creator>
			<guid isPermaLink="true">http://www.daniweb.com/software-development/java/threads/454858/program-java</guid>
		</item>
				<item>
			<title>Backbone post - php does not see $_POST array</title>
			<link>http://www.daniweb.com/web-development/javascript-dhtml-ajax/threads/454857/backbone-post-php-does-not-see-_post-array</link>
			<pubDate>Sat, 18 May 2013 07:38:48 +0000</pubDate>
			<description>Hello, there is a function which saves and sends post request: save_car: function(e) { if (e.keyCode != 13) return; if (!this.brand.val()) return; Cars.create({brand: this.brand.val(), color: this.color.val(), max_speed: this.max_speed.val() }); this.brand.val(''); this.color.val(''); this.max_speed.val(''); }, Request URL:http://localhost/backbone/car_list/backend/index.php/welcome/index Request Method:POST Status Code:200 OK Request Headersview source Accept:application/json, text/javascript, */*; q=0.01 Accept-Charset:ISO-8859-1,utf-8;q=0.7,*;q=0.3 Accept-Encoding:gzip,deflate,sdch Accept-Language:en,lt;q=0.8,en-US;q=0.6,ru;q=0.4,pl;q=0.2 ...</description>
			<content:encoded><![CDATA[ <p>Hello,</p>

<p>there is a function which saves and sends post request:</p>

<pre><code class="language-js">save_car: function(e) {

      if (e.keyCode != 13) return;
      if (!this.brand.val()) return;

      Cars.create({brand: this.brand.val(), color: this.color.val(), max_speed: this.max_speed.val() });

      this.brand.val('');
      this.color.val('');
      this.max_speed.val('');
    },





Request URL:<a href="http://localhost/backbone/car_list/backend/index.php/welcome/index" rel="nofollow">http://localhost/backbone/car_list/backend/index.php/welcome/index</a>
Request Method:POST
Status Code:200 OK
Request Headersview source
Accept:application/json, text/javascript, */*; q=0.01
Accept-Charset:ISO-8859-1,utf-8;q=0.7,*;q=0.3
Accept-Encoding:gzip,deflate,sdch
Accept-Language:en,lt;q=0.8,en-US;q=0.6,ru;q=0.4,pl;q=0.2
Connection:keep-alive
Content-Length:70
Content-Type:application/json
Cookie:PHPSESSID=5dndo82fup9pi838f9uterrci6; ci_session=a%3A4%3A%7Bs%3A10%3A%22session_id%22%3Bs%3A32%3A%227a7e53ab078672515aec9b4b8a73cb83%22%3Bs%3A10%3A%22ip_address%22%3Bs%3A9%3A%22127.0.0.1%22%3Bs%3A10%3A%22user_agent%22%3Bs%3A50%3A%22Mozilla%2F5.0+%28Windows+NT+6.1%3B+WOW64%29+AppleWebKit%2F53%22%3Bs%3A13%3A%22last_activity%22%3Bi%3A1368858542%3B%7D48f6946a4ed6a07726f1d2790a67993c
Host:localhost
Origin:<a href="http://localhost" rel="nofollow">http://localhost</a>
Referer:<a href="http://localhost/backbone/car_list/" rel="nofollow">http://localhost/backbone/car_list/</a>
User-Agent:Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.31 (KHTML, like Gecko) Chrome/26.0.1410.64 Safari/537.31
X-Requested-With:XMLHttpRequest
Request Payloadview source
{brand:sad, color:sf, max_speed:sd, order:1, remove:false}
brand: "sad"
color: "sf"
max_speed: "sd"
order: 1
remove: false
</code></pre>

<p>So as we see from headers there is post request with various parameters.</p>

<p>Now the php function:</p>

<pre><code class="language-js">public function index()
    {

        $this-&gt;load-&gt;model('Backbone_model');

        //$res = $this-&gt;Backbone_model-&gt;get_all();

        if (isset($_GET)) {
            echo json_encode($this-&gt;Backbone_model-&gt;get_all());
        }
        else if (isset($_POST)) {

            echo 'ts';

            //SELECT name as brand, address as color, tel as max_speed FROM contacts

            $sql = "INSERT INTO contacts (name, address, tel) VALUES (?, ?, ?)";
            $this-&gt;db-&gt;query($sql, array($_POST['brand'], $_POST['color'], $_POST['max_speed'] ));

            echo $this-&gt;db-&gt;last_query();

        }

        echo 'asss';

        print_r($_REQUEST);

    }
</code></pre>

<p>it returns;</p>

<p>[{"brand":"Darius","color":"maciuleviciaus 30","max_speed":"866612345"},{"brand":"arvydas","color":"zidiku","max_speed":"866"}]asssArray()</p>

<p>so it looks like it see $_GET request. WHy this could be? It returns json and later string 'asss'</p>
 ]]></content:encoded>
			<category domain="http://www.daniweb.com/web-development/javascript-dhtml-ajax/117">JavaScript / DHTML / AJAX</category>
			<dc:creator>SPeed_FANat1c</dc:creator>
			<guid isPermaLink="true">http://www.daniweb.com/web-development/javascript-dhtml-ajax/threads/454857/backbone-post-php-does-not-see-_post-array</guid>
		</item>
				<item>
			<title>Components of Rails</title>
			<link>http://www.daniweb.com/web-development/ruby/threads/454856/components-of-rails</link>
			<pubDate>Sat, 18 May 2013 07:01:38 +0000</pubDate>
			<description>What are the various Components of Rails?</description>
			<content:encoded><![CDATA[ <p>What are the various Components of Rails?</p>
 ]]></content:encoded>
			<category domain="http://www.daniweb.com/web-development/ruby/73">Ruby</category>
			<dc:creator>chrispitt</dc:creator>
			<guid isPermaLink="true">http://www.daniweb.com/web-development/ruby/threads/454856/components-of-rails</guid>
		</item>
				<item>
			<title>Integer Type</title>
			<link>http://www.daniweb.com/software-development/c/threads/454855/integer-type</link>
			<pubDate>Sat, 18 May 2013 06:57:04 +0000</pubDate>
			<description>How should i decide which integer type to use?</description>
			<content:encoded><![CDATA[ <p>How should i decide which integer type to use?</p>
 ]]></content:encoded>
			<category domain="http://www.daniweb.com/software-development/c/118">C</category>
			<dc:creator>chrispitt</dc:creator>
			<guid isPermaLink="true">http://www.daniweb.com/software-development/c/threads/454855/integer-type</guid>
		</item>
				<item>
			<title>javascript for popup on selected item in dropdown</title>
			<link>http://www.daniweb.com/web-development/javascript-dhtml-ajax/threads/454854/javascript-for-popup-on-selected-item-in-dropdown</link>
			<pubDate>Sat, 18 May 2013 06:22:40 +0000</pubDate>
			<description>I want to show popup on item selected in dropdown control. I tried popup script on this but doesn't works. my code is as below &lt;select&gt; &lt;option value=&quot;1990&quot;&gt;1990&lt;/option&gt; &lt;option value=&quot;1991&quot;&gt;1991&lt;/option&gt; &lt;option value=&quot;1992&quot;&gt;1992&lt;/option&gt; &lt;option value=&quot;1993&quot;&gt;1993&lt;/option&gt; &lt;option value=&quot;1994&quot;&gt;1994&lt;/option&gt; &lt;/select&gt; now if I have select option i.e 1992 popup window should display the ...</description>
			<content:encoded><![CDATA[ <p>I want to show popup on item selected in dropdown control. I tried popup script on this but doesn't works.<br />
my code is as below</p>

<pre><code class="language-js">&lt;select&gt;
    &lt;option value="1990"&gt;1990&lt;/option&gt;
    &lt;option value="1991"&gt;1991&lt;/option&gt;
    &lt;option value="1992"&gt;1992&lt;/option&gt;
    &lt;option value="1993"&gt;1993&lt;/option&gt;
    &lt;option value="1994"&gt;1994&lt;/option&gt;                
&lt;/select&gt;
</code></pre>

<p>now if I have select option i.e 1992 popup window should display the result 1992<br />
please help me...<br />
Thank you in adv.</p>
 ]]></content:encoded>
			<category domain="http://www.daniweb.com/web-development/javascript-dhtml-ajax/117">JavaScript / DHTML / AJAX</category>
			<dc:creator>shilu2</dc:creator>
			<guid isPermaLink="true">http://www.daniweb.com/web-development/javascript-dhtml-ajax/threads/454854/javascript-for-popup-on-selected-item-in-dropdown</guid>
		</item>
				<item>
			<title>cpu fan speed</title>
			<link>http://www.daniweb.com/hardware-and-software/pc-hardware/threads/454852/cpu-fan-speed</link>
			<pubDate>Sat, 18 May 2013 05:55:09 +0000</pubDate>
			<description>hi is there any software that can controll the fan speed of the cpu, I already try &quot;fan speed&quot; but it is not compatible with my laptop. I also try in bios, but my bios doesnt have an option to edit the cpu speed. I am using acer aspire 4750z, ...</description>
			<content:encoded><![CDATA[ <p>hi<br />
is there any software that can controll the fan speed of the cpu, I already try "fan speed" but it is not compatible with my laptop. I also try in bios, but my bios doesnt have an option to edit the cpu speed.</p>

<p>I am using acer aspire 4750z, with win 7 ultimate.</p>

<p>I will appreciate for any suggestions, thank you.</p>
 ]]></content:encoded>
			<category domain="http://www.daniweb.com/hardware-and-software/pc-hardware/7">PC Hardware</category>
			<dc:creator>ZER09</dc:creator>
			<guid isPermaLink="true">http://www.daniweb.com/hardware-and-software/pc-hardware/threads/454852/cpu-fan-speed</guid>
		</item>
				<item>
			<title>php and jquery chat</title>
			<link>http://www.daniweb.com/web-development/php/threads/454851/php-and-jquery-chat</link>
			<pubDate>Sat, 18 May 2013 05:10:33 +0000</pubDate>
			<description>I am trying to make a jquery/php chat and i append data to the chat box, but then when the jquery loop trys to get the .last() data it gets the one before the appended data causing it to append the same data over and over again. hHow would i ...</description>
			<content:encoded><![CDATA[ <p>I am trying to make a jquery/php chat and i append data to the chat box, but then when the jquery loop trys to get the .last() data it gets the one before the appended data causing it to append the same data over and over again. hHow would i get the .last() div added even if its appended?</p>

<pre><code>&lt;script type="text/javascript" charset="utf-8"&gt;
    function addmsg(type, msg){
        /* Simple helper to add a div.
        type is the name of a CSS class (old/new/error).
        msg is the contents of the div */
        $("#messages").append(
            "&lt;div class='msg "+ type +"'&gt;"+ msg +"&lt;/div&gt;"
        );
    }

    function waitForMsg(){
        /* This requests the url "msgsrv.php"
        When it complete (or errors)*/
        var className = $('.messages:last-child').attr('class');
        $.ajax({
            type: "GET",
            url: "msgsrv.php?ID=11&amp;MID=409&amp;SELECT=" + className,

            async: true, /* If set to non-async, browser shows page as "Loading.."*/
            cache: false,
            timeout:50000, /* Timeout in ms */

            success: function(data){ /* called when request to barge.php completes */
                addmsg("new", data); /* Add response to a .msg div (with the "new" class)*/
                setTimeout(
                    waitForMsg, /* Request next message */
                    1000 /* ..after 1 seconds */
                );
            },
            error: function(XMLHttpRequest, textStatus, errorThrown){
                addmsg("error", textStatus + " (" + errorThrown + ")");
                setTimeout(
                    waitForMsg, /* Try again after.. */
                    15000); /* milliseconds (15seconds) */
            }
        });
    };

    $(document).ready(function(){
        waitForMsg(); /* Start the inital request */
    });
    &lt;/script&gt;

    &lt;div id="chat" style="overflow:auto;"&gt;
        &lt;div id="messages" class="0" style="display:inline;"&gt;
        &lt;/div&gt;
        &lt;div id="messages" class="0" style="display:inline;"&gt;
        &lt;/div&gt;
    &lt;/div&gt;
</code></pre>
 ]]></content:encoded>
			<category domain="http://www.daniweb.com/web-development/php/17">PHP</category>
			<dc:creator>zacharysr</dc:creator>
			<guid isPermaLink="true">http://www.daniweb.com/web-development/php/threads/454851/php-and-jquery-chat</guid>
		</item>
				<item>
			<title>Help new programmer</title>
			<link>http://www.daniweb.com/software-development/python/threads/454850/help-new-programmer</link>
			<pubDate>Sat, 18 May 2013 04:55:47 +0000</pubDate>
			<description>So, I'm a new programmer python is my first language. I'm trying to create a program to randomly open a pdf from a directory and read/display one page. Anyway thats what I got so far. I'm just wondering if theres a more efficient way to write this. Any advice? import ...</description>
			<content:encoded><![CDATA[ <p>So, I'm a new programmer python is my first language. I'm trying to create a program to randomly open a pdf from a directory and read/display one page. Anyway thats what I got so far. I'm just wondering if theres a more efficient way to write this. Any advice?</p>

<pre><code class="language-py">import os, random, Pdf
from Pdf import PdfFileReader, PageObject 

b = random.choice(os.listdir("/home/illman/reading/books/PDF")) 

Pdf_toRead = PdfFileReader(open(b, 'r'))
page_one = pdf_toRead.getPage(random.randrange(0, 10000))
</code></pre>
 ]]></content:encoded>
			<category domain="http://www.daniweb.com/software-development/python/114">Python</category>
			<dc:creator>wolf_one</dc:creator>
			<guid isPermaLink="true">http://www.daniweb.com/software-development/python/threads/454850/help-new-programmer</guid>
		</item>
				<item>
			<title>Vundo and maybe other issues</title>
			<link>http://www.daniweb.com/hardware-and-software/microsoft-windows/viruses-spyware-and-other-nasties/threads/454849/vundo-and-maybe-other-issues</link>
			<pubDate>Sat, 18 May 2013 03:13:06 +0000</pubDate>
			<description>I need to remove Vundo and potentially other issues from my son's computer. BTW **Do not allow your kids to play Pickle **as that seems to be where he got it. *sigh* I've followed all of the instructions from the &quot;Read me before posting&quot; instructions. Your help is much appreciated! ...</description>
			<content:encoded><![CDATA[ <p>I need to remove Vundo and potentially other issues from my son's computer. BTW **Do not allow your kids to play Pickle **as that seems to be where he got it. <em>sigh</em></p>

<p>I've followed all of the instructions from the "Read me before posting" instructions. Your help is much appreciated!</p>

<pre><code>'=========== malwarebytes log =========

Malwarebytes Anti-Malware (Trial) 1.75.0.1300
www.malwarebytes.org

Database version: v2013.05.17.07

Windows 7 Service Pack 1 x64 NTFS
Internet Explorer 10.0.9200.16576
Vincent :: VINCENT-PC [administrator]

Protection: Enabled

5/17/2013 8:47:49 PM
mbam-log-2013-05-17 (20-47-49).txt

Scan type: Full scan (C:\|)
Scan options enabled: Memory | Startup | Registry | File System | Heuristics/Extra | Heuristics/Shuriken | PUP | PUM
Scan options disabled: P2P
Objects scanned: 375978
Time elapsed: 34 minute(s), 4 second(s)

Memory Processes Detected: 0
(No malicious items detected)

Memory Modules Detected: 0
(No malicious items detected)

Registry Keys Detected: 2
HKCU\SOFTWARE\Microsoft\Internet Explorer\SearchScopes\{56256A51-B582-467e-B8D4-7786EDA79AE0} (Trojan.Vundo) -&gt; Quarantined and deleted successfully.
HKLM\SOFTWARE\Microsoft\Internet Explorer\SearchScopes\{56256A51-B582-467e-B8D4-7786EDA79AE0} (Trojan.Vundo) -&gt; Quarantined and deleted successfully.

Registry Values Detected: 0
(No malicious items detected)

Registry Data Items Detected: 0
(No malicious items detected)

Folders Detected: 0
(No malicious items detected)

Files Detected: 0
(No malicious items detected)

(end)

============ GMER One.log ===========
GMER 2.1.19163 - <a href="http://www.gmer.net" rel="nofollow">http://www.gmer.net</a>
Rootkit scan 2013-05-17 20:20:14
Windows 6.1.7601 Service Pack 1 x64 \Device\Harddisk0\DR0 -&gt; \Device\Ide\IdeDeviceP0T0L0-0 WDC_WD1001FAES-75W7A0 rev.05.01D05 931.51GB
Running: fq2lk3vl.exe; Driver: C:\Users\Vincent\AppData\Local\Temp\uxriifog.sys


---- Threads - GMER 2.1 ----

Thread   C:\Program Files\Microsoft Device Center\itype.exe [3208:3476]                                          0000000071b01dd4
Thread   C:\Program Files\Microsoft Device Center\itype.exe [3208:3540]                                          0000000071b01dd4
Thread   C:\Program Files\Microsoft Device Center\itype.exe [3208:3568]                                          000007fefb79d880
Thread   C:\Windows\System32\svchost.exe [3700:4476]                                                             000007fef0509688
Thread   C:\Program Files\Windows Media Player\wmpnetwk.exe [2160:4152]                                          000007fefe5d0168
Thread   C:\Program Files\Windows Media Player\wmpnetwk.exe [2160:808]                                           000007fefbc72a7c
Thread   C:\Program Files\Windows Media Player\wmpnetwk.exe [2160:4424]                                          000007feeab1d618
Thread   C:\Program Files\Windows Media Player\wmpnetwk.exe [2160:2104]                                          000007fefad35124
---- Processes - GMER 2.1 ----

Library  C:\Program Files\SUPERAntiSpyware\SASCTXMN64.DLL (*** suspicious ***) @ C:\Windows\Explorer.EXE [1896]  0000000002ee0000

---- EOF - GMER 2.1 ----


======== GMER Two.log ========

GMER 2.1.19163 - <a href="http://www.gmer.net" rel="nofollow">http://www.gmer.net</a>
Rootkit scan 2013-05-17 20:39:58
Windows 6.1.7601 Service Pack 1 x64 \Device\Harddisk0\DR0 -&gt; \Device\Ide\IdeDeviceP0T0L0-0 WDC_WD1001FAES-75W7A0 rev.05.01D05 931.51GB
Running: fq2lk3vl.exe; Driver: C:\Users\Vincent\AppData\Local\Temp\uxriifog.sys


---- Threads - GMER 2.1 ----

Thread   C:\Program Files\Microsoft Device Center\itype.exe [3208:3476]                                                                                                                                    0000000071b01dd4
Thread   C:\Program Files\Microsoft Device Center\itype.exe [3208:3540]                                                                                                                                    0000000071b01dd4
Thread   C:\Program Files\Microsoft Device Center\itype.exe [3208:3568]                                                                                                                                    000007fefb79d880
Thread   C:\Windows\System32\svchost.exe [3700:4476]                                                                                                                                                       000007fef0509688
Thread   C:\Program Files\Windows Media Player\wmpnetwk.exe [2160:4152]                                                                                                                                    000007fefe5d0168
Thread   C:\Program Files\Windows Media Player\wmpnetwk.exe [2160:808]                                                                                                                                     000007fefbc72a7c
Thread   C:\Program Files\Windows Media Player\wmpnetwk.exe [2160:4424]                                                                                                                                    000007feeab1d618
Thread   C:\Program Files\Windows Media Player\wmpnetwk.exe [2160:2104]                                                                                                                                    000007fefad35124
---- Processes - GMER 2.1 ----

Library  C:\Program Files\SUPERAntiSpyware\SASCTXMN64.DLL (*** suspicious ***) @ C:\Windows\Explorer.EXE [1896]                                                                                            0000000002ee0000

---- Registry - GMER 2.1 ----

Reg      HKLM\SYSTEM\CurrentControlSet\services\aswFsBlk@Type                                                                                                                                              2
Reg      HKLM\SYSTEM\CurrentControlSet\services\aswFsBlk@Start                                                                                                                                             2
Reg      HKLM\SYSTEM\CurrentControlSet\services\aswFsBlk@ErrorControl                                                                                                                                      1
Reg      HKLM\SYSTEM\CurrentControlSet\services\aswFsBlk@DisplayName                                                                                                                                       aswFsBlk
Reg      HKLM\SYSTEM\CurrentControlSet\services\aswFsBlk@Group                                                                                                                                             FSFilter Activity Monitor
Reg      HKLM\SYSTEM\CurrentControlSet\services\aswFsBlk@DependOnService                                                                                                                                   FltMgr?
Reg      HKLM\SYSTEM\CurrentControlSet\services\aswFsBlk@Description                                                                                                                                       avast! mini-filter driver (aswFsBlk)
Reg      HKLM\SYSTEM\CurrentControlSet\services\aswFsBlk@Tag                                                                                                                                               3
Reg      HKLM\SYSTEM\CurrentControlSet\services\aswFsBlk\Instances                                                                                                                                         
Reg      HKLM\SYSTEM\CurrentControlSet\services\aswFsBlk\Instances@DefaultInstance                                                                                                                         aswFsBlk Instance
Reg      HKLM\SYSTEM\CurrentControlSet\services\aswFsBlk\Instances\aswFsBlk Instance                                                                                                                       
Reg      HKLM\SYSTEM\CurrentControlSet\services\aswFsBlk\Instances\aswFsBlk Instance@Altitude                                                                                                              388400
Reg      HKLM\SYSTEM\CurrentControlSet\services\aswFsBlk\Instances\aswFsBlk Instance@Flags                                                                                                                 0
Reg      HKLM\SYSTEM\CurrentControlSet\services\aswFsBlk                                                                                                                                                   
Reg      HKLM\SYSTEM\CurrentControlSet\services\aswMonFlt@Type                                                                                                                                             2
Reg      HKLM\SYSTEM\CurrentControlSet\services\aswMonFlt@Start                                                                                                                                            2
Reg      HKLM\SYSTEM\CurrentControlSet\services\aswMonFlt@ErrorControl                                                                                                                                     1
Reg      HKLM\SYSTEM\CurrentControlSet\services\aswMonFlt@ImagePath                                                                                                                                        \??\C:\Windows\system32\drivers\aswMonFlt.sys
Reg      HKLM\SYSTEM\CurrentControlSet\services\aswMonFlt@DisplayName                                                                                                                                      aswMonFlt
Reg      HKLM\SYSTEM\CurrentControlSet\services\aswMonFlt@Group                                                                                                                                            FSFilter Anti-Virus
Reg      HKLM\SYSTEM\CurrentControlSet\services\aswMonFlt@DependOnService                                                                                                                                  FltMgr?
Reg      HKLM\SYSTEM\CurrentControlSet\services\aswMonFlt@Description                                                                                                                                      avast! mini-filter driver (aswMonFlt)
Reg      HKLM\SYSTEM\CurrentControlSet\services\aswMonFlt\Instances                                                                                                                                        
Reg      HKLM\SYSTEM\CurrentControlSet\services\aswMonFlt\Instances@DefaultInstance                                                                                                                        aswMonFlt Instance
Reg      HKLM\SYSTEM\CurrentControlSet\services\aswMonFlt\Instances\aswMonFlt Instance                                                                                                                     
Reg      HKLM\SYSTEM\CurrentControlSet\services\aswMonFlt\Instances\aswMonFlt Instance@Altitude                                                                                                            320700
Reg      HKLM\SYSTEM\CurrentControlSet\services\aswMonFlt\Instances\aswMonFlt Instance@Flags                                                                                                               0
Reg      HKLM\SYSTEM\CurrentControlSet\services\aswMonFlt                                                                                                                                                  
Reg      HKLM\SYSTEM\CurrentControlSet\services\aswRdr@Type                                                                                                                                                1
Reg      HKLM\SYSTEM\CurrentControlSet\services\aswRdr@Start                                                                                                                                               1
Reg      HKLM\SYSTEM\CurrentControlSet\services\aswRdr@ErrorControl                                                                                                                                        1
Reg      HKLM\SYSTEM\CurrentControlSet\services\aswRdr@DisplayName                                                                                                                                         aswRdr
Reg      HKLM\SYSTEM\CurrentControlSet\services\aswRdr@Group                                                                                                                                               PNP_TDI
Reg      HKLM\SYSTEM\CurrentControlSet\services\aswRdr@DependOnService                                                                                                                                     tcpip?
Reg      HKLM\SYSTEM\CurrentControlSet\services\aswRdr@Description                                                                                                                                         avast! WFP Redirect driver
Reg      HKLM\SYSTEM\CurrentControlSet\services\aswRdr@ImagePath                                                                                                                                           \SystemRoot\System32\Drivers\aswrdr2.sys
Reg      HKLM\SYSTEM\CurrentControlSet\services\aswRdr\Parameters                                                                                                                                          
Reg      HKLM\SYSTEM\CurrentControlSet\services\aswRdr\Parameters@MSIgnoreLSPDefault                                                                                                                       
Reg      HKLM\SYSTEM\CurrentControlSet\services\aswRdr\Parameters@WSIgnoreLSPDefault                                                                                                                       nl_lsp.dll,imon.dll,xfire_lsp.dll,mslsp.dll,mssplsp.dll,cwhook.dll,spi.dll,bmnet.dll,winsflt.dll
Reg      HKLM\SYSTEM\CurrentControlSet\services\aswRdr                                                                                                                                                     
Reg      HKLM\SYSTEM\CurrentControlSet\services\aswRvrt@Type                                                                                                                                               1
Reg      HKLM\SYSTEM\CurrentControlSet\services\aswRvrt@Start                                                                                                                                              0
Reg      HKLM\SYSTEM\CurrentControlSet\services\aswRvrt@ErrorControl                                                                                                                                       1
Reg      HKLM\SYSTEM\CurrentControlSet\services\aswRvrt@DisplayName                                                                                                                                        aswRvrt
Reg      HKLM\SYSTEM\CurrentControlSet\services\aswRvrt@Description                                                                                                                                        avast! Revert
Reg      HKLM\SYSTEM\CurrentControlSet\services\aswRvrt\Parameters                                                                                                                                         
Reg      HKLM\SYSTEM\CurrentControlSet\services\aswRvrt\Parameters@BootCounter                                                                                                                             14
Reg      HKLM\SYSTEM\CurrentControlSet\services\aswRvrt\Parameters@TickCounter                                                                                                                             3373043
Reg      HKLM\SYSTEM\CurrentControlSet\services\aswRvrt\Parameters@SystemRoot                                                                                                                              \Device\Harddisk0\Partition3\Windows
Reg      HKLM\SYSTEM\CurrentControlSet\services\aswRvrt\Parameters@ImproperShutdown                                                                                                                        1
Reg      HKLM\SYSTEM\CurrentControlSet\services\aswRvrt                                                                                                                                                    
Reg      HKLM\SYSTEM\CurrentControlSet\services\aswSnx@Type                                                                                                                                                2
Reg      HKLM\SYSTEM\CurrentControlSet\services\aswSnx@Start                                                                                                                                               1
Reg      HKLM\SYSTEM\CurrentControlSet\services\aswSnx@ErrorControl                                                                                                                                        1
Reg      HKLM\SYSTEM\CurrentControlSet\services\aswSnx@DisplayName                                                                                                                                         aswSnx
Reg      HKLM\SYSTEM\CurrentControlSet\services\aswSnx@Group                                                                                                                                               FSFilter Virtualization
Reg      HKLM\SYSTEM\CurrentControlSet\services\aswSnx@DependOnService                                                                                                                                     FltMgr?
Reg      HKLM\SYSTEM\CurrentControlSet\services\aswSnx@Description                                                                                                                                         avast! virtualization driver (aswSnx)
Reg      HKLM\SYSTEM\CurrentControlSet\services\aswSnx@Tag                                                                                                                                                 2
Reg      HKLM\SYSTEM\CurrentControlSet\services\aswSnx\Instances                                                                                                                                           
Reg      HKLM\SYSTEM\CurrentControlSet\services\aswSnx\Instances@DefaultInstance                                                                                                                           aswSnx Instance
Reg      HKLM\SYSTEM\CurrentControlSet\services\aswSnx\Instances\aswSnx Instance                                                                                                                           
Reg      HKLM\SYSTEM\CurrentControlSet\services\aswSnx\Instances\aswSnx Instance@Altitude                                                                                                                  137600
Reg      HKLM\SYSTEM\CurrentControlSet\services\aswSnx\Instances\aswSnx Instance@Flags                                                                                                                     0
Reg      HKLM\SYSTEM\CurrentControlSet\services\aswSnx\Parameters                                                                                                                                          
Reg      HKLM\SYSTEM\CurrentControlSet\services\aswSnx\Parameters@ProgramFolder                                                                                                                            \DosDevices\C:\Program Files\AVAST Software\Avast
Reg      HKLM\SYSTEM\CurrentControlSet\services\aswSnx\Parameters@DataFolder                                                                                                                               \DosDevices\C:\ProgramData\AVAST Software\Avast
Reg      HKLM\SYSTEM\CurrentControlSet\services\aswSnx                                                                                                                                                     
Reg      HKLM\SYSTEM\CurrentControlSet\services\aswSP@Type                                                                                                                                                 1
Reg      HKLM\SYSTEM\CurrentControlSet\services\aswSP@Start                                                                                                                                                1
Reg      HKLM\SYSTEM\CurrentControlSet\services\aswSP@ErrorControl                                                                                                                                         1
Reg      HKLM\SYSTEM\CurrentControlSet\services\aswSP@DisplayName                                                                                                                                          aswSP
Reg      HKLM\SYSTEM\CurrentControlSet\services\aswSP@Description                                                                                                                                          avast! Self Protection
Reg      HKLM\SYSTEM\CurrentControlSet\services\aswSP\Parameters                                                                                                                                           
Reg      HKLM\SYSTEM\CurrentControlSet\services\aswSP\Parameters@BehavShield                                                                                                                               1
Reg      HKLM\SYSTEM\CurrentControlSet\services\aswSP\Parameters@ProgramFolder                                                                                                                             \DosDevices\C:\Program Files\AVAST Software\Avast
Reg      HKLM\SYSTEM\CurrentControlSet\services\aswSP\Parameters@DataFolder                                                                                                                                \DosDevices\C:\ProgramData\AVAST Software\Avast
Reg      HKLM\SYSTEM\CurrentControlSet\services\aswSP\Parameters@ProgramFilesFolder                                                                                                                        \DosDevices\C:\Program Files
Reg      HKLM\SYSTEM\CurrentControlSet\services\aswSP\Parameters@GadgetFolder                                                                                                                              \DosDevices\C:\Program Files\Windows Sidebar\Shared Gadgets\aswSidebar.gadget
Reg      HKLM\SYSTEM\CurrentControlSet\services\aswSP                                                                                                                                                      
Reg      HKLM\SYSTEM\CurrentControlSet\services\aswTdi@Type                                                                                                                                                1
Reg      HKLM\SYSTEM\CurrentControlSet\services\aswTdi@Start                                                                                                                                               1
Reg      HKLM\SYSTEM\CurrentControlSet\services\aswTdi@ErrorControl                                                                                                                                        1
Reg      HKLM\SYSTEM\CurrentControlSet\services\aswTdi@DisplayName                                                                                                                                         avast! Network Shield Support
Reg      HKLM\SYSTEM\CurrentControlSet\services\aswTdi@Group                                                                                                                                               PNP_TDI
Reg      HKLM\SYSTEM\CurrentControlSet\services\aswTdi@DependOnService                                                                                                                                     tcpip?
Reg      HKLM\SYSTEM\CurrentControlSet\services\aswTdi@Description                                                                                                                                         avast! Network Shield TDI driver
Reg      HKLM\SYSTEM\CurrentControlSet\services\aswTdi@Tag                                                                                                                                                 12
Reg      HKLM\SYSTEM\CurrentControlSet\services\aswTdi                                                                                                                                                     
Reg      HKLM\SYSTEM\CurrentControlSet\services\aswVmm@Type                                                                                                                                                1
Reg      HKLM\SYSTEM\CurrentControlSet\services\aswVmm@Start                                                                                                                                               3
Reg      HKLM\SYSTEM\CurrentControlSet\services\aswVmm@ErrorControl                                                                                                                                        1
Reg      HKLM\SYSTEM\CurrentControlSet\services\aswVmm@DisplayName                                                                                                                                         aswVmm
Reg      HKLM\SYSTEM\CurrentControlSet\services\aswVmm@Description                                                                                                                                         avast! VM Monitor
Reg      HKLM\SYSTEM\CurrentControlSet\services\aswVmm\Parameters                                                                                                                                          
Reg      HKLM\SYSTEM\CurrentControlSet\services\aswVmm                                                                                                                                                     
Reg      HKLM\SYSTEM\CurrentControlSet\services\avast! Antivirus@Type                                                                                                                                      32
Reg      HKLM\SYSTEM\CurrentControlSet\services\avast! Antivirus@Start                                                                                                                                     2
Reg      HKLM\SYSTEM\CurrentControlSet\services\avast! Antivirus@ErrorControl                                                                                                                              1
Reg      HKLM\SYSTEM\CurrentControlSet\services\avast! Antivirus@ImagePath                                                                                                                                 "C:\Program Files\AVAST Software\Avast\AvastSvc.exe"
Reg      HKLM\SYSTEM\CurrentControlSet\services\avast! Antivirus@DisplayName                                                                                                                               avast! Antivirus
Reg      HKLM\SYSTEM\CurrentControlSet\services\avast! Antivirus@Group                                                                                                                                     ShellSvcGroup
Reg      HKLM\SYSTEM\CurrentControlSet\services\avast! Antivirus@DependOnService                                                                                                                           aswMonFlt?RpcSS?
Reg      HKLM\SYSTEM\CurrentControlSet\services\avast! Antivirus@WOW64                                                                                                                                     1
Reg      HKLM\SYSTEM\CurrentControlSet\services\avast! Antivirus@ObjectName                                                                                                                                LocalSystem
Reg      HKLM\SYSTEM\CurrentControlSet\services\avast! Antivirus@ServiceSidType                                                                                                                            1
Reg      HKLM\SYSTEM\CurrentControlSet\services\avast! Antivirus@Description                                                                                                                               Manages and implements avast! antivirus services for this computer. This includes the resident protection, the virus chest and the scheduler.
Reg      HKLM\SYSTEM\CurrentControlSet\services\avast! Antivirus                                                                                                                                           
Reg      HKLM\SYSTEM\ControlSet002\services\aswFsBlk@Type                                                                                                                                                  2
Reg      HKLM\SYSTEM\ControlSet002\services\aswFsBlk@Start                                                                                                                                                 2
Reg      HKLM\SYSTEM\ControlSet002\services\aswFsBlk@ErrorControl                                                                                                                                          1
Reg      HKLM\SYSTEM\ControlSet002\services\aswFsBlk@DisplayName                                                                                                                                           aswFsBlk
Reg      HKLM\SYSTEM\ControlSet002\services\aswFsBlk@Group                                                                                                                                                 FSFilter Activity Monitor
Reg      HKLM\SYSTEM\ControlSet002\services\aswFsBlk@DependOnService                                                                                                                                       FltMgr?
Reg      HKLM\SYSTEM\ControlSet002\services\aswFsBlk@Description                                                                                                                                           avast! mini-filter driver (aswFsBlk)
Reg      HKLM\SYSTEM\ControlSet002\services\aswFsBlk@Tag                                                                                                                                                   3
Reg      HKLM\SYSTEM\ControlSet002\services\aswFsBlk\Instances (not active ControlSet)                                                                                                                     
Reg      HKLM\SYSTEM\ControlSet002\services\aswFsBlk\Instances@DefaultInstance                                                                                                                             aswFsBlk Instance
Reg      HKLM\SYSTEM\ControlSet002\services\aswFsBlk\Instances\aswFsBlk Instance (not active ControlSet)                                                                                                   
Reg      HKLM\SYSTEM\ControlSet002\services\aswFsBlk\Instances\aswFsBlk Instance@Altitude                                                                                                                  388400
Reg      HKLM\SYSTEM\ControlSet002\services\aswFsBlk\Instances\aswFsBlk Instance@Flags                                                                                                                     0
Reg      HKLM\SYSTEM\ControlSet002\services\aswMonFlt@Type                                                                                                                                                 2
Reg      HKLM\SYSTEM\ControlSet002\services\aswMonFlt@Start                                                                                                                                                2
Reg      HKLM\SYSTEM\ControlSet002\services\aswMonFlt@ErrorControl                                                                                                                                         1
Reg      HKLM\SYSTEM\ControlSet002\services\aswMonFlt@ImagePath                                                                                                                                            \??\C:\Windows\system32\drivers\aswMonFlt.sys
Reg      HKLM\SYSTEM\ControlSet002\services\aswMonFlt@DisplayName                                                                                                                                          aswMonFlt
Reg      HKLM\SYSTEM\ControlSet002\services\aswMonFlt@Group                                                                                                                                                FSFilter Anti-Virus
Reg      HKLM\SYSTEM\ControlSet002\services\aswMonFlt@DependOnService                                                                                                                                      FltMgr?
Reg      HKLM\SYSTEM\ControlSet002\services\aswMonFlt@Description                                                                                                                                          avast! mini-filter driver (aswMonFlt)
Reg      HKLM\SYSTEM\ControlSet002\services\aswMonFlt\Instances (not active ControlSet)                                                                                                                    
Reg      HKLM\SYSTEM\ControlSet002\services\aswMonFlt\Instances@DefaultInstance                                                                                                                            aswMonFlt Instance
Reg      HKLM\SYSTEM\ControlSet002\services\aswMonFlt\Instances\aswMonFlt Instance (not active ControlSet)                                                                                                 
Reg      HKLM\SYSTEM\ControlSet002\services\aswMonFlt\Instances\aswMonFlt Instance@Altitude                                                                                                                320700
Reg      HKLM\SYSTEM\ControlSet002\services\aswMonFlt\Instances\aswMonFlt Instance@Flags                                                                                                                   0
Reg      HKLM\SYSTEM\ControlSet002\services\aswRdr@Type                                                                                                                                                    1
Reg      HKLM\SYSTEM\ControlSet002\services\aswRdr@Start                                                                                                                                                   1
Reg      HKLM\SYSTEM\ControlSet002\services\aswRdr@ErrorControl                                                                                                                                            1
Reg      HKLM\SYSTEM\ControlSet002\services\aswRdr@DisplayName                                                                                                                                             aswRdr
Reg      HKLM\SYSTEM\ControlSet002\services\aswRdr@Group                                                                                                                                                   PNP_TDI
Reg      HKLM\SYSTEM\ControlSet002\services\aswRdr@DependOnService                                                                                                                                         tcpip?
Reg      HKLM\SYSTEM\ControlSet002\services\aswRdr@Description                                                                                                                                             avast! WFP Redirect driver
Reg      HKLM\SYSTEM\ControlSet002\services\aswRdr@ImagePath                                                                                                                                               \SystemRoot\System32\Drivers\aswrdr2.sys
Reg      HKLM\SYSTEM\ControlSet002\services\aswRdr\Parameters (not active ControlSet)                                                                                                                      
Reg      HKLM\SYSTEM\ControlSet002\services\aswRdr\Parameters@MSIgnoreLSPDefault                                                                                                                           
Reg      HKLM\SYSTEM\ControlSet002\services\aswRdr\Parameters@WSIgnoreLSPDefault                                                                                                                           nl_lsp.dll,imon.dll,xfire_lsp.dll,mslsp.dll,mssplsp.dll,cwhook.dll,spi.dll,bmnet.dll,winsflt.dll
Reg      HKLM\SYSTEM\ControlSet002\services\aswRvrt@Type                                                                                                                                                   1
Reg      HKLM\SYSTEM\ControlSet002\services\aswRvrt@Start                                                                                                                                                  0
Reg      HKLM\SYSTEM\ControlSet002\services\aswRvrt@ErrorControl                                                                                                                                           1
Reg      HKLM\SYSTEM\ControlSet002\services\aswRvrt@DisplayName                                                                                                                                            aswRvrt
Reg      HKLM\SYSTEM\ControlSet002\services\aswRvrt@Description                                                                                                                                            avast! Revert
Reg      HKLM\SYSTEM\ControlSet002\services\aswRvrt\Parameters (not active ControlSet)                                                                                                                     
Reg      HKLM\SYSTEM\ControlSet002\services\aswRvrt\Parameters@BootCounter                                                                                                                                 14
Reg      HKLM\SYSTEM\ControlSet002\services\aswRvrt\Parameters@TickCounter                                                                                                                                 3373043
Reg      HKLM\SYSTEM\ControlSet002\services\aswRvrt\Parameters@SystemRoot                                                                                                                                  \Device\Harddisk0\Partition3\Windows
Reg      HKLM\SYSTEM\ControlSet002\services\aswRvrt\Parameters@ImproperShutdown                                                                                                                            1
Reg      HKLM\SYSTEM\ControlSet002\services\aswSnx@Type                                                                                                                                                    2
Reg      HKLM\SYSTEM\ControlSet002\services\aswSnx@Start                                                                                                                                                   1
Reg      HKLM\SYSTEM\ControlSet002\services\aswSnx@ErrorControl                                                                                                                                            1
Reg      HKLM\SYSTEM\ControlSet002\services\aswSnx@DisplayName                                                                                                                                             aswSnx
Reg      HKLM\SYSTEM\ControlSet002\services\aswSnx@Group                                                                                                                                                   FSFilter Virtualization
Reg      HKLM\SYSTEM\ControlSet002\services\aswSnx@DependOnService                                                                                                                                         FltMgr?
Reg      HKLM\SYSTEM\ControlSet002\services\aswSnx@Description                                                                                                                                             avast! virtualization driver (aswSnx)
Reg      HKLM\SYSTEM\ControlSet002\services\aswSnx@Tag                                                                                                                                                     2
Reg      HKLM\SYSTEM\ControlSet002\services\aswSnx\Instances (not active ControlSet)                                                                                                                       
Reg      HKLM\SYSTEM\ControlSet002\services\aswSnx\Instances@DefaultInstance                                                                                                                               aswSnx Instance
Reg      HKLM\SYSTEM\ControlSet002\services\aswSnx\Instances\aswSnx Instance (not active ControlSet)                                                                                                       
Reg      HKLM\SYSTEM\ControlSet002\services\aswSnx\Instances\aswSnx Instance@Altitude                                                                                                                      137600
Reg      HKLM\SYSTEM\ControlSet002\services\aswSnx\Instances\aswSnx Instance@Flags                                                                                                                         0
Reg      HKLM\SYSTEM\ControlSet002\services\aswSnx\Parameters (not active ControlSet)                                                                                                                      
Reg      HKLM\SYSTEM\ControlSet002\services\aswSnx\Parameters@ProgramFolder                                                                                                                                \DosDevices\C:\Program Files\AVAST Software\Avast
Reg      HKLM\SYSTEM\ControlSet002\services\aswSnx\Parameters@DataFolder                                                                                                                                   \DosDevices\C:\ProgramData\AVAST Software\Avast
Reg      HKLM\SYSTEM\ControlSet002\services\aswSP@Type                                                                                                                                                     1
Reg      HKLM\SYSTEM\ControlSet002\services\aswSP@Start                                                                                                                                                    1
Reg      HKLM\SYSTEM\ControlSet002\services\aswSP@ErrorControl                                                                                                                                             1
Reg      HKLM\SYSTEM\ControlSet002\services\aswSP@DisplayName                                                                                                                                              aswSP
Reg      HKLM\SYSTEM\ControlSet002\services\aswSP@Description                                                                                                                                              avast! Self Protection
Reg      HKLM\SYSTEM\ControlSet002\services\aswSP\Parameters (not active ControlSet)                                                                                                                       
Reg      HKLM\SYSTEM\ControlSet002\services\aswSP\Parameters@BehavShield                                                                                                                                   1
Reg      HKLM\SYSTEM\ControlSet002\services\aswSP\Parameters@ProgramFolder                                                                                                                                 \DosDevices\C:\Program Files\AVAST Software\Avast
Reg      HKLM\SYSTEM\ControlSet002\services\aswSP\Parameters@DataFolder                                                                                                                                    \DosDevices\C:\ProgramData\AVAST Software\Avast
Reg      HKLM\SYSTEM\ControlSet002\services\aswSP\Parameters@ProgramFilesFolder                                                                                                                            \DosDevices\C:\Program Files
Reg      HKLM\SYSTEM\ControlSet002\services\aswSP\Parameters@GadgetFolder                                                                                                                                  \DosDevices\C:\Program Files\Windows Sidebar\Shared Gadgets\aswSidebar.gadget
Reg      HKLM\SYSTEM\ControlSet002\services\aswTdi@Type                                                                                                                                                    1
Reg      HKLM\SYSTEM\ControlSet002\services\aswTdi@Start                                                                                                                                                   1
Reg      HKLM\SYSTEM\ControlSet002\services\aswTdi@ErrorControl                                                                                                                                            1
Reg      HKLM\SYSTEM\ControlSet002\services\aswTdi@DisplayName                                                                                                                                             avast! Network Shield Support
Reg      HKLM\SYSTEM\ControlSet002\services\aswTdi@Group                                                                                                                                                   PNP_TDI
Reg      HKLM\SYSTEM\ControlSet002\services\aswTdi@DependOnService                                                                                                                                         tcpip?
Reg      HKLM\SYSTEM\ControlSet002\services\aswTdi@Description                                                                                                                                             avast! Network Shield TDI driver
Reg      HKLM\SYSTEM\ControlSet002\services\aswTdi@Tag                                                                                                                                                     12
Reg      HKLM\SYSTEM\ControlSet002\services\aswVmm@Type                                                                                                                                                    1
Reg      HKLM\SYSTEM\ControlSet002\services\aswVmm@Start                                                                                                                                                   3
Reg      HKLM\SYSTEM\ControlSet002\services\aswVmm@ErrorControl                                                                                                                                            1
Reg      HKLM\SYSTEM\ControlSet002\services\aswVmm@DisplayName                                                                                                                                             aswVmm
Reg      HKLM\SYSTEM\ControlSet002\services\aswVmm@Description                                                                                                                                             avast! VM Monitor
Reg      HKLM\SYSTEM\ControlSet002\services\aswVmm\Parameters (not active ControlSet)                                                                                                                      
Reg      HKLM\SYSTEM\ControlSet002\services\avast! Antivirus@Type                                                                                                                                          32
Reg      HKLM\SYSTEM\ControlSet002\services\avast! Antivirus@Start                                                                                                                                         2
Reg      HKLM\SYSTEM\ControlSet002\services\avast! Antivirus@ErrorControl                                                                                                                                  1
Reg      HKLM\SYSTEM\ControlSet002\services\avast! Antivirus@ImagePath                                                                                                                                     "C:\Program Files\AVAST Software\Avast\AvastSvc.exe"
Reg      HKLM\SYSTEM\ControlSet002\services\avast! Antivirus@DisplayName                                                                                                                                   avast! Antivirus
Reg      HKLM\SYSTEM\ControlSet002\services\avast! Antivirus@Group                                                                                                                                         ShellSvcGroup
Reg      HKLM\SYSTEM\ControlSet002\services\avast! Antivirus@DependOnService                                                                                                                               aswMonFlt?RpcSS?
Reg      HKLM\SYSTEM\ControlSet002\services\avast! Antivirus@WOW64                                                                                                                                         1
Reg      HKLM\SYSTEM\ControlSet002\services\avast! Antivirus@ObjectName                                                                                                                                    LocalSystem
Reg      HKLM\SYSTEM\ControlSet002\services\avast! Antivirus@ServiceSidType                                                                                                                                1
Reg      HKLM\SYSTEM\ControlSet002\services\avast! Antivirus@Description                                                                                                                                   Manages and implements avast! antivirus services for this computer. This includes the resident protection, the virus chest and the scheduler.
Reg      HKCU\Software\Microsoft\Windows NT\CurrentVersion\AppCompatFlags\Compatibility Assistant\Persisted@C:\Users\Vincent\AppData\Local\Logitech\xae Webcam Software\Logishrd\LU2.0\LogitechUpdate.exe  1

---- EOF - GMER 2.1 ----


=========== dds.txt ===========

DDS (Ver_2012-11-20.01) - NTFS_AMD64 
Internet Explorer: 10.0.9200.16576
Run by Vincent at 21:44:22 on 2013-05-17
Microsoft Windows 7 Home Premium   6.1.7601.1.1252.1.1033.18.5943.4078 [GMT -5:00]
.
AV: avast! Antivirus *Disabled/Updated* {2B2D1395-420B-D5C9-657E-930FE358FC3C}
SP: avast! Antivirus *Disabled/Updated* {904CF271-6431-DA47-5FCE-A87D98DFB681}
SP: Windows Defender *Enabled/Updated* {D68DDC3A-831F-4fae-9E44-DA132C1ACF46}
.
============== Running Processes ===============
.
C:\Windows\system32\lsm.exe
C:\Windows\system32\svchost.exe -k DcomLaunch
C:\Windows\system32\svchost.exe -k RPCSS
C:\Windows\System32\svchost.exe -k LocalServiceNetworkRestricted
C:\Windows\System32\svchost.exe -k LocalSystemNetworkRestricted
C:\Windows\system32\svchost.exe -k LocalService
C:\Windows\system32\svchost.exe -k netsvcs
C:\Program Files\Dell\DellDock\DockLogin.exe
C:\Windows\system32\svchost.exe -k NetworkService
C:\Program Files\AVAST Software\Avast\AvastSvc.exe
C:\Windows\System32\spoolsv.exe
C:\Windows\system32\svchost.exe -k LocalServiceNoNetwork
C:\Program Files (x86)\Common Files\Adobe\ARM\1.0\armsvc.exe
C:\Windows\system32\taskhost.exe
C:\Windows\system32\Dwm.exe
C:\Windows\Explorer.EXE
C:\Program Files (x86)\Common Files\Apple\Mobile Device Support\AppleMobileDeviceService.exe
C:\Program Files\Bonjour\mDNSResponder.exe
C:\Program Files (x86)\Common Files\Portrait Displays\Shared\DTSRVC.exe
C:\Windows\system32\svchost.exe -k LocalServiceAndNoImpersonation
C:\Program Files (x86)\Malwarebytes' Anti-Malware\mbamscheduler.exe
C:\Program Files (x86)\Malwarebytes' Anti-Malware\mbamservice.exe
C:\Program Files (x86)\Common Files\Portrait Displays\Drivers\pdisrvc.exe
C:\Program Files (x86)\Malwarebytes' Anti-Malware\mbamgui.exe
C:\Program Files (x86)\Secunia\PSI\PSIA.exe
C:\Windows\system32\svchost.exe -k imgsvc
C:\Program Files\Common Files\Microsoft Shared\Windows Live\WLIDSVC.EXE
C:\Program Files\Common Files\Microsoft Shared\Windows Live\WLIDSvcM.exe
C:\Windows\system32\svchost.exe -k NetworkServiceNetworkRestricted
C:\Windows\System32\WUDFHost.exe
C:\Program Files (x86)\Secunia\PSI\sua.exe
C:\Program Files\Realtek\Audio\HDA\RAVCpl64.exe
C:\Windows\System32\hkcmd.exe
C:\Windows\System32\igfxpers.exe
C:\Program Files\Microsoft Device Center\itype.exe
C:\Program Files\Microsoft Device Center\ipoint.exe
C:\Program Files (x86)\Secunia\PSI\psi_tray.exe
C:\Program Files\Dell\DellDock\DellDock.exe
C:\Program Files (x86)\Multimedia Card Reader(9106)\ShwiconXP9106.exe
C:\Program Files (x86)\CyberLink\PowerDVD DX\PDVDDXSrv.exe
C:\Program Files (x86)\Roxio\Roxio Burn\RoxioBurnLauncher.exe
C:\Program Files\AVAST Software\Avast\AvastUI.exe
C:\Program Files (x86)\Logitech\LWS\Webcam Software\LWS.exe
C:\Program Files (x86)\Acer Display\eDisplay Management\DTHtml.exe
C:\Program Files (x86)\iTunes\iTunesHelper.exe
C:\Program Files (x86)\AirPort\APAgent.exe
C:\Program Files (x86)\Logitech\LWS\Webcam Software\CameraHelperShell.exe
C:\Program Files (x86)\Common Files\Portrait Displays\Shared\HookManager.exe
C:\Windows\system32\SearchIndexer.exe
C:\Program Files\iPod\bin\iPodService.exe
C:\Program Files (x86)\Common Files\Portrait Displays\Drivers\pdiSdkHelperx64.exe
C:\Program Files (x86)\Portrait Displays\Pivot Pro Plugin\wpctrl.exe
C:\Program Files (x86)\Portrait Displays\Pivot Pro Plugin\floater.exe
C:\Program Files (x86)\Common Files\Logishrd\LQCVFX\COCIManager.exe
C:\Windows\system32\igfxsrvc.exe
C:\Windows\system32\igfxext.exe
C:\Windows\System32\svchost.exe -k secsvcs
C:\Program Files\Windows Media Player\wmpnetwk.exe
C:\Windows\system32\wbem\wmiprvse.exe
C:\Users\Vincent\AppData\Local\Google\Chrome\Application\chrome.exe
C:\Users\Vincent\AppData\Local\Google\Chrome\Application\chrome.exe
C:\Users\Vincent\AppData\Local\Google\Chrome\Application\chrome.exe
C:\Users\Vincent\AppData\Local\Google\Chrome\Application\chrome.exe
C:\Windows\system32\wuauclt.exe
C:\Windows\SysWOW64\ctfmon.exe
C:\Windows\system32\SearchProtocolHost.exe
C:\Windows\system32\SearchFilterHost.exe
C:\Windows\system32\wbem\wmiprvse.exe
C:\Windows\System32\cscript.exe
.
============== Pseudo HJT Report ===============
.
uURLSearchHooks: {2e9331d0-b42b-42b7-9824-a6545d0ceaa6} - &lt;orphaned&gt;
mWinlogon: Userinit = userinit.exe,
BHO: {761497BB-D6F0-462C-B6EB-D4DAF1D92D43} - &lt;orphaned&gt;
BHO: avast! WebRep: {8E5E2654-AD2D-48bf-AC2D-D17F00898D06} - C:\Program Files\AVAST Software\Avast\aswWebRepIE.dll
BHO: Windows Live ID Sign-in Helper: {9030D464-4C02-4ABF-8ECC-5164760863C6} - C:\Program Files (x86)\Common Files\Microsoft Shared\Windows Live\WindowsLiveLogin.dll
BHO: Java(tm) Plug-In 2 SSV Helper: {DBC80044-A445-435b-BC74-9C25C1C588A9} - 
TB: avast! WebRep: {8E5E2654-AD2D-48bf-AC2D-D17F00898D06} - C:\Program Files\AVAST Software\Avast\aswWebRepIE.dll
uRun: [Google Update] "C:\Users\Vincent\AppData\Local\Google\Update\GoogleUpdate.exe" /c
mRun: [ShwiconXP9106] C:\Program Files (x86)\Multimedia Card Reader(9106)\ShwiconXP9106.exe
mRun: [PDVDDXSrv] "C:\Program Files (x86)\CyberLink\PowerDVD DX\PDVDDXSrv.exe"
mRun: [Desktop Disc Tool] "c:\Program Files (x86)\Roxio\Roxio Burn\RoxioBurnLauncher.exe"
mRun: [PivotSoftware] "C:\Program Files (x86)\Portrait Displays\Pivot Pro Plugin\Pivot_startup.exe" -delay=10
mRun: [DT ACR] C:\Program Files (x86)\Common Files\Portrait Displays\Shared\DT_startup.exe -ACR
mRun: [avast] "C:\Program Files\AVAST Software\Avast\avastUI.exe" /nogui
mRun: [APSDaemon] "C:\Program Files (x86)\Common Files\Apple\Apple Application Support\APSDaemon.exe"
mRun: [LWS] C:\Program Files (x86)\Logitech\LWS\Webcam Software\LWS.exe -hide
mRun: [QuickTime Task] "C:\Program Files (x86)\QuickTime\QTTask.exe" -atboottime
mRun: [iTunesHelper] "C:\Program Files (x86)\iTunes\iTunesHelper.exe"
mRun: [AirPort Base Station Agent] "C:\Program Files (x86)\AirPort\APAgent.exe"
mRun: [Adobe ARM] "C:\Program Files (x86)\Common Files\Adobe\ARM\1.0\AdobeARM.exe"
StartupFolder: C:\Users\Vincent\AppData\Roaming\MICROS~1\Windows\STARTM~1\Programs\Startup\DELLDO~1.LNK - C:\Program Files\Dell\DellDock\DellDock.exe
StartupFolder: C:\PROGRA~3\MICROS~1\Windows\STARTM~1\Programs\Startup\SECUNI~1.LNK - C:\Program Files (x86)\Secunia\PSI\psi_tray.exe
uPolicies-Explorer: NoDriveTypeAutoRun = dword:145
IE: {219C3416-8CB2-491a-A3C7-D9FCDDC9D600} - {5F7B1267-94A9-47F5-98DB-E99415F33AEC} - C:\Program Files (x86)\Windows Live\Writer\WriterBrowserExtension.dll
TCP: NameServer = 209.18.47.61 209.18.47.62
TCP: Interfaces\{7B6E9E3E-35B2-4192-9038-6C2AABAE4735} : DHCPNameServer = 209.18.47.61 209.18.47.62
Handler: skype4com - {FFC8B962-9B40-4DFF-9458-1830C7DD7F5D} - C:\Program Files (x86)\Common Files\Skype\Skype4COM.dll
Handler: wlpg - {E43EF6CD-A37A-4A9B-9E6F-83F89B8E6324} - C:\Program Files (x86)\Windows Live\Photo Gallery\AlbumDownloadProtocolHandler.dll
SSODL: WebCheck - &lt;orphaned&gt;
x64-BHO: avast! WebRep: {318A227B-5E9F-45bd-8999-7F8F10CA4CF5} - C:\Program Files\AVAST Software\Avast\aswWebRepIE64.dll
x64-BHO: Java(tm) Plug-In SSV Helper: {761497BB-D6F0-462C-B6EB-D4DAF1D92D43} - C:\Program Files\Java\jre6\bin\ssv.dll
x64-BHO: Windows Live ID Sign-in Helper: {9030D464-4C02-4ABF-8ECC-5164760863C6} - C:\Program Files\Common Files\Microsoft Shared\Windows Live\WindowsLiveLogin.dll
x64-BHO: Java(tm) Plug-In 2 SSV Helper: {DBC80044-A445-435b-BC74-9C25C1C588A9} - C:\Program Files\Java\jre6\bin\jp2ssv.dll
x64-TB: avast! WebRep: {318A227B-5E9F-45bd-8999-7F8F10CA4CF5} - C:\Program Files\AVAST Software\Avast\aswWebRepIE64.dll
x64-Run: [RtHDVCpl] C:\Program Files\Realtek\Audio\HDA\RAVCpl64.exe -s
x64-Run: [IgfxTray] C:\Windows\System32\igfxtray.exe
x64-Run: [HotKeysCmds] C:\Windows\System32\hkcmd.exe
x64-Run: [Persistence] C:\Windows\System32\igfxpers.exe
x64-Run: [IntelliType Pro] "c:\Program Files\Microsoft Device Center\itype.exe"
x64-Run: [IntelliPoint] "c:\Program Files\Microsoft Device Center\ipoint.exe"
x64-DPF: {8AD9C840-044E-11D1-B3E9-00805F499D93} - hxxp://java.sun.com/update/1.6.0/jinstall-1_6_0_45-windows-i586.cab
x64-DPF: {CAFEEFAC-0016-0000-0045-ABCDEFFEDCBA} - hxxp://java.sun.com/update/1.6.0/jinstall-1_6_0_45-windows-i586.cab
x64-DPF: {CAFEEFAC-FFFF-FFFF-FFFF-ABCDEFFEDCBA} - hxxp://java.sun.com/update/1.6.0/jinstall-1_6_0_45-windows-i586.cab
x64-Handler: skype4com - {FFC8B962-9B40-4DFF-9458-1830C7DD7F5D} - &lt;orphaned&gt;
x64-Handler: wlpg - {E43EF6CD-A37A-4A9B-9E6F-83F89B8E6324} - &lt;orphaned&gt;
x64-Notify: igfxcui - igfxdev.dll
x64-SSODL: WebCheck - &lt;orphaned&gt;
.
============= SERVICES / DRIVERS ===============
.
R0 aswRvrt;aswRvrt;C:\Windows\System32\drivers\aswRvrt.sys [2013-4-1 65336]
R0 PxHlpa64;PxHlpa64;C:\Windows\System32\drivers\PxHlpa64.sys [2010-11-30 55280]
R1 aswSnx;aswSnx;C:\Windows\System32\drivers\aswSnx.sys [2011-10-12 1025808]
R1 aswSP;aswSP;C:\Windows\System32\drivers\aswSP.sys [2011-10-12 377920]
R2 aswFsBlk;aswFsBlk;C:\Windows\System32\drivers\aswFsBlk.sys [2011-10-12 33400]
R2 aswMonFlt;aswMonFlt;C:\Windows\System32\drivers\aswMonFlt.sys [2011-10-12 80816]
R2 avast! Antivirus;avast! Antivirus;C:\Program Files\AVAST Software\Avast\AvastSvc.exe [2013-4-1 45248]
R2 DockLoginService;Dock Login Service;C:\Program Files\Dell\DellDock\DockLogin.exe [2009-6-9 155648]
R2 MBAMScheduler;MBAMScheduler;C:\Program Files (x86)\Malwarebytes' Anti-Malware\mbamscheduler.exe [2013-5-17 418376]
R2 MBAMService;MBAMService;C:\Program Files (x86)\Malwarebytes' Anti-Malware\mbamservice.exe [2013-5-17 701512]
R2 PdiService;Portrait Displays SDK Service;C:\Program Files (x86)\Common Files\Portrait Displays\Drivers\pdisrvc.exe [2011-6-25 109168]
R2 Secunia PSI Agent;Secunia PSI Agent;C:\Program Files (x86)\Secunia\PSI\psia.exe [2011-1-10 993848]
R2 Secunia Update Agent;Secunia Update Agent;C:\Program Files (x86)\Secunia\PSI\sua.exe [2011-1-10 399416]
R3 HECIx64;Intel(R) Management Engine Interface;C:\Windows\System32\drivers\HECIx64.sys [2010-11-30 56344]
R3 IntcDAud;Intel(R) Display Audio;C:\Windows\System32\drivers\IntcDAud.sys [2010-11-30 271872]
R3 k57nd60a;Broadcom NetLink (TM) Gigabit Ethernet - NDIS 6.0;C:\Windows\System32\drivers\k57nd60a.sys [2010-11-30 321064]
R3 MBAMProtector;MBAMProtector;C:\Windows\System32\drivers\mbam.sys [2013-5-17 25928]
R3 PSI;PSI;C:\Windows\System32\drivers\psi_mf.sys [2010-9-1 17976]
S2 clr_optimization_v4.0.30319_32;Microsoft .NET Framework NGEN v4.0.30319_X86;C:\Windows\Microsoft.NET\Framework\v4.0.30319\mscorsvw.exe [2010-3-18 130384]
S2 clr_optimization_v4.0.30319_64;Microsoft .NET Framework NGEN v4.0.30319_X64;C:\Windows\Microsoft.NET\Framework64\v4.0.30319\mscorsvw.exe [2010-3-18 138576]
S2 SkypeUpdate;Skype Updater;C:\Program Files (x86)\Skype\Updater\Updater.exe [2013-4-19 161384]
S3 aswVmm;aswVmm;C:\Windows\System32\drivers\aswVmm.sys [2013-4-1 178624]
S3 Impcd;Impcd;C:\Windows\System32\drivers\Impcd.sys [2010-11-30 158976]
S3 LVRS64;Logitech RightSound Filter Driver;C:\Windows\System32\drivers\lvrs64.sys [2012-1-18 351136]
S3 TsUsbFlt;TsUsbFlt;C:\Windows\System32\drivers\TsUsbFlt.sys [2011-7-1 59392]
S3 USBAAPL64;Apple Mobile USB Driver;C:\Windows\System32\drivers\usbaapl64.sys [2012-7-9 52736]
S3 WatAdminSvc;Windows Activation Technologies Service;C:\Windows\System32\Wat\WatAdminSvc.exe [2010-12-26 1255736]
.
=============== Created Last 30 ================
.
2013-05-18 01:41:36 --------    d-----w-    C:\Users\Vincent\AppData\Roaming\Malwarebytes
2013-05-18 01:41:27 --------    d-----w-    C:\ProgramData\Malwarebytes
2013-05-18 01:41:26 25928   ----a-w-    C:\Windows\System32\drivers\mbam.sys
2013-05-18 01:41:26 --------    d-----w-    C:\Program Files (x86)\Malwarebytes' Anti-Malware
2013-05-18 01:41:05 --------    d-----w-    C:\Users\Vincent\AppData\Local\Programs
2013-05-17 23:16:26 --------    d-----w-    C:\Program Files (x86)\Free Window Registry Repair
2013-05-17 23:15:02 388096  ----a-r-    C:\Users\Vincent\AppData\Roaming\Microsoft\Installer\{45A66726-69BC-466B-A7A4-12FCBA4883D7}\HiJackThis.exe
2013-05-17 23:15:01 --------    d-----w-    C:\Program Files (x86)\Trend Micro
2013-05-17 19:12:14 --------    d-----r-    C:\Program Files (x86)\Skype
2013-05-17 16:02:11 9460464 ----a-w-    C:\ProgramData\Microsoft\Windows Defender\Definition Updates\{F70E6934-0AF8-479E-A557-6A665C951823}\mpengine.dll
2013-05-15 08:00:59 1767424 ----a-w-    C:\Windows\SysWow64\wininet.dll
2013-05-15 08:00:57 2242048 ----a-w-    C:\Windows\System32\wininet.dll
2013-05-07 08:03:22 9728    ---ha-w-    C:\Windows\SysWow64\api-ms-win-downlevel-shlwapi-l1-1-0.dll
2013-05-04 21:31:56 737072  ----a-w-    C:\ProgramData\Microsoft\eHome\Packages\SportsV2\SportsTemplateCore\Microsoft.MediaCenter.Sports.UI.dll
2013-05-04 21:31:36 2876528 ----a-w-    C:\ProgramData\Microsoft\eHome\Packages\MCEClientUX\UpdateableMarkup\markup.dll
2013-05-04 21:31:08 42776   ----a-w-    C:\ProgramData\Microsoft\eHome\Packages\MCEClientUX\dSM\StartResources.dll
2013-05-04 21:30:59 539984  ----a-w-    C:\ProgramData\Microsoft\eHome\Packages\MCESpotlight\MCESpotlight\SpotlightResources.dll
2013-05-02 00:35:14 --------    d-----w-    C:\Users\Vincent\AppData\Roaming\.minecraft
2013-04-28 00:10:28 --------    d-----w-    C:\Program Files (x86)\AirPort
2013-04-23 22:06:10 1656680 ----a-w-    C:\Windows\System32\drivers\ntfs.sys
.
==================== Find3M  ====================
.
2013-05-15 05:05:10 71048   ----a-w-    C:\Windows\SysWow64\FlashPlayerCPLApp.cpl
2013-05-15 05:05:10 692104  ----a-w-    C:\Windows\SysWow64\FlashPlayerApp.exe
2013-05-07 08:03:22 9728    ---ha-w-    C:\Windows\System32\api-ms-win-downlevel-shlwapi-l1-1-0.dll
2013-05-05 22:36:15 545200  ----a-w-    C:\Windows\System32\npdeployJava1.dll
2013-05-05 22:36:15 526768  ----a-w-    C:\Windows\System32\deployJava1.dll
2013-05-02 07:06:08 278800  ------w-    C:\Windows\System32\MpSigStub.exe
2013-04-13 05:49:23 135168  ----a-w-    C:\Windows\apppatch\AppPatch64\AcXtrnal.dll
2013-04-13 05:49:19 350208  ----a-w-    C:\Windows\apppatch\AppPatch64\AcLayers.dll
2013-04-13 05:49:19 308736  ----a-w-    C:\Windows\apppatch\AppPatch64\AcGenral.dll
2013-04-13 05:49:19 111104  ----a-w-    C:\Windows\apppatch\AppPatch64\acspecfc.dll
2013-04-13 04:45:16 474624  ----a-w-    C:\Windows\apppatch\AcSpecfc.dll
2013-04-13 04:45:15 2176512 ----a-w-    C:\Windows\apppatch\AcGenral.dll
2013-04-10 06:01:54 265064  ----a-w-    C:\Windows\System32\drivers\dxgmms1.sys
2013-04-10 06:01:53 983400  ----a-w-    C:\Windows\System32\drivers\dxgkrnl.sys
2013-04-10 03:30:50 3153920 ----a-w-    C:\Windows\System32\win32k.sys
2013-04-08 22:00:05 796672  ----a-w-    C:\Windows\GPInstall.exe
2013-04-05 06:50:36 3958784 ----a-w-    C:\Windows\System32\jscript9.dll
2013-04-05 06:50:31 67072   ----a-w-    C:\Windows\System32\iesetup.dll
2013-04-05 06:50:31 136704  ----a-w-    C:\Windows\System32\iesysprep.dll
2013-04-05 05:26:26 2877440 ----a-w-    C:\Windows\SysWow64\jscript9.dll
2013-04-05 05:26:21 61440   ----a-w-    C:\Windows\SysWow64\iesetup.dll
2013-04-05 05:26:21 109056  ----a-w-    C:\Windows\SysWow64\iesysprep.dll
2013-04-05 04:43:00 2706432 ----a-w-    C:\Windows\System32\mshtml.tlb
2013-04-05 04:29:45 2706432 ----a-w-    C:\Windows\SysWow64\mshtml.tlb
2013-04-05 03:51:11 89600   ----a-w-    C:\Windows\System32\RegisterIEPKEYs.exe
2013-04-05 03:38:25 71680   ----a-w-    C:\Windows\SysWow64\RegisterIEPKEYs.exe
2013-03-19 06:04:06 5550424 ----a-w-    C:\Windows\System32\ntoskrnl.exe
2013-03-19 05:53:58 48640   ----a-w-    C:\Windows\System32\wwanprotdim.dll
2013-03-19 05:53:58 230400  ----a-w-    C:\Windows\System32\wwansvc.dll
2013-03-19 05:46:56 43520   ----a-w-    C:\Windows\System32\csrsrv.dll
2013-03-19 05:04:13 3968856 ----a-w-    C:\Windows\SysWow64\ntkrnlpa.exe
2013-03-19 05:04:10 3913560 ----a-w-    C:\Windows\SysWow64\ntoskrnl.exe
2013-03-19 04:47:50 6656    ----a-w-    C:\Windows\SysWow64\apisetschema.dll
2013-03-19 03:06:33 112640  ----a-w-    C:\Windows\System32\smss.exe
2013-03-06 22:33:21 70992   ----a-w-    C:\Windows\System32\drivers\aswRdr2.sys
2013-03-06 22:33:21 65336   ----a-w-    C:\Windows\System32\drivers\aswRvrt.sys
2013-03-06 22:33:21 178624  ----a-w-    C:\Windows\System32\drivers\aswVmm.sys
2013-03-06 22:33:21 1025808 ----a-w-    C:\Windows\System32\drivers\aswSnx.sys
2013-03-06 22:33:20 80816   ----a-w-    C:\Windows\System32\drivers\aswMonFlt.sys
2013-03-06 22:32:51 41664   ----a-w-    C:\Windows\avastSS.scr
2013-03-06 09:31:21 477616  ----a-w-    C:\Windows\SysWow64\npdeployJava1.dll
2013-03-06 09:31:21 473520  ----a-w-    C:\Windows\SysWow64\deployJava1.dll
2013-02-27 06:02:44 111448  ----a-w-    C:\Windows\System32\consent.exe
2013-02-27 05:48:00 1930752 ----a-w-    C:\Windows\System32\authui.dll
2013-02-27 05:47:10 70144   ----a-w-    C:\Windows\System32\appinfo.dll
2013-02-27 04:49:24 1796096 ----a-w-    C:\Windows\SysWow64\authui.dll
.
============= FINISH: 21:44:46.59 ===============



======= attach.txt ========

.
UNLESS SPECIFICALLY INSTRUCTED, DO NOT POST THIS LOG.
IF REQUESTED, ZIP IT UP &amp; ATTACH IT
.
DDS (Ver_2012-11-20.01)
.
Microsoft Windows 7 Home Premium 
Boot Device: \Device\HarddiskVolume2
Install Date: 12/12/2010 12:52:02 PM
System Uptime: 5/17/2013 9:35:16 PM (0 hours ago)
.
Motherboard: Dell Inc. |  | 0C2KJT
Processor: Intel(R) Core(TM) i3 CPU         550  @ 3.20GHz | CPU 1 | 3200/133mhz
.
==== Disk Partitions =========================
.
C: is FIXED (NTFS) - 923 GiB total, 865.713 GiB free.
D: is CDROM ()
E: is Removable
F: is Removable
G: is Removable
H: is Removable
.
==== Disabled Device Manager Items =============
.
==== System Restore Points ===================
.
RP527: 5/10/2013 3:00:11 AM - Windows Update
RP528: 5/11/2013 3:00:11 AM - Windows Update
RP529: 5/12/2013 3:00:16 AM - Windows Update
RP530: 5/13/2013 3:00:11 AM - Windows Update
RP531: 5/14/2013 3:00:11 AM - Windows Update
RP532: 5/15/2013 3:00:13 AM - Windows Update
RP533: 5/16/2013 3:00:12 AM - Windows Update
RP534: 5/17/2013 3:00:11 AM - Windows Update
RP535: 5/17/2013 2:20:56 PM - Windows Update
RP536: 5/17/2013 3:23:57 PM - Windows Update
RP537: 5/17/2013 3:48:22 PM - Windows Update
RP538: 5/17/2013 5:42:17 PM - Windows Update
RP539: 5/17/2013 6:14:45 PM - Installed HiJackThis
RP540: 5/17/2013 6:38:56 PM - Removed TheSkyX First Light Edition.
RP541: 5/17/2013 6:39:54 PM - Removed TONKA Search &amp; Rescue 2
.
==== Installed Programs ======================
.
4 Elements
Acer eDisplay Management
Adobe AIR
Adobe Flash Player 11 ActiveX
Adobe Flash Player 11 Plugin
Adobe Reader XI (11.0.03)
Adobe Shockwave Player 12.0
AirPort
Apple Application Support
Apple Mobile Device Support
Apple Software Update
avast! Free Antivirus
Bonjour
CameraHelperMsi
Chicken Invaders 3
Compatibility Pack for the 2007 Office system
D3DX10
Dell Dock
Dell Edoc Viewer
Dell Support Center
Dora's Big Birthday Adventure
Dora Saves the Crystal Kingdom!
erLT
Google Chrome
HiJackThis
Intel(R) Graphics Media Accelerator Driver
iTunes
Java(TM) 6 Update 45 (64-bit)
Junk Mail filter update
Kidzui
KONICA MINOLTA magicolor 1600W
Logitech Vid HD
Logitech Webcam Software
LWS Facebook
LWS Gallery
LWS Help_main
LWS Launcher
LWS Motion Detection
LWS Pictures And Video
LWS Twitter
LWS Video Mask Maker
LWS VideoEffects
LWS Webcam Software
LWS WLM Plugin
LWS YouTube Plugin
Malwarebytes Anti-Malware version 1.75.0.1300
Microsoft .NET Framework 4 Client Profile
Microsoft Application Error Reporting
Microsoft Mouse and Keyboard Center
Microsoft Office PowerPoint Viewer 2007 (English)
Microsoft Silverlight
Microsoft SQL Server 2005 Compact Edition [ENU]
Microsoft Virtual PC 2007 SP1
Microsoft Visual C++ 2008 Redistributable - x86 9.0.30729.4148
Microsoft Visual C++ 2008 Redistributable - x86 9.0.30729.6161
Microsoft Visual C++ 2010  x86 Redistributable - 10.0.30319
Microsoft Works
MSVCRT
MSVCRT_amd64
Multimedia Card Reader
Panel Utility
Pivot Pro Plugin
PowerDVD DX
QuickTime
Realtek High Definition Audio Driver
ROBLOX Player for Vincent
ROBLOX Studio 2013 for Vincent
Roxio Burn
Safari
SDK
Secunia PSI (2.0.0.3001)
Security Update for CAPICOM (KB931906)
Security Update for Microsoft .NET Framework 4 Client Profile (KB2160841)
Security Update for Microsoft .NET Framework 4 Client Profile (KB2446708)
Security Update for Microsoft .NET Framework 4 Client Profile (KB2478663)
Security Update for Microsoft .NET Framework 4 Client Profile (KB2518870)
Security Update for Microsoft .NET Framework 4 Client Profile (KB2539636)
Security Update for Microsoft .NET Framework 4 Client Profile (KB2572078)
Security Update for Microsoft .NET Framework 4 Client Profile (KB2604121)
Security Update for Microsoft .NET Framework 4 Client Profile (KB2633870)
Security Update for Microsoft .NET Framework 4 Client Profile (KB2656351)
Security Update for Microsoft .NET Framework 4 Client Profile (KB2656368)
Security Update for Microsoft .NET Framework 4 Client Profile (KB2656368v2)
Security Update for Microsoft .NET Framework 4 Client Profile (KB2656405)
Security Update for Microsoft .NET Framework 4 Client Profile (KB2686827)
Security Update for Microsoft .NET Framework 4 Client Profile (KB2729449)
Security Update for Microsoft .NET Framework 4 Client Profile (KB2737019)
Security Update for Microsoft .NET Framework 4 Client Profile (KB2742595)
Security Update for Microsoft .NET Framework 4 Client Profile (KB2789642)
Security Update for Microsoft .NET Framework 4 Client Profile (KB2804576)
Skype™ 6.3
SpongeBob and the Clash of Triton
swMSM
Unreal Tournament
Update for Microsoft .NET Framework 4 Client Profile (KB2468871)
Update for Microsoft .NET Framework 4 Client Profile (KB2473228)
Update for Microsoft .NET Framework 4 Client Profile (KB2533523)
Update for Microsoft .NET Framework 4 Client Profile (KB2600217)
Windows 7 Upgrade Advisor
Windows Live Communications Platform
Windows Live Essentials
Windows Live ID Sign-in Assistant
Windows Live Installer
Windows Live Language Selector
Windows Live Mail
Windows Live Messenger
Windows Live MIME IFilter
Windows Live Movie Maker
Windows Live Photo Common
Windows Live Photo Gallery
Windows Live PIMT Platform
Windows Live SOXE
Windows Live SOXE Definitions
Windows Live Sync
Windows Live UX Platform
Windows Live UX Platform Language Pack
Windows Live Writer
Windows Live Writer Resources
.
==== Event Viewer Messages From Past Week ========
.
5/17/2013 9:35:37 PM, Error: Microsoft-Windows-WER-SystemErrorReporting [1001]  - The computer has rebooted from a bugcheck.  The bugcheck was: 0x0000009f (0x0000000000000004, 0x0000000000000258, 0xfffffa800543f040, 0xfffff80000b9c510). A dump was saved in: C:\Windows\MEMORY.DMP. Report Id: 051713-17643-01.
5/17/2013 5:53:18 PM, Error: Service Control Manager [7001]  - The Computer Browser service depends on the Server service which failed to start because of the following error:  The dependency service or group failed to start.
5/17/2013 5:51:26 PM, Error: Microsoft-Windows-DistributedCOM [10005]  - DCOM got error "1084" attempting to start the service WSearch with arguments "" in order to run the server: {9E175B6D-F52A-11D8-B9A5-505054503030}
5/17/2013 5:51:26 PM, Error: Microsoft-Windows-DistributedCOM [10005]  - DCOM got error "1084" attempting to start the service WSearch with arguments "" in order to run the server: {7D096C5F-AC08-4F1F-BEB7-5C22C517CE39}
5/17/2013 5:51:24 PM, Error: Microsoft-Windows-DistributedCOM [10005]  - DCOM got error "1084" attempting to start the service EventSystem with arguments "" in order to run the server: {1BE1F766-5536-11D1-B726-00C04FB926AF}
5/17/2013 5:51:17 PM, Error: Microsoft-Windows-DistributedCOM [10005]  - DCOM got error "1084" attempting to start the service ShellHWDetection with arguments "" in order to run the server: {DD522ACC-F821-461A-A407-50B198B896DC}
5/17/2013 5:51:12 PM, Error: Service Control Manager [7026]  - The following boot-start or system-start driver(s) failed to load:  aswSnx aswSP aswTdi discache SASDIFSV SASKUTIL spldr vmm Wanarpv6
5/17/2013 5:44:18 PM, Error: Microsoft-Windows-WindowsUpdateClient [20]  - Installation Failure: Windows failed to install the following update with error 0x8024200d: Security Update for Windows 7 for x64-based Systems (KB2667402).
5/17/2013 4:29:27 PM, Error: Service Control Manager [7001]  - The Network List Service service depends on the Network Location Awareness service which failed to start because of the following error:  The dependency service or group failed to start.
5/17/2013 4:28:02 PM, Error: Microsoft-Windows-DistributedCOM [10005]  - DCOM got error "1068" attempting to start the service netprofm with arguments "" in order to run the server: {A47979D2-C419-11D9-A5B4-001185AD2B89}
5/17/2013 4:28:02 PM, Error: Microsoft-Windows-DistributedCOM [10005]  - DCOM got error "1068" attempting to start the service netman with arguments "" in order to run the server: {BA126AD1-2166-11D1-B1D0-00805FC1270E}
5/17/2013 4:27:49 PM, Error: Service Control Manager [7026]  - The following boot-start or system-start driver(s) failed to load:  AFD aswRdr aswSnx aswSP aswTdi DfsC discache NetBIOS NetBT nsiproxy Psched rdbss SASDIFSV SASKUTIL spldr tdx vmm Wanarpv6 WfpLwf
5/17/2013 4:27:49 PM, Error: Service Control Manager [7001]  - The SMB MiniRedirector Wrapper and Engine service depends on the Redirected Buffering Sub Sysytem service which failed to start because of the following error:  A device attached to the system is not functioning.
5/17/2013 4:27:49 PM, Error: Service Control Manager [7001]  - The SMB 2.0 MiniRedirector service depends on the SMB MiniRedirector Wrapper and Engine service which failed to start because of the following error:  The dependency service or group failed to start.
5/17/2013 4:27:49 PM, Error: Service Control Manager [7001]  - The SMB 1.x MiniRedirector service depends on the SMB MiniRedirector Wrapper and Engine service which failed to start because of the following error:  The dependency service or group failed to start.
5/17/2013 4:27:49 PM, Error: Service Control Manager [7001]  - The Network Location Awareness service depends on the Network Store Interface Service service which failed to start because of the following error:  The dependency service or group failed to start.
5/17/2013 4:27:49 PM, Error: Service Control Manager [7001]  - The IP Helper service depends on the Network Store Interface Service service which failed to start because of the following error:  The dependency service or group failed to start.
5/17/2013 4:27:48 PM, Error: Service Control Manager [7001]  - The Workstation service depends on the Network Store Interface Service service which failed to start because of the following error:  The dependency service or group failed to start.
5/17/2013 4:27:48 PM, Error: Service Control Manager [7001]  - The TCP/IP NetBIOS Helper service depends on the Ancillary Function Driver for Winsock service which failed to start because of the following error:  A device attached to the system is not functioning.
5/17/2013 4:27:48 PM, Error: Service Control Manager [7001]  - The Network Store Interface Service service depends on the NSI proxy service driver. service which failed to start because of the following error:  A device attached to the system is not functioning.
5/17/2013 4:27:48 PM, Error: Service Control Manager [7001]  - The DNS Client service depends on the NetIO Legacy TDI Support Driver service which failed to start because of the following error:  A device attached to the system is not functioning.
5/17/2013 4:27:48 PM, Error: Service Control Manager [7001]  - The DHCP Client service depends on the Ancillary Function Driver for Winsock service which failed to start because of the following error:  A device attached to the system is not functioning.
.
==== End Of File ==========================='
</code></pre>
 ]]></content:encoded>
			<category domain="http://www.daniweb.com/hardware-and-software/microsoft-windows/viruses-spyware-and-other-nasties/64">Viruses, Spyware and other Nasties</category>
			<dc:creator>slwf</dc:creator>
			<guid isPermaLink="true">http://www.daniweb.com/hardware-and-software/microsoft-windows/viruses-spyware-and-other-nasties/threads/454849/vundo-and-maybe-other-issues</guid>
		</item>
				<item>
			<title>help me on onsubmit and onclick</title>
			<link>http://www.daniweb.com/web-development/php/threads/454848/help-me-on-onsubmit-and-onclick</link>
			<pubDate>Sat, 18 May 2013 00:52:37 +0000</pubDate>
			<description>how to make javascript validation onsubmit go first before onclick submit button &lt;form name=&quot;daftar&quot; method=&quot;post&quot; action=&quot;daftar.php&quot; onsubmit=&quot;return checkscript()&quot;&gt; &lt;input type=&quot;submit&quot; name=&quot;Daftar&quot; value=&quot;Daftar&quot; id=&quot;submit&quot; onClick=&quot;return tq()&quot;/&gt; and my js: function checkscript() { if (document.daftar.terms.checked == false) { alert('Sila pastikan anda telah check ruangan persetujuan, untuk menandakan anda setuju dengan syarat-syarat kami.'); ...</description>
			<content:encoded><![CDATA[ <p>how to make javascript validation onsubmit go first before onclick submit button</p>

<p>&lt;form name="daftar" method="post" action="daftar.php" onsubmit="return checkscript()"&gt;</p>

<p>&lt;input type="submit" name="Daftar" value="Daftar" id="submit"  onClick="return tq()"/&gt;</p>

<p>and my js:</p>

<pre><code>function checkscript() {
if (document.daftar.terms.checked == false)
{ alert('Sila pastikan anda telah check ruangan persetujuan, untuk menandakan anda setuju dengan syarat-syarat kami.');
daftar.terms.focus();
return false ;
}
else return true;
}

function tq()
{
alert("Terima Kasih!");
}
</code></pre>
 ]]></content:encoded>
			<category domain="http://www.daniweb.com/web-development/php/17">PHP</category>
			<dc:creator>dina85</dc:creator>
			<guid isPermaLink="true">http://www.daniweb.com/web-development/php/threads/454848/help-me-on-onsubmit-and-onclick</guid>
		</item>
				<item>
			<title>c# , sql how to check if bool value is &quot;true&quot; for a choosen user.</title>
			<link>http://www.daniweb.com/software-development/csharp/threads/454847/c-sql-how-to-check-if-bool-value-is-true-for-a-choosen-user</link>
			<pubDate>Sat, 18 May 2013 00:51:14 +0000</pubDate>
			<description>Hello all, I was hoping You could help me with this. The code below is for the login screen in my project. the data is selected from UsersList (UserID,FirstName,LastName,UserDOB,UserUsername,UserPassword,UserAdmin) What way can I modify the &quot;cmd&quot; command to check if the value for UserAdmin is true and display a message ...</description>
			<content:encoded><![CDATA[ <p>Hello all, I was hoping You could help me with this. The code below is for the login screen in my project.<br />
the data is selected from UsersList (UserID,FirstName,LastName,UserDOB,UserUsername,UserPassword,UserAdmin)<br />
What way can I modify the "cmd" command to check if the value for UserAdmin is true and display a message box saying "admin" if the value is true ?</p>

<pre><code class="language-cs">namespace Transport_Management_System_Tools
{
    public partial class LoginPage : Form
    {
        public LoginPage()
        {
            InitializeComponent();
        }
        private void LoginPage_Load(object sender, EventArgs e)
        {

        }
        private void btnLogin_Click(object sender, EventArgs e)
        {
            OleDbDataAdapter dataAdapter;
            sqlConnector Connector = new sqlConnector();
            OleDbConnection connection;
            connection = new OleDbConnection(@"Provider=Microsoft.ACE.OLEDB.12.0;Data Source=Database.accdb;Persist Security Info=False");
            connection.Open();
            DataTable dataTable = new DataTable();
            DataTable adminTable = new DataTable();
            OleDbCommand cmd = new OleDbCommand("SELECT UserUsername,UserPassword,UserAdmin FROM UsersList WHERE UserUsername='" + txtboxLogin.Text + "'AND UserPassword='" + txtboxPassword.Text + "'", connection);
            dataAdapter = new OleDbDataAdapter(cmd);
            dataAdapter.Fill(dataTable);

            if (dataTable.Rows.Count &gt; 0)
            {
                this.Hide();
                Main main = new Main();
                main.Show();
            }
            else
            {
                MessageBox.Show("Incorrect Username or Password");
            }
        }



    }
}
</code></pre>
 ]]></content:encoded>
			<category domain="http://www.daniweb.com/software-development/csharp/61">C#</category>
			<dc:creator>Haquo</dc:creator>
			<guid isPermaLink="true">http://www.daniweb.com/software-development/csharp/threads/454847/c-sql-how-to-check-if-bool-value-is-true-for-a-choosen-user</guid>
		</item>
				<item>
			<title>class array</title>
			<link>http://www.daniweb.com/software-development/cpp/threads/454846/class-array</link>
			<pubDate>Sat, 18 May 2013 00:33:07 +0000</pubDate>
			<description>Sorry guys, this is a huge chunk of code that looks inefficient as f***. This was for a class I had last spring, so I'm not rying to cheat I just want an answer. So here's the assignment, Develop an object-oriented program to produce a grade report and an error ...</description>
			<content:encoded><![CDATA[ <p>Sorry guys, this is a huge chunk of code that looks inefficient as f***. This was for a class I had last spring, so I'm not rying to cheat I just want an answer. So here's the assignment,</p>

<p>Develop an object-oriented program to produce a grade report and an error report for a history teacher of a course named “HIST220”. Your task is to produce the reports with the following information in mind:<br />
Assume that the data file for this program contains no more than 100 records. Each record consists of five exam scores in the range of 0-100.<br />
Input record format:<br />
Student-ID-Number, Exam1-Score, Exam2-Score, Exam3-Score, Exam4-Score, Exam5-Score<br />
Compute the average and the letter grade for each student. The instructor has decided to drop the lowest of the five scores. Compute also the average and the letter grade based on the top four exam scores. Include these four pieces of information and the other six pieces of information from data file in your report (a total of ten values).<br />
Use the following grading scales when computing the letter grades (A = 90%, B = 80%, C = 70%, D = 60%, F = 0%).<br />
Data Validation: If the id or any of the scores is not valid then send that record to an error file. The error file should contain only the bad/invalid records with an appropriate main report heading and column. The records in the error file should be numbered (1, 2, 3 and so on).<br />
Each detail line in the main report should include the following items (all 10 fields on one line).<br />
Student-ID-Number, Exam1-Score*, Exam2-Score*, Exam3-Score*, Exam4-Score*, Exam5-Score*, Average Of 5 Scores, Letter grade, Average Of Top 4 Scores, New Letter Grade<br />
Each detail line should contain only one asterisk (*). It should be placed next to the smallest score for a give student.<br />
When defining the class for this program, make sure to have, among other member functions, a member function for each of the following tasks:<br />
Read in a record<br />
Print a record<br />
Compute the average (based on five scores)<br />
Compute the new average (based on the top four scores)<br />
Compute the letter grade<br />
A setter to assign six values (input record) to the corresponding member variables</p>

<p>Input record format:<br />
Student-ID-Number, Exam1-Score, Exam2-Score, Exam3-Score, Exam4-Score, Exam5-Score<br />
Output record format:<br />
Student-ID-Number, Exam1-Score*, Exam2-Score*, Exam3-Score*, Exam4-Score*, Exam5-Score*, Average Of 5 Scores, Letter grade, Average Of Top 4 Scores, New Letter Grade<br />
Store the following student records in a file and later read the data from it.</p>

<pre><code class="language-cpp">222300      90  90  80  90  90
333400      100 88  87  93  90
444444      200 90  90  90  85
555600      80  80  80  80  72
666666      90  90  -90 90  92
666700      77  77  77  66  77
777800      70  68  66  64  62
8888888     88  99  87  66  90
888900      80  0   0   60  70
</code></pre>

<p>I wanted to use a class array, and then an array for grades. I asked my teacher for help, but he just kept saying "what do you think you should do". I couldn't figure out how to create a default construtor for the class array, or the grade array. I asked my teacher again and again he said "what do you think you should do" I got angry and said forget it, if he's not gonna help I'm not gonna stress over it. here is the code I came up with because it's all I know how to do. So here's my code</p>

<pre><code class="language-cpp">//Project: Program3

    //Date: 5/20/2013

    //This program takes the student id and five exam scores from a file. It then
    //finds the average grade of the five exam scores. Then it drops the lowest
    //score and recalculates the average of four exam scores.


    #include &lt;iostream&gt;
    #include &lt;fstream&gt;
    #include &lt;iomanip&gt;
    using namespace std;

    int const NUMBEROFSUDENTS = 100;

    class student
    {

      public:
        void setGrades(int studentId[], double exam1[], double exam2[], double exam3[], double exam4[], double exam5[], int count);
        int getGrades(int studentId[], double exam1[], double exam2[], double exam3[], double exam4[], double exam5[]);
        void error(int studentId[], double exam1[], double exam2[], double exam3[], double exam4[], double exam5[], int count);
        void average(int studentId[], double exam1[], double exam2[], double exam3[], double exam4[], double exam5[],
         double total[], int count);
        void newAverage(double exam1[], double exam2[], double exam3[], double exam4[], double exam5[], int newAverage[], int count);
        void grade(int studentId[], int newAverage[], char grade[], int count);
        void print(int studentId[], double exam1[], double exam2[], double exam3[], double exam4[], double exam5[],
          double total[], int newAverage[], char grade[], int count);
        student(int studentId[], double exam1[], double exam2[], double exam3[], double exam4[], double exam5[], int count);
        student();

      private:
        int id[NUMBEROFSUDENTS];
        double first[NUMBEROFSUDENTS];
        double second[NUMBEROFSUDENTS];
        double third[NUMBEROFSUDENTS];
        double fourth[NUMBEROFSUDENTS];
        double fifth[NUMBEROFSUDENTS];

    };



    int main()
    {

      int studentId[NUMBEROFSUDENTS];
      double exam1[NUMBEROFSUDENTS];
      double exam2[NUMBEROFSUDENTS];
      double exam3[NUMBEROFSUDENTS];
      double exam4[NUMBEROFSUDENTS];
      double exam5[NUMBEROFSUDENTS];
      double total[NUMBEROFSUDENTS];
      int newAverage[NUMBEROFSUDENTS];
      char grade[NUMBEROFSUDENTS];
      int count = 0;

      student firstStudent;
      firstStudent.setGrades(studentId, exam1, exam2, exam3, exam4, exam5, count);
      count = firstStudent.getGrades(studentId, exam1, exam2, exam3, exam4, exam5);
      firstStudent.error(studentId, exam1, exam2, exam3, exam4, exam5, count);
      firstStudent.average(studentId, exam1, exam2, exam3, exam4, exam5, total, count);
      firstStudent.newAverage(exam1, exam2, exam3, exam4, exam5, newAverage, count);
      firstStudent.grade(studentId, newAverage, grade, count);
      firstStudent.print(studentId, exam1, exam2, exam3, exam4, exam5, total, newAverage, grade, count);


    }
    //default constructor
    student::student()
    {
      for (int i = 0; i &lt;= 9; i++)
      {
        id[i] = 0;
        first[i] = 0;
        second[i] = 0;
        third[i] = 0;
        fourth[i] = 0;
        fifth[i] = 0;
      }
    }

    student::student(int studentId[], double exam1[], double exam2[], double exam3[], double exam4[], double exam5[], int count)
    {

      setGrades(studentId, exam1, exam2, exam3, exam4, exam5, count);

    }
    //gets grade from fie and puts student id and exams into arrays
    int student::getGrades(int studentId[], double exam1[], double exam2[], double exam3[], double exam4[], double exam5[])
    {
      ifstream inFile;
      inFile.open("student.txt");

      int count = 0;

        while (inFile.peek() !=EOF)
        {
          inFile &gt;&gt; studentId[count] &gt;&gt; exam1[count] &gt;&gt; exam2[count] &gt;&gt; exam3[count] &gt;&gt; exam4[count] &gt;&gt; exam5[count];
          count++;

        }

      inFile.close();

      return count;

    }
    //looks through student id to see if number are within range
    //looks at exam scores and check if they are between 0 and 100
    void student::error(int studentId[], double exam1[], double exam2[], double exam3[], double exam4[], double exam5[], int count)
    {
      ofstream outFile;
      outFile.open("error.txt");

      int idError[NUMBEROFSUDENTS];
      int examError[NUMBEROFSUDENTS];

      for (int i = 0; i &lt;=count; i++)
      {
        if (0 &gt; studentId[i] || studentId[i] &gt; 1000000)
        {
          idError[i] = studentId[i];
          outFile &lt;&lt; "student id error: " &lt;&lt; idError[i] &lt;&lt; endl;
        }

        if (0 &gt; exam1[i] || exam1[i] &gt; 100)
        {
          examError[i] = exam1[i];
          outFile &lt;&lt; "exam error: " &lt;&lt; examError[i] &lt;&lt; endl;
        }

        if (0 &gt; exam2[i] || exam2[i] &gt; 100)
        {
          examError[i] = exam2[i];
          outFile &lt;&lt; "exam error: " &lt;&lt; examError[i] &lt;&lt; endl;
        }

        if (0 &gt; exam3[i] || exam3[i] &gt; 100)
        {
          examError[i] = exam1[i];
          outFile &lt;&lt; "exam error: " &lt;&lt; examError[i] &lt;&lt; endl;
        }

        if (0 &gt; exam4[i] || exam4[i] &gt; 100)
        {
          examError[i] = exam1[i];
          outFile &lt;&lt; "exam error: " &lt;&lt; examError[i] &lt;&lt; endl;
        }

        if (0 &gt; exam5[i] || exam5[i] &gt; 100)
        {
          examError[i] = exam1[i];
          outFile &lt;&lt; "exam error: " &lt;&lt; examError[i] &lt;&lt; endl;
        }
      }
        outFile.close();
    }
    //sets student ids and exams
    void student::setGrades(int studentId[], double exam1[], double exam2[], double exam3[], double exam4[], double exam5[], int count)
    {

      for (int i = 1; i &lt; count; i++)
      {
      studentId[i] = id[i];
      exam1[i] = first[i];
      exam2[i] = second[i];
      exam3[i] = third[i];
      exam4[i] = fourth[i];
      exam5[i] = fifth[i];

      }
    }
    //calculates average of five exam scores
    void student::average(int studentId[], double exam1[], double exam2[], double exam3[], double exam4[], double exam5[],
     double total[], int count)
    {

      for (int i = 1; i &lt; count; i++)
      {
        total[i] = exam1[i] + exam2[i] + exam3[i] + exam4[i] + exam5[i];
      }

    }
    //calculates average of new exam score after lowest grade has been dropped
    void student::newAverage(double exam1[], double exam2[], double exam3[], double exam4[], double exam5[],
      int newAverage[], int count)
    {
      double lowest[9];
      double total[9];

      for (int i = 1; i &lt; count; i++)
      {

          lowest[i] = exam1[i];
          if(exam1[i] &lt; lowest[i])
              lowest[i] = exam2[i];
          if(exam3[i] &lt; lowest[i])
              lowest[i] = exam2[i];
          if(exam4[i] &lt; lowest[i])
              lowest[i] = exam4[i];
          if(exam5[i] &lt; lowest[i])
              lowest[i] = exam5[i];

          total[i] = exam1[i] + exam2[i] + exam3[i] + exam4[i] + exam5[i];

          newAverage[i] =  (total[i] - lowest[i]) / 4;

      }
    }
    //finds letter grade for exam average
    void student::grade(int studentId[], int newAverage[], char grade[], int count)
    {

      for (int i = 1; i &lt; count; i++)
      {
        if (newAverage[i] &gt;= 90)
        grade[i] = 'A';
      else if (newAverage[i] &gt;= 80)
        grade[i] = 'B';
      else if (newAverage[i] &gt;= 70)
        grade[i] = 'C';
      else if (newAverage[i] &gt;= 60)
        grade[i] = 'D';
      else
        grade[i] = 'F';

      }
    }
    //prints student id, exams, old exam score, new exam score, and grades
    void student::print(int studentId[], double exam1[], double exam2[], double exam3[], double exam4[], double exam5[],
      double total[], int newAverage[], char grade[], int count)
    {

      ofstream outFile;
      outFile.open("report.txt");

      for (int i = 1; i &lt; count-1; i++)
      {
      outFile &lt;&lt; setw(10) &lt;&lt; left &lt;&lt; "Student Id: " &lt;&lt; setw(9) &lt;&lt; left &lt;&lt; studentId[i] &lt;&lt; " ";
      outFile &lt;&lt; setw(7) &lt;&lt; left &lt;&lt; "Exam 1: " &lt;&lt; setw(5) &lt;&lt; left &lt;&lt; exam1[i] &lt;&lt; " ";
      outFile &lt;&lt; setw(7) &lt;&lt; left &lt;&lt; "Exam 2: " &lt;&lt; setw(5) &lt;&lt; left &lt;&lt; exam2[i] &lt;&lt; " ";
      outFile &lt;&lt; setw(7) &lt;&lt; left &lt;&lt; "Exam 3: " &lt;&lt; setw(5) &lt;&lt; left &lt;&lt; exam3[i] &lt;&lt; " ";
      outFile &lt;&lt; setw(7) &lt;&lt; left &lt;&lt; "Exam 4: " &lt;&lt; setw(5) &lt;&lt; left &lt;&lt; exam4[i] &lt;&lt; " ";
      outFile &lt;&lt; setw(7) &lt;&lt; left &lt;&lt; "Exam 5: " &lt;&lt; setw(5) &lt;&lt; left &lt;&lt; exam5[i] &lt;&lt; " ";
      outFile &lt;&lt; setw(13) &lt;&lt; left &lt;&lt; "Total Score: " &lt;&lt; setw(5) &lt;&lt; left &lt;&lt; total[i] &lt;&lt; " ";
      outFile &lt;&lt; setw(16) &lt;&lt; left &lt;&lt; "Adjusted Score: " &lt;&lt; setw(5) &lt;&lt; left &lt;&lt; newAverage[i] &lt;&lt; " ";
      outFile &lt;&lt; setw(7) &lt;&lt; left &lt;&lt; "Grade: " &lt;&lt; setw(3) &lt;&lt; left &lt;&lt; grade[i] &lt;&lt; endl;

      }

      outFile.close();

    }
</code></pre>

<p>This will drive me nuts. I learned nothing in that class, because any quesiton we had he would say "what do you think". Any help would be greatly appreciated. Sorry for the length.</p>
 ]]></content:encoded>
			<category domain="http://www.daniweb.com/software-development/cpp/8">C++</category>
			<dc:creator>mc3330418</dc:creator>
			<guid isPermaLink="true">http://www.daniweb.com/software-development/cpp/threads/454846/class-array</guid>
		</item>
				<item>
			<title>Action Listener trouble</title>
			<link>http://www.daniweb.com/software-development/java/threads/454845/action-listener-trouble</link>
			<pubDate>Fri, 17 May 2013 23:38:14 +0000</pubDate>
			<description>I have been having some trouble with this action listener scenareo, and I am doing it exactly like what my java book says to do, and something is still not working. In the action listener the if statement is not working correctly. Here is an example of my code. The ...</description>
			<content:encoded><![CDATA[ <p>I have been having some trouble with this action listener scenareo, and I am doing it exactly like what my java book says to do, and something is still not working. In the action listener the if statement is not working correctly. Here is an example of my code. The label in the center of the frame should be changing, but doesnt.</p>

<pre><code class="language-java">import java.awt.BorderLayout;
import java.awt.event.ActionEvent;
import java.awt.event.ActionListener;
import javax.swing.JButton;
import javax.swing.JFrame;
import javax.swing.JLabel;
import javax.swing.JTextField;


public class Test extends JFrame implements ActionListener{

    private JButton team1;
    private JLabel label;

    public static void main(String[] args) {
        new Test();
    }//end main

    public Test(){
        super("Favorite Teams");
        this.setVisible(true);
        this.setSize(300, 300);
        this.setLocationRelativeTo(null);//center the frame 
        this.setLayout(new BorderLayout());
        this.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);

        //Initialize the JButtons
        JButton team1 = new JButton("Zerg");//video game starcraft

        //initialize the JLabel
        label = new JLabel("Please select a team. ");
        label.setHorizontalAlignment(JLabel.CENTER);

        //add the JButtons to the frame
        this.add(team1, BorderLayout.LINE_START);

        //add JLabel to the frame
        this.add(label, BorderLayout.CENTER);

        //add ActionListeners to the buttons
        team1.addActionListener(this);
    }

    public void actionPerformed(ActionEvent e) {
        Object source = e.getSource();
        if(source == team1)//Zerg
            label.setText("Ok, if you like critters. ");
    }//end method

}//end class
</code></pre>
 ]]></content:encoded>
			<category domain="http://www.daniweb.com/software-development/java/9">Java</category>
			<dc:creator>overwraith</dc:creator>
			<guid isPermaLink="true">http://www.daniweb.com/software-development/java/threads/454845/action-listener-trouble</guid>
		</item>
				<item>
			<title>PHP Signup Form Errors</title>
			<link>http://www.daniweb.com/web-development/php/threads/454844/php-signup-form-errors</link>
			<pubDate>Fri, 17 May 2013 22:57:11 +0000</pubDate>
			<description>Okay so i have to make a signup form and i have pretty much everything finished but i keep getting this error **Warning: mysql_num_rows() expects parameter 1 to be resource**. I keep getting this error on my **$checkUserQuery** &amp; **$checkEmailQuery** and don't know how to fix it. Any Suggestions? &lt;?php ...</description>
			<content:encoded><![CDATA[ <p>Okay so i have to make a signup form and i have pretty much everything finished but i keep getting this error <strong>Warning: mysql_num_rows() expects parameter 1 to be resource</strong>. I keep getting this error on my <strong>$checkUserQuery</strong> &amp; <strong>$checkEmailQuery</strong> and don't know how to fix it. Any Suggestions?</p>

<pre><code>&lt;?php
    $db_name = "htmldb";
    $tbl_name = "phplogin";


    //connect to database
    $conn = mysql_connect("localhost","root","");
    mysql_select_db("$db_name");

    //post back to database and checks userName 
    //and email for no duplicates in database
    if($_POST['submit']){
        $first = $_POST['firstName'];
        $last = $_POST['lastName'];
        $user = $_POST['userName'];
        $pass = $_POST['p'];
        $email = $_POST['email'];
        $checkUserQuery = mysql_query("SELECT * FROM $tbl_name WHERE userName = '$user'"); 
        $checkEmailQuery = mysql_query("SELECT * FROM $tbl_name WHERE email = '$email'");

        if(!$first OR !$last OR !$user OR !$pass OR !$email)
        {
            echo("Error: Please make sure all fields are filled out!");
        }
        elseif(mysql_num_rows($checkUserQuery) &gt; 0)
        {
            echo("Error: Username already exists!");
        }
        elseif(mysql_num_rows($checkEmailQuery) &gt; 0)
        {
            echo("Error: E-mail Address has already been used please user another one!");
        }
        else 
        {
            $query = mysql_query("INSERT INTO phplogin
                VALUES(".$first.",'".$last."','".$user."','".$pass."','".$email."')");
            echo("Sign Up Successful!");
        }
    }
?&gt;
</code></pre>
 ]]></content:encoded>
			<category domain="http://www.daniweb.com/web-development/php/17">PHP</category>
			<dc:creator>Gabe13</dc:creator>
			<guid isPermaLink="true">http://www.daniweb.com/web-development/php/threads/454844/php-signup-form-errors</guid>
		</item>
				<item>
			<title>Website not display correctly in internet explorer</title>
			<link>http://www.daniweb.com/web-development/web-design-html-and-css/threads/454843/website-not-display-correctly-in-internet-explorer</link>
			<pubDate>Fri, 17 May 2013 21:40:02 +0000</pubDate>
			<description>Hy All I have a website, and i just got a new script platform for it. I start to test the site when i notied the site is not fully working when i use internet explorer. Its seems like internet explorer didnt want to load pictures or other details and ...</description>
			<content:encoded><![CDATA[ <p>Hy All</p>

<p>I have a website, and i just got a new script platform for it. I start to test the site when i notied the site is not fully working when i use internet explorer. Its seems like internet explorer didnt want to load pictures or other details and its really annoying as i cant launch my site before i get this sorted. I try to contact with the developer but he seems like "gone missing" Can anyof you give me an advice or helping hand how to fix the problem? The link what you can check is commingsoon.filemonster.org  I try with firefox and its fine, but with intetnet explorer its just looks riddicilous.</p>
 ]]></content:encoded>
			<category domain="http://www.daniweb.com/web-development/web-design-html-and-css/15">Web Design, HTML and CSS</category>
			<dc:creator>rolanduk</dc:creator>
			<guid isPermaLink="true">http://www.daniweb.com/web-development/web-design-html-and-css/threads/454843/website-not-display-correctly-in-internet-explorer</guid>
		</item>
				<item>
			<title>Monthly to Quarter to Annual</title>
			<link>http://www.daniweb.com/web-development/databases/ms-sql/threads/454842/monthly-to-quarter-to-annual</link>
			<pubDate>Fri, 17 May 2013 20:53:29 +0000</pubDate>
			<description>Hi All, I have a table that holds monthly data in it. I need to average that data into Quarterly and Annual data but I'm not sure how to go about that. For annual I tried something like: SELECT TOP (100) PERCENT b.vSeries_Type as [Description],b.vSeries_Number as [CANSIM], Year(a.IPI_Ref_Date)as [Year], avg(a.IPI_Value) ...</description>
			<content:encoded><![CDATA[ <p>Hi All,</p>

<p>I have a table that holds monthly data in it.  I need to average that data into Quarterly and Annual data but I'm not sure how to go about that.  For annual I tried something like:</p>

<pre><code class="language-sql">SELECT     TOP (100) PERCENT b.vSeries_Type as [Description],b.vSeries_Number as [CANSIM], Year(a.IPI_Ref_Date)as [Year], avg(a.IPI_Value) as [IPI]
FROM         dbo.tblIPI AS a INNER JOIN
                      dbo.tblVSeriesList AS b ON a.IPIvSeries_ID = b.vSeries_ID AND (b.vSeries_Number = 'v53384920' OR
                      b.vSeries_Number = 'v53384879' OR
                      b.vSeries_Number = 'v53433827' OR)
group by b.vSeries_Type,b.vSeries_Number,a.IPI_Ref_Date
ORDER BY b.vSeries_Number asc
</code></pre>

<p>However the output is definitely not Annual, I don't know exactly what the calculation did.  Can someone point me in the right direction?</p>
 ]]></content:encoded>
			<category domain="http://www.daniweb.com/web-development/databases/ms-sql/127">MS SQL</category>
			<dc:creator>Stuugie</dc:creator>
			<guid isPermaLink="true">http://www.daniweb.com/web-development/databases/ms-sql/threads/454842/monthly-to-quarter-to-annual</guid>
		</item>
				<item>
			<title>Effects of Div tags on following Table usage</title>
			<link>http://www.daniweb.com/web-development/web-design-html-and-css/threads/454841/effects-of-div-tags-on-following-table-usage</link>
			<pubDate>Fri, 17 May 2013 19:58:46 +0000</pubDate>
			<description>Just to note: My brain in engaged and has been for awhile on this topic. I've learned and implemented a lot over the past week or so regarding CSS and Div tags, BUT... I am running into issues with formatting of data within table cells that I've never seen before, ...</description>
			<content:encoded><![CDATA[ <p>Just to note:  My brain in engaged and has been for awhile on this topic.  I've learned and implemented a lot over the past week or so regarding CSS and Div tags, BUT...</p>

<p>I am running into issues with formatting of data within table cells that I've never seen before, when preceding them with div tags for the header portion of a webpage...</p>

<p>This is the site where the formatting is an issue: <a href="http://www.hctubs.com/index2.php" rel="nofollow">http://www.hctubs.com/index2.php</a></p>

<p>All I have ever used in the past has been tables for page layout, but just getting an education in CSS Div tags for layout to some degree.</p>

<p>What i'm wondering is if the use of Div tags for the header portion of a webpage would have any effect on the subsequent use of tables for remaining data on the page?</p>

<p>Header tags and line spacing and bolding of text are all acting differently then they ever have.  In fact, if you look at the page source, you will see that all the lines I designated to be bolded, are not being bolded.</p>

<p>If preceeding the tables with div tags is the issue, is there a way to overcome it?</p>

<p>Could / Should the entire page be displayed using Div tags and replace the use of tables altogether?</p>

<p>May sound like strange questions, but trying to figure out the practical use and reasoning of using one over the other.</p>

<p>Hope someone is understanding of these questions and can give me some positive energy feedback.</p>

<p>Thanks<br />
Douglas</p>
 ]]></content:encoded>
			<category domain="http://www.daniweb.com/web-development/web-design-html-and-css/15">Web Design, HTML and CSS</category>
			<dc:creator>showman13</dc:creator>
			<guid isPermaLink="true">http://www.daniweb.com/web-development/web-design-html-and-css/threads/454841/effects-of-div-tags-on-following-table-usage</guid>
		</item>
				<item>
			<title>Creating a search engine and linking blog posts</title>
			<link>http://www.daniweb.com/web-development/php/threads/454840/creating-a-search-engine-and-linking-blog-posts</link>
			<pubDate>Fri, 17 May 2013 19:57:01 +0000</pubDate>
			<description>G'day, I created my own simple blog with some posts in it, the posts are stored in a folder called &quot;posts&quot; and there in .MD format. I want to put a search engine on my blog when they search anything that looks similar to any blog.. it should show the ...</description>
			<content:encoded><![CDATA[ <p>G'day,</p>

<p>I created my own simple blog with some posts in it, the posts are stored in a folder called "posts" and there in .MD format. I want to put a search engine on my blog when they search anything that looks similar to any blog.. it should show the results.. I can create a MySQL dB but I don't what do I add in the fields? And how do I link them?</p>

<p>If you still don't get me, let me know. I'll explain briefly.<br />
I tried every web community. Now Daniweb is my last hope.</p>

<p>Thank you.</p>
 ]]></content:encoded>
			<category domain="http://www.daniweb.com/web-development/php/17">PHP</category>
			<dc:creator>MrXortex</dc:creator>
			<guid isPermaLink="true">http://www.daniweb.com/web-development/php/threads/454840/creating-a-search-engine-and-linking-blog-posts</guid>
		</item>
				<item>
			<title>create client app in java</title>
			<link>http://www.daniweb.com/web-development/rss-web-services-and-soap/threads/454839/create-client-app-in-java</link>
			<pubDate>Fri, 17 May 2013 19:11:40 +0000</pubDate>
			<description>Hi I have a WSDL file. from that file how do create a java clinet application. apprecate if someone could reference me to some links appreciate it thanks</description>
			<content:encoded><![CDATA[ <p>Hi I have a WSDL file. from that file how do  create a java clinet application.<br />
apprecate if someone could reference me to some links</p>

<p>appreciate it<br />
thanks</p>
 ]]></content:encoded>
			<category domain="http://www.daniweb.com/web-development/rss-web-services-and-soap/151">RSS, Web Services and SOAP</category>
			<dc:creator>anisha.silva</dc:creator>
			<guid isPermaLink="true">http://www.daniweb.com/web-development/rss-web-services-and-soap/threads/454839/create-client-app-in-java</guid>
		</item>
				<item>
			<title>Can&#039;t import asset_manager_jni.h in NDK</title>
			<link>http://www.daniweb.com/software-development/mobile-development/threads/454838/cant-import-asset_manager_jni.h-in-ndk</link>
			<pubDate>Fri, 17 May 2013 18:58:39 +0000</pubDate>
			<description>I strongly think this is a bug on Eclipse. The problem I have is explained in the image I attached so please take a look. I think I did the all settings correctly. ${NDKROOT}/platforms/android-9/arch-arm/usr/include in Paths and Symbols GNU C/C++ But I keep having &quot;No such file&quot; error when I ...</description>
			<content:encoded><![CDATA[ <p>I strongly think this is a bug on Eclipse.<br />
The problem I have is explained in the image I attached so please take a look.</p>

<p>I think I did the all settings correctly.<br />
 ${NDKROOT}/platforms/android-9/arch-arm/usr/include in Paths and Symbols GNU C/C++</p>

<p>But I keep having "No such file" error when I try to include &lt;android/asset_manager_jni.h&gt;.<br />
The funny thing is #include &lt;android/log.h&gt; doesn't give me any error msg even though both files are in the same folder.</p>

<p>The weird thing is that AAssetManager class becomes available even though it gives me "No such file" error.</p>

<p>Can someone please tell me what is going on??</p>

<p><img src="/attachments/fetch/L2ltYWdlcy9hdHRhY2htZW50cy8zL2E1NzZmNTBjNTM1ZGIyNzFlYWRkOTc5YzdkZDNlYjVhLkpQRw%3D%3D/500" alt="a576f50c535db271eadd979c7dd3eb5a" title="a576f50c535db271eadd979c7dd3eb5a" /></p>
 ]]></content:encoded>
			<category domain="http://www.daniweb.com/software-development/mobile-development/181">Mobile Development</category>
			<dc:creator>9tontruck</dc:creator>
			<guid isPermaLink="true">http://www.daniweb.com/software-development/mobile-development/threads/454838/cant-import-asset_manager_jni.h-in-ndk</guid>
		</item>
				<item>
			<title>Storing via asprintf and reading back via isprintf?</title>
			<link>http://www.daniweb.com/software-development/c/threads/454837/storing-via-asprintf-and-reading-back-via-isprintf</link>
			<pubDate>Fri, 17 May 2013 18:12:53 +0000</pubDate>
			<description>We have a packet capture function which is as below. The issue now each of the hex value of packet I read and concat into a char *hex2Value using this code below. I would like to know is this the most efficienct method to concat all into one single string ...</description>
			<content:encoded><![CDATA[ <p>We have a packet capture function which is as below. The issue now each of the hex value of packet I read and concat into a char *hex2Value using this code below. I would like to know is this the most efficienct method to concat all into one single string ? Secondly now this one long string I want to reach each 2 value into isprint function to print the readable character how best to do this?</p>

<pre><code class="language-c">   char *hex2Value="";        
    while(*p) {
  //printf("\n\nstr: %s\n", p);
  asprintf(&amp;hexValue,"%s%02x",hex2Value,p);
  //asprintf(&amp;hexValue,"%s%02x",hexValue,p);

  p++;
}








void dummyProcesssPacket(const struct pfring_pkthdr *h, 
             const u_char *p, const u_char *user_bytes) {
  long threadId = (long)user_bytes;
  printf("\nIN Dummy\n");
  numPkts[threadId]++, numBytes[threadId] += h-&gt;len+24 /* 8 Preamble + 4 CRC + 12 IFG */;

#ifdef ENABLE_BPF
  if (userspace_bpf &amp;&amp; bpf_filter(filter.bf_insns, p, h-&gt;caplen, h-&gt;len) == 0)
    return; /* rejected */

  numPktsFiltered[threadId]++;
#endif

  if(touch_payload) {
    volatile int __attribute__ ((unused)) i;

    i = p[12] + p[13];
  }

  if(verbose) {
    printf("\nverbose :");
    struct ether_header *ehdr;
    char buf1[32], buf2[32];
    struct ip *ip;
    int s;
    uint usec;
    uint nsec=0;


    int i=0;
    int j=0,line=0,packSize=h-&gt;caplen;
    char *hexValue="";
    while(j&lt;packSize/16)
    {
      printf("%06x: ",line++);
        for(i=0;i&lt;16;i++)
        {
          printf("%02x ",p[j*16+i]);
          asprintf(&amp;hexValue,"%s%02x",hexValue,p[j*16+i]);
        }
        printf("   |");
        /*for(i=0;i&lt;16;i++)
        {
           if(isprint(p[j*16+i]))
             printf("%c",p[j*16+i]);
           else
             printf(".");
        }*/
        printf("|\n");
        j++;
    }
    printf("\nTotal hex value is %s",hexValue);




    if(h-&gt;ts.tv_sec == 0) {
      memset((void*)&amp;h-&gt;extended_hdr.parsed_pkt, 0, sizeof(struct pkt_parsing_info));
      pfring_parse_pkt((u_char*)p, (struct pfring_pkthdr*)h, 5, 1, 1);
    }

    s = (h-&gt;ts.tv_sec + thiszone) % 86400;

    if(h-&gt;extended_hdr.timestamp_ns) {
      if (pd-&gt;dna.dna_dev.mem_info.device_model != intel_igb_82580 /* other than intel_igb_82580 */)
        s = ((h-&gt;extended_hdr.timestamp_ns / 1000000000) + thiszone) % 86400;
      /* "else" intel_igb_82580 has 40 bit ts, using gettimeofday seconds:
       * be careful with drifts mixing sys time and hw timestamp */
      usec = (h-&gt;extended_hdr.timestamp_ns / 1000) % 1000000;
      nsec = h-&gt;extended_hdr.timestamp_ns % 1000;
    } else {
      usec = h-&gt;ts.tv_usec;
    }

    printf("%02d:%02d:%02d.%06u%03u ",
       s / 3600, (s % 3600) / 60, s % 60,
       usec, nsec);

    ehdr = (struct ether_header *) p;
    printf("\n\nBefore Extexted :%d",use_extended_pkt_header);
    if(use_extended_pkt_header) {
      printf("\nafter USE EXE");
      printf("%s[if_index=%d]",
        h-&gt;extended_hdr.rx_direction ? "[RX]" : "[TX]",
        h-&gt;extended_hdr.if_index);

      printf("[%s -&gt; %s] ",
         etheraddr_string(h-&gt;extended_hdr.parsed_pkt.smac, buf1),
         etheraddr_string(h-&gt;extended_hdr.parsed_pkt.dmac, buf2));    

      if(h-&gt;extended_hdr.parsed_pkt.offset.vlan_offset)
    printf("[vlan %u] ", h-&gt;extended_hdr.parsed_pkt.vlan_id);

      if (h-&gt;extended_hdr.parsed_pkt.eth_type == 0x0800 /* IPv4*/ || h-&gt;extended_hdr.parsed_pkt.eth_type == 0x86DD /* IPv6*/) {

        if(h-&gt;extended_hdr.parsed_pkt.eth_type == 0x0800 /* IPv4*/ ) {
      printf("[IPv4][%s:%d ", intoa(h-&gt;extended_hdr.parsed_pkt.ipv4_src), h-&gt;extended_hdr.parsed_pkt.l4_src_port);
      printf("-&gt; %s:%d] ", intoa(h-&gt;extended_hdr.parsed_pkt.ipv4_dst), h-&gt;extended_hdr.parsed_pkt.l4_dst_port);




                    char sql_lite[1500];
                    int lastID = mysql_insert_id(conn);
                    printf("\n\n\nLAT IS %d",lastID);
                    char *hexValue="";
                    while(p) {
                  printf("\n\nstr: %s\n", p);
                  asprintf(&amp;hexValue,"%s%02x",hexValue,p);
                  p++;
               }
                    //printf("\n\n char size : p size %lu ",sizeof(p));
                    sprintf(sql_lite, "insert into tblPL1 values ('%d','%s','%s')",'2013-05-11 20:20:20',p[0]);
              puts(sql_lite);
              //error = sqlite3_exec(conn, sql_lite, 0, 0, 0);




        } else {
          printf("[IPv6][%s:%d ",    in6toa(h-&gt;extended_hdr.parsed_pkt.ipv6_src), h-&gt;extended_hdr.parsed_pkt.l4_src_port);
          printf("-&gt; %s:%d] ", in6toa(h-&gt;extended_hdr.parsed_pkt.ipv6_dst), h-&gt;extended_hdr.parsed_pkt.l4_dst_port);
        }

    printf("[l3_proto=%s]", proto2str(h-&gt;extended_hdr.parsed_pkt.l3_proto));

    if(h-&gt;extended_hdr.parsed_pkt.tunnel.tunnel_id != NO_TUNNEL_ID) {
      printf("[TEID=0x%08X][tunneled_proto=%s]", 
         h-&gt;extended_hdr.parsed_pkt.tunnel.tunnel_id,
         proto2str(h-&gt;extended_hdr.parsed_pkt.tunnel.tunneled_proto));

      if(h-&gt;extended_hdr.parsed_pkt.eth_type == 0x0800 /* IPv4*/ ) {
        printf("[IPv4][%s:%d ",
           intoa(h-&gt;extended_hdr.parsed_pkt.tunnel.tunneled_ip_src.v4),
           h-&gt;extended_hdr.parsed_pkt.tunnel.tunneled_l4_src_port);
        printf("-&gt; %s:%d] ", 
           intoa(h-&gt;extended_hdr.parsed_pkt.tunnel.tunneled_ip_dst.v4),
           h-&gt;extended_hdr.parsed_pkt.tunnel.tunneled_l4_dst_port);
      } else {
        printf("[IPv6][%s:%d ", 
           in6toa(h-&gt;extended_hdr.parsed_pkt.tunnel.tunneled_ip_src.v6),
           h-&gt;extended_hdr.parsed_pkt.tunnel.tunneled_l4_src_port);
        printf("-&gt; %s:%d] ",
           in6toa(h-&gt;extended_hdr.parsed_pkt.tunnel.tunneled_ip_dst.v6),
           h-&gt;extended_hdr.parsed_pkt.tunnel.tunneled_l4_dst_port);
      }   
    }

    printf("[hash=%u][tos=%d][tcp_seq_num=%u]",
      h-&gt;extended_hdr.pkt_hash,
          h-&gt;extended_hdr.parsed_pkt.ipv4_tos, 
      h-&gt;extended_hdr.parsed_pkt.tcp.seq_num);

      } else {
    if(h-&gt;extended_hdr.parsed_pkt.eth_type == 0x0806 /* ARP */)
      printf("[ARP]");
    else
      printf("[eth_type=0x%04X]", h-&gt;extended_hdr.parsed_pkt.eth_type);
      }

      printf(" [caplen=%d][len=%d][parsed_header_len=%d][eth_offset=%d][l3_offset=%d][l4_offset=%d][payload_offset=%d]\n",
        h-&gt;caplen, h-&gt;len, h-&gt;extended_hdr.parsed_header_len,
        h-&gt;extended_hdr.parsed_pkt.offset.eth_offset,
        h-&gt;extended_hdr.parsed_pkt.offset.l3_offset,
        h-&gt;extended_hdr.parsed_pkt.offset.l4_offset,
        h-&gt;extended_hdr.parsed_pkt.offset.payload_offset);

    } else {
      printf("[%s -&gt; %s][eth_type=0x%04X][caplen=%d][len=%d] (use -m for details)\n",
         etheraddr_string(ehdr-&gt;ether_shost, buf1),
         etheraddr_string(ehdr-&gt;ether_dhost, buf2), 
         ntohs(ehdr-&gt;ether_type),
         h-&gt;caplen, h-&gt;len);
    }
  }

  if(verbose == 2) {
      int i;

      for(i = 0; i &lt; h-&gt;caplen; i++)
        printf("%02X ", p[i]);
      printf("\n");
  }

  if(unlikely(add_drop_rule)) {
    if(h-&gt;ts.tv_sec == 0)
      pfring_parse_pkt((u_char*)p, (struct pfring_pkthdr*)h, 4, 0, 1);

    drop_packet_rule(h);
  }
}
</code></pre>
 ]]></content:encoded>
			<category domain="http://www.daniweb.com/software-development/c/118">C</category>
			<dc:creator>newbie14</dc:creator>
			<guid isPermaLink="true">http://www.daniweb.com/software-development/c/threads/454837/storing-via-asprintf-and-reading-back-via-isprintf</guid>
		</item>
				<item>
			<title>Learning JS</title>
			<link>http://www.daniweb.com/web-development/javascript-dhtml-ajax/threads/454836/learning-js</link>
			<pubDate>Fri, 17 May 2013 17:23:30 +0000</pubDate>
			<description>I've been through Code Academy and LearnStreet Beginners courses. I am currently workign on the beginner's projects in Code Garage to practice. It seems, though, that there are some methods needed to complete the projects that werne't covered in the lessons. Anyone else use this site and notice this? Also, ...</description>
			<content:encoded><![CDATA[ <p>I've been through Code Academy and LearnStreet Beginners courses. I am currently workign on the beginner's projects in Code Garage to practice. It seems, though, that there are some methods needed to complete the projects that werne't covered in the lessons. Anyone else use this site and notice this? Also, what site can go to to learn intermediate and advanced JS for free like I did the beginner stages? Oh, a third question. Is it common practice ot look at a cheat sheet or refer to a site when needing a method or looking for a property?</p>

<p>OK. Thanks for your time.</p>
 ]]></content:encoded>
			<category domain="http://www.daniweb.com/web-development/javascript-dhtml-ajax/117">JavaScript / DHTML / AJAX</category>
			<dc:creator>Reliable</dc:creator>
			<guid isPermaLink="true">http://www.daniweb.com/web-development/javascript-dhtml-ajax/threads/454836/learning-js</guid>
		</item>
				<item>
			<title>Let PyGame play your MIDI or MP3 files</title>
			<link>http://www.daniweb.com/software-development/python/code/454835/let-pygame-play-your-midi-or-mp3-files</link>
			<pubDate>Fri, 17 May 2013 16:12:24 +0000</pubDate>
			<description>Just a code sample that allows you to play your midi or mp3 music files with Python and module pygame.</description>
			<content:encoded><![CDATA[ <p>Just a code sample that allows you to play your midi or mp3 music files with Python and module pygame.</p>
 ]]></content:encoded>
			<category domain="http://www.daniweb.com/software-development/python/114">Python</category>
			<dc:creator>vegaseat</dc:creator>
			<guid isPermaLink="true">http://www.daniweb.com/software-development/python/code/454835/let-pygame-play-your-midi-or-mp3-files</guid>
		</item>
				<item>
			<title>output</title>
			<link>http://www.daniweb.com/software-development/c/threads/454834/output</link>
			<pubDate>Fri, 17 May 2013 16:06:23 +0000</pubDate>
			<description>What will be printed as the result of the operation below: #define swap(a,b) a=a+b;b=a-b;a=a-b; void main() { int x=5,y=10; swap(x,y); printf(&quot;%d%d&quot;,x,y); }</description>
			<content:encoded><![CDATA[ <p>What will be printed as the result of the operation below:</p>

<pre><code class="language-c">#define swap(a,b)  a=a+b;b=a-b;a=a-b;
void main()
{
int x=5,y=10;
swap(x,y);
printf("%d%d",x,y);
}
</code></pre>
 ]]></content:encoded>
			<category domain="http://www.daniweb.com/software-development/c/118">C</category>
			<dc:creator>Iamateur</dc:creator>
			<guid isPermaLink="true">http://www.daniweb.com/software-development/c/threads/454834/output</guid>
		</item>
				<item>
			<title>Can&#039;t upload file (again)</title>
			<link>http://www.daniweb.com/community-center/daniweb-community-feedback/threads/454833/cant-upload-file-again</link>
			<pubDate>Fri, 17 May 2013 15:03:50 +0000</pubDate>
			<description>I tried to upload a sample project in zip form at 10:00 CDT today (around 150K) and all I get is **The file could not be written to disk**.</description>
			<content:encoded><![CDATA[ <p>I tried to upload a sample project in zip form at 10:00 CDT today (around 150K) and all I get is <strong>The file could not be written to disk</strong>.</p>
 ]]></content:encoded>
			<category domain="http://www.daniweb.com/community-center/daniweb-community-feedback/26">DaniWeb Community Feedback</category>
			<dc:creator>Reverend Jim</dc:creator>
			<guid isPermaLink="true">http://www.daniweb.com/community-center/daniweb-community-feedback/threads/454833/cant-upload-file-again</guid>
		</item>
				<item>
			<title>Issue having data from database display on map</title>
			<link>http://www.daniweb.com/web-development/php/threads/454832/issue-having-data-from-database-display-on-map</link>
			<pubDate>Fri, 17 May 2013 14:42:10 +0000</pubDate>
			<description>Hey everyone, So I did some more searching and I found a link that sort of helped me figure this thing out in a sense.. Here's the link https://developers.google.com/maps/articles/phpsqlajax_v3 . When I do all of what the site told me to do, it did give me a map but it ...</description>
			<content:encoded><![CDATA[ <p>Hey everyone,</p>

<p>So I did some more searching and I found a link that sort of helped me figure this thing out in a sense.. Here's the link <a href="https://developers.google.com/maps/articles/phpsqlajax_v3" rel="nofollow">https://developers.google.com/maps/articles/phpsqlajax_v3</a> . When I do all of what the site told me to do, it did give me a map but it didn't create markers to specified locations that I've inputted in a database table.</p>

<p>Now I've taken out the "type variable in the database because I didn't see a use for it in my case. Can anyone help me figure this out? Here are my files. Thanks for anyone's patience!</p>

<p>phpsqlajax_genxml.php</p>

<pre><code>&lt;?php
require("phpsqlajax_dbinfo.php");

// Start XML file, create parent node
$doc = domxml_new_doc("1.0");
$node = $doc-&gt;create_element("markers");
$parnode = $doc-&gt;append_child($node);

// Opens a connection to a MySQL server
$connection=mysql_connect ($hostname, $username, $password);
if (!$connection) {
  die('Not connected : ' . mysql_error());
}

// Set the active MySQL database
$db_selected = mysql_select_db($database, $connection);
if (!$db_selected) {
  die ('Can\'t use db : ' . mysql_error());
}

// Select all the rows in the markers table
$query = "SELECT * FROM markers WHERE 1";
$result = mysql_query($query);
if (!$result) {
  die('Invalid query: ' . mysql_error());
}

header("Content-type: text/xml");

// Iterate through the rows, adding XML nodes for each
while ($row = @mysql_fetch_assoc($result)){
  // ADD TO XML DOCUMENT NODE
  $node = $doc-&gt;create_element("marker");
  $newnode = $parnode-&gt;append_child($node);

  $newnode-&gt;set_attribute("name", $row['name']);
  $newnode-&gt;set_attribute("address", $row['address']);
  $newnode-&gt;set_attribute("lat", $row['lat']);
  $newnode-&gt;set_attribute("lng", $row['lng']);
}

$xmlfile = $doc-&gt;dump_mem();
echo $xmlfile;

?&gt;
</code></pre>

<p>phpsqlajax_genxml2.php</p>

<pre><code>&lt;?php
require("phpsqlajax_dbinfo.php");

function parseToXML($htmlStr) 
{ 
$xmlStr=str_replace('&lt;','&amp;lt;',$htmlStr); 
$xmlStr=str_replace('&gt;','&amp;gt;',$xmlStr); 
$xmlStr=str_replace('"','&amp;quot;',$xmlStr); 
$xmlStr=str_replace("'",'&amp;#39;',$xmlStr); 
$xmlStr=str_replace("&amp;",'&amp;amp;',$xmlStr); 
return $xmlStr; 
} 

// Opens a connection to a MySQL server
$connection=mysql_connect ($hostname, $username, $password);
if (!$connection) {
  die('Not connected : ' . mysql_error());
}

// Set the active MySQL database
$db_selected = mysql_select_db($database, $connection);
if (!$db_selected) {
  die ('Can\'t use db : ' . mysql_error());
}

// Select all the rows in the markers table
$query = "SELECT * FROM markers WHERE 1";
$result = mysql_query($query);
if (!$result) {
  die('Invalid query: ' . mysql_error());
}

header("Content-type: text/xml");

// Start XML file, echo parent node
echo '&lt;markers&gt;';

// Iterate through the rows, printing XML nodes for each
while ($row = @mysql_fetch_assoc($result)){
  // ADD TO XML DOCUMENT NODE
  echo '&lt;marker ';
  echo 'name="' . parseToXML($row['name']) . '" ';
  echo 'address="' . parseToXML($row['address']) . '" ';
  echo 'lat="' . $row['lat'] . '" ';
  echo 'lng="' . $row['lng'] . '" ';
  echo '/&gt;';
}

// End XML file
echo '&lt;/markers&gt;';

?&gt;
</code></pre>

<p>phpsqlajax_genxml3.php</p>

<pre><code>&lt;?php  

require("phpsqlajax_dbinfo.php"); 

// Start XML file, create parent node

$dom = new DOMDocument("1.0");
$node = $dom-&gt;createElement("markers");
$parnode = $dom-&gt;appendChild($node); 

// Opens a connection to a MySQL server

$connection=mysql_connect ($hostname, $username, $password);
if (!$connection) {  die('Not connected : ' . mysql_error());} 

// Set the active MySQL database

$db_selected = mysql_select_db($database, $connection);
if (!$db_selected) {
  die ('Can\'t use db : ' . mysql_error());
} 

// Select all the rows in the markers table

$query = "SELECT * FROM markers WHERE 1";
$result = mysql_query($query);
if (!$result) {  
  die('Invalid query: ' . mysql_error());
} 

header("Content-type: text/xml"); 

// Iterate through the rows, adding XML nodes for each

while ($row = @mysql_fetch_assoc($result)){  
  // ADD TO XML DOCUMENT NODE  
  $node = $dom-&gt;createElement("marker");  
  $newnode = $parnode-&gt;appendChild($node);   
  $newnode-&gt;setAttribute("name",$row['name']);
  $newnode-&gt;setAttribute("address", $row['address']);  
  $newnode-&gt;setAttribute("lat", $row['lat']);  
  $newnode-&gt;setAttribute("lng", $row['lng']);  
} 

echo $dom-&gt;saveXML();

?&gt;
</code></pre>

<p>maps.php</p>

<pre><code>&lt;!DOCTYPE html &gt;
  &lt;head&gt;
    &lt;meta name="viewport" content="initial-scale=1.0, user-scalable=no" /&gt;
    &lt;meta http-equiv="content-type" content="text/html; charset=UTF-8"/&gt;
    &lt;title&gt;PHP/MySQL &amp; Google Maps Example&lt;/title&gt;
    &lt;script type="text/javascript" src="<a href="http://maps.googleapis.com/maps/api/js?sensor=false" rel="nofollow">http://maps.googleapis.com/maps/api/js?sensor=false</a>"&gt;&lt;/script&gt;
    &lt;script type="text/javascript"&gt;
    //&lt;![CDATA[

    var customIcons = {
      home: {
        icon: '<a href="http://labs.google.com/ridefinder/images/mm_20_blue.png" rel="nofollow">http://labs.google.com/ridefinder/images/mm_20_blue.png</a>',
        shadow: '<a href="http://labs.google.com/ridefinder/images/mm_20_shadow.png" rel="nofollow">http://labs.google.com/ridefinder/images/mm_20_shadow.png</a>'
      },
    };

    function load() {
      var map = new google.maps.Map(document.getElementById("map"), {
        center: new google.maps.LatLng(39.707187, -86.154785),
        zoom: 13,
        mapTypeId: 'hybrid'
      });
      var infoWindow = new google.maps.InfoWindow;

      // Change this depending on the name of your PHP file
      downloadUrl("phpsqlajax_genxml.php", function(data) {
        var xml = data.responseXML;
        var markers = xml.documentElement.getElementsByTagName("marker");
        for (var i = 0; i &lt; markers.length; i++) {
          var name = markers[i].getAttribute("name");
          var address = markers[i].getAttribute("address");
          var point = new google.maps.LatLng(
              parseFloat(markers[i].getAttribute("lat")),
              parseFloat(markers[i].getAttribute("lng")));
          var html = "&lt;b&gt;" + name + "&lt;/b&gt; &lt;br/&gt;" + address;
          var icon = customIcons[type] || {};
          var marker = new google.maps.Marker({
            map: map,
            position: point,
            icon: icon.icon,
            shadow: icon.shadow
          });
          bindInfoWindow(marker, map, infoWindow, html);
        }
      });
    }

    function bindInfoWindow(marker, map, infoWindow, html) {
      google.maps.event.addListener(marker, 'click', function() {
        infoWindow.setContent(html);
        infoWindow.open(map, marker);
      });
    }

    function downloadUrl(url, callback) {
      var request = window.ActiveXObject ?
          new ActiveXObject('Microsoft.XMLHTTP') :
          new XMLHttpRequest;

      request.onreadystatechange = function() {
        if (request.readyState == 4) {
          request.onreadystatechange = doNothing;
          callback(request, request.status);
        }
      };

      request.open('GET', url, true);
      request.send(null);
    }

    function doNothing() {}

    //]]&gt;

  &lt;/script&gt;

  &lt;/head&gt;

  &lt;body onload="load()"&gt;
    &lt;div id="map" style="width: 500px; height: 300px"&gt;&lt;/div&gt;
  &lt;/body&gt;

&lt;/html&gt;
</code></pre>
 ]]></content:encoded>
			<category domain="http://www.daniweb.com/web-development/php/17">PHP</category>
			<dc:creator>geneh23</dc:creator>
			<guid isPermaLink="true">http://www.daniweb.com/web-development/php/threads/454832/issue-having-data-from-database-display-on-map</guid>
		</item>
				<item>
			<title>MinGW: libpng won&#039;t build properly</title>
			<link>http://www.daniweb.com/software-development/cpp/threads/454831/mingw-libpng-wont-build-properly</link>
			<pubDate>Fri, 17 May 2013 13:45:54 +0000</pubDate>
			<description>So I need this libpng to be statically link with my dll to be used by my exe. This dll is already done before until I switch my compiler from MSVC to MinGW, then this dll won't work anymore so I think I should rebuild it **again** through MinGW. Now, ...</description>
			<content:encoded><![CDATA[ <p>So I need this libpng to be statically link with my dll to be used by my exe. This dll is already done before until I switch my compiler from MSVC to MinGW, then this dll won't work anymore so I think I should rebuild it <strong>again</strong> through MinGW. Now, I cannot resolve the linker errors that I get into libpng so I decided to rebuild it(libpng) myself <strong>again</strong>. Another problem arises with this zlib or libz (I don't know their difference), so I rebuilt it <strong>again</strong> and produces libz.a using make. I then return to my dll where I want to link this libpng. No more linker errors. Now, when trying to run the test program it says, <em>"zlib-svd-x86.dll is missing"</em>.. <strong>dang!</strong> there's no existing dll like this in the internet! Or I'm just too blind to find it. I use codeblocks as my IDE and.. I do think I mess up the settings there because it keeps adding the flags it added before repeatedly. So, I try to use msys to build again this dll file. Now it runs w/o any dll missing, but it seems not working. As I remember, I never change the code before in my dll and I'm pretty sure it has no bugs in there.</p>

<p>That dll I am talking about is a textureloader and w/ functions returning the texture id of image been loaded. And it returns an id of <strong>4</strong> for its very first texture loaded and no image is shown in the screen. I try all the things I knew on how to build those individual files I needed but still no luck on working it properly. I don't think the problem is in my dll.</p>

<p><strong>Would anyone please move this to appropriate place because I am new here, and I don't know where is the proper place. Thanks!</strong></p>
 ]]></content:encoded>
			<category domain="http://www.daniweb.com/software-development/cpp/8">C++</category>
			<dc:creator>mark5rockzz</dc:creator>
			<guid isPermaLink="true">http://www.daniweb.com/software-development/cpp/threads/454831/mingw-libpng-wont-build-properly</guid>
		</item>
				<item>
			<title>MVC Button disable</title>
			<link>http://www.daniweb.com/software-development/csharp/threads/454829/mvc-button-disable</link>
			<pubDate>Fri, 17 May 2013 13:32:11 +0000</pubDate>
			<description>how to disable a button (that is found in a view) from a method in a controller ?</description>
			<content:encoded><![CDATA[ <p>how to disable a button (that is found in a view) from a method in a controller ?</p>
 ]]></content:encoded>
			<category domain="http://www.daniweb.com/software-development/csharp/61">C#</category>
			<dc:creator>missc</dc:creator>
			<guid isPermaLink="true">http://www.daniweb.com/software-development/csharp/threads/454829/mvc-button-disable</guid>
		</item>
				<item>
			<title>Howdy Folks</title>
			<link>http://www.daniweb.com/community-center/community-introductions/threads/454827/howdy-folks</link>
			<pubDate>Fri, 17 May 2013 13:15:32 +0000</pubDate>
			<description>Howdy Friends; My name is PBJ and I have been writing code since I was 12, and I am now 18. I have experience with a number of languagues including: Perl, Python, C++, Batch/Bash, and Java. Out of the languages mentioned my strong-suit is without a doubt Java. However, over ...</description>
			<content:encoded><![CDATA[ <p>Howdy Friends;<br />
My name is PBJ and I have been writing code since I was 12, and I am now 18. I have experience with a number of languagues including: Perl, Python, C++, Batch/Bash, and Java. Out of the languages mentioned my strong-suit is without a doubt Java. However, over this summer I hope to become sufficient in Assembly programming (I will be asking quite a few questions on here =D). Besides that, I am currently enrolled in a Computer Science program at a college in my area. I hope with my programming experience, that I may be of help to the community. Well now time to lurk the fourms in search of tutorials.<br />
Adios<br />
PBJ</p>
 ]]></content:encoded>
			<category domain="http://www.daniweb.com/community-center/community-introductions/165">Community Introductions</category>
			<dc:creator>pbj.codez</dc:creator>
			<guid isPermaLink="true">http://www.daniweb.com/community-center/community-introductions/threads/454827/howdy-folks</guid>
		</item>
				<item>
			<title>Data Integrity</title>
			<link>http://www.daniweb.com/web-development/databases/threads/454826/data-integrity</link>
			<pubDate>Fri, 17 May 2013 13:11:57 +0000</pubDate>
			<description>What is Data Integrity?</description>
			<content:encoded><![CDATA[ <p>What is Data Integrity?</p>
 ]]></content:encoded>
			<category domain="http://www.daniweb.com/web-development/databases/16">Databases</category>
			<dc:creator>chrispitt</dc:creator>
			<guid isPermaLink="true">http://www.daniweb.com/web-development/databases/threads/454826/data-integrity</guid>
		</item>
				<item>
			<title>rank a Site</title>
			<link>http://www.daniweb.com/internet-marketing/threads/454825/rank-a-site</link>
			<pubDate>Fri, 17 May 2013 13:04:43 +0000</pubDate>
			<description>I have a website and i want to rank it in google. But i need to rank in google.ch Please tell me how to start for my site.</description>
			<content:encoded><![CDATA[ <p>I have a website and i want to rank it in google. But i need to rank in google.ch</p>

<p>Please tell me how to start for my site.</p>
 ]]></content:encoded>
			<category domain="http://www.daniweb.com/internet-marketing/25">Internet Marketing</category>
			<dc:creator>Lisabraker</dc:creator>
			<guid isPermaLink="true">http://www.daniweb.com/internet-marketing/threads/454825/rank-a-site</guid>
		</item>
				<item>
			<title>How to add files to android emulator?</title>
			<link>http://www.daniweb.com/software-development/mobile-development/threads/454824/how-to-add-files-to-android-emulator</link>
			<pubDate>Fri, 17 May 2013 13:02:15 +0000</pubDate>
			<description>hi i am new to android.i am using eclipse ide for android development.i am unable to add files into my emulator Here's what i did 1.opened the ddms and went to file explorer and push the file to the device and selected the file. it says the file is pushed ...</description>
			<content:encoded><![CDATA[ <p>hi<br />
i am new to android.i am using eclipse ide for android development.i am unable to add files into my emulator</p>

<p>Here's what i did<br />
1.opened the ddms  and went to file explorer and push the file to the device and selected the file. it says the file is pushed into the device. but when i checked in the device it is not shown.i restarted Eclipse but nothing happened</p>

<p>sometimes i am getting the error<br />
  failed to push the item</p>
 ]]></content:encoded>
			<category domain="http://www.daniweb.com/software-development/mobile-development/181">Mobile Development</category>
			<dc:creator>bdheeraj</dc:creator>
			<guid isPermaLink="true">http://www.daniweb.com/software-development/mobile-development/threads/454824/how-to-add-files-to-android-emulator</guid>
		</item>
				<item>
			<title>Is it possible to add a form using javascript which is prompt ?</title>
			<link>http://www.daniweb.com/web-development/javascript-dhtml-ajax/threads/454823/is-it-possible-to-add-a-form-using-javascript-which-is-prompt-</link>
			<pubDate>Fri, 17 May 2013 12:50:20 +0000</pubDate>
			<description>I want to create a form in web app where users can enter there name and emailid and dropdown list(whether it is from management, student or guest). For some of the preferences, I would like to open a dialog containing a drop down menu allowing user to pick an option ...</description>
			<content:encoded><![CDATA[ <p>I want to create a form in web app where users can enter there name and emailid and dropdown list(whether it is from management, student or guest). For some of the preferences, I would like to open a dialog containing a drop down menu allowing user to pick an option and have it saved through ajax. Is it possible with javascript ?<br />
it is something like login page of this forum<br />
when we click on the member login if gives a prompt and we enter our userid and password</p>
 ]]></content:encoded>
			<category domain="http://www.daniweb.com/web-development/javascript-dhtml-ajax/117">JavaScript / DHTML / AJAX</category>
			<dc:creator>bhallarahul</dc:creator>
			<guid isPermaLink="true">http://www.daniweb.com/web-development/javascript-dhtml-ajax/threads/454823/is-it-possible-to-add-a-form-using-javascript-which-is-prompt-</guid>
		</item>
				<item>
			<title>Using a Web API with C++</title>
			<link>http://www.daniweb.com/software-development/cpp/threads/454822/using-a-web-api-with-c</link>
			<pubDate>Fri, 17 May 2013 12:45:59 +0000</pubDate>
			<description>Hello. I read about the daniweb api competition thing and I have an idea of what I want to create. I have never done anything webby before (aside from using dreamweaver to make websites) and I think its about time that I did! I am hoping that it is possible ...</description>
			<content:encoded><![CDATA[ <p>Hello. I read about the daniweb api competition thing and I have an idea of what I want to create. I have never done anything webby before (aside from using dreamweaver to make websites) and I think its about time that I did! I am hoping that it is possible for me to use the daniweb api to make a kind of editor in c++. I want to use c++ because it is what I am most familiar in, if it is overly complicated in c++ please tell me what language it wouldn't be complicated in. Anyways I just want to know how to use a web api in c++.</p>
 ]]></content:encoded>
			<category domain="http://www.daniweb.com/software-development/cpp/8">C++</category>
			<dc:creator>Labdabeta</dc:creator>
			<guid isPermaLink="true">http://www.daniweb.com/software-development/cpp/threads/454822/using-a-web-api-with-c</guid>
		</item>
				<item>
			<title>Call a MySQL stored procedure using PHP?</title>
			<link>http://www.daniweb.com/web-development/php/threads/454821/call-a-mysql-stored-procedure-using-php</link>
			<pubDate>Fri, 17 May 2013 12:39:59 +0000</pubDate>
			<description>I currently have $tableName=&quot;thenameofthetable&quot;; $someid=$_GET[&quot;someidthruget&quot;]; $result = mysql_query(&quot;SELECT name,age FROM &quot;. $tableName. &quot; WHERE idp=&quot;. $someid); Which looks really insecure. How can I do it using a stored procedure which I think will make it a lot more secure? Thanks</description>
			<content:encoded><![CDATA[ <p>I currently have</p>

<pre><code>$tableName="thenameofthetable";
$someid=$_GET["someidthruget"];
$result = mysql_query("SELECT name,age FROM ". $tableName. " WHERE idp=". $someid);   
</code></pre>

<p>Which looks really insecure.</p>

<p>How can I do it using a stored procedure which I think will make it a lot more secure?</p>

<p>Thanks</p>
 ]]></content:encoded>
			<category domain="http://www.daniweb.com/web-development/php/17">PHP</category>
			<dc:creator>riahc3</dc:creator>
			<guid isPermaLink="true">http://www.daniweb.com/web-development/php/threads/454821/call-a-mysql-stored-procedure-using-php</guid>
		</item>
				<item>
			<title>Php unlink function(deleting file in a directory)</title>
			<link>http://www.daniweb.com/web-development/php/threads/454820/php-unlink-functiondeleting-file-in-a-directory</link>
			<pubDate>Fri, 17 May 2013 12:10:52 +0000</pubDate>
			<description>Hi! I have a problem with the unlink() php function. What I try to do is to delete a certain file in a directory. Now the function works fine. But when I call it then it deletes ALL the files inside of that directory. What I want is for it ...</description>
			<content:encoded><![CDATA[ <p>Hi!</p>

<p>I have a problem with the unlink() php function. What I try to do is to delete a certain file in a directory. Now the function works fine. But when I call it then it deletes ALL the files inside of that directory. What I want is for it to delete that certain file which the user can select from a list.</p>

<p>I display all the files with php and beside it is a 'X' ahref link which doesn't seem to be identified with that file next to it. This 'X' is used to delete the file.</p>

<pre><code>echo "$file &lt;a title='Delete book' href='#' onclick=".delete($file)."&gt;X&lt;/a&gt;";
</code></pre>

<p>This line prints all the files listed in the directory. (It's in a while loop)</p>

<p>Here is the delete function:</p>

<pre><code>function delete($var){
     $link = './book/'.$var;
     unlink($link);
 }
</code></pre>

<p>I'm not sure how to identify the 'X' with the book next to it. Because at the moment it seems 'X' is linked to all the files.</p>

<p>Any help will be appreciated!</p>

<p>Thanks!</p>
 ]]></content:encoded>
			<category domain="http://www.daniweb.com/web-development/php/17">PHP</category>
			<dc:creator>Phillamon</dc:creator>
			<guid isPermaLink="true">http://www.daniweb.com/web-development/php/threads/454820/php-unlink-functiondeleting-file-in-a-directory</guid>
		</item>
				<item>
			<title>Find difficulty in learning CkEditor</title>
			<link>http://www.daniweb.com/software-development/java/threads/454819/find-difficulty-in-learning-ckeditor</link>
			<pubDate>Fri, 17 May 2013 12:07:03 +0000</pubDate>
			<description>Hi these day i am trying learning ckeditor so i used CKEditor jar available for the java developer when i run given code on tomcat server this ode will not give anything please tell me &lt;ckeditor:replace replace=&quot;editor1&quot; basePath=&quot;/ckeditor/&quot; config=&quot;&lt;%= ConfigurationHelper.createConfig() %&gt;&quot; events=&quot;&lt;%= ConfigurationHelper.createEventHandlers() %&gt;&quot; /&gt; what is wrong or it ...</description>
			<content:encoded><![CDATA[ <p>Hi<br />
these day i am trying learning ckeditor so i used CKEditor jar available for the java developer<br />
when i run given code on tomcat server this ode will not give anything please tell me</p>

<pre><code class="language-java">    &lt;ckeditor:replace replace="editor1" basePath="/ckeditor/" config="&lt;%= ConfigurationHelper.createConfig() %&gt;"   events="&lt;%= ConfigurationHelper.createEventHandlers() %&gt;" /&gt;  
</code></pre>

<p>what is wrong or it works ok<br />
whole code is mention on <a href="http://docs.cksource.com/CKEditor_3.x/Developers_Guide/Java/Integration" rel="nofollow">given link</a></p>

<pre><code class="language-java">/**
 * 
 */
package testCK;
import java.util.ArrayList;
import java.util.List;

import com.ckeditor.CKEditorConfig;
import com.ckeditor.EventHandler;
import com.ckeditor.GlobalEventHandler;

/**
 * @author rahulbhalla
 *
 */
public class ConfigurationHelper {




        public static CKEditorConfig createConfig() {
            CKEditorConfig config = new CKEditorConfig();
            List&lt;List&lt;String&gt;&gt; list = new ArrayList&lt;List&lt;String&gt;&gt;();
            List&lt;String&gt; subList = new ArrayList&lt;String&gt;();
            subList.add("Source");
            subList.add("-");
            subList.add("Bold");
            subList.add("Italic");
            list.add(subList);
            config.addConfigValue("toolbar", list);
            config.addConfigValue("width","500");
    //      System.out.println("print");
            return config;
        }

        public static EventHandler createEventHandlers() {
            EventHandler handler = new EventHandler();
            handler.addEventHandler("instanceReady","function (ev) { alert(\"Loaded: \" + ev.editor.name); }");
            return handler;
        }

        public static GlobalEventHandler createGlobalEventHandlers() {
            GlobalEventHandler handler = new GlobalEventHandler();
            handler.addEventHandler("dialogDefinition","function (ev) {  alert(\"Loading dialog window: \" + ev.data.name); }");
            return handler;
        }

}




&lt;%@ page language="java" contentType="text/html; charset=UTF-8"
    pageEncoding="UTF-8"%&gt;
&lt;%@ taglib uri="<a href="http://ckeditor.com" rel="nofollow">http://ckeditor.com</a>" prefix="ckeditor"%&gt;
&lt;%@ page import="testCK.ConfigurationHelper" %&gt;
&lt;!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "<a href="http://www.w3.org/TR/html4/loose.dtd" rel="nofollow">http://www.w3.org/TR/html4/loose.dtd</a>"&gt;
&lt;html&gt;
&lt;head&gt;
&lt;meta http-equiv="Content-Type" content="text/html; charset=UTF-8"&gt;
&lt;title&gt;Insert title here&lt;/title&gt;
&lt;/head&gt;
&lt;body&gt;
    &lt;form action="sample_posteddata.jsp" method="get"&gt;
        &lt;p&gt;
            &lt;label for="editor1"&gt;Editor 1:&lt;/label&gt;
            &lt;textarea cols="80" id="editor1" name="editor1" rows="10"&gt;&lt;/textarea&gt;
        &lt;/p&gt;
        &lt;p&gt;
            &lt;input type="submit" value="Submit" /&gt;
        &lt;/p&gt;
    &lt;/form&gt;
    &lt;ckeditor:replace replace="editor1" basePath="/ckeditor/" /&gt;
    &lt;%/*    replace – points to the name or ID of the HTML textarea element that is to be replaced with a CKEditor instance.
            basePath – contains the path to the main CKEditor directory. 
    */ %&gt;

    &lt;ckeditor:replace replace="editor1" basePath="/ckeditor/" config="&lt;%= ConfigurationHelper.createConfig() %&gt;"   events="&lt;%= ConfigurationHelper.createEventHandlers() %&gt;" /&gt;  

&lt;/body&gt;
&lt;/html&gt;
</code></pre>

<p>Thanks</p>
 ]]></content:encoded>
			<category domain="http://www.daniweb.com/software-development/java/9">Java</category>
			<dc:creator>bhallarahul</dc:creator>
			<guid isPermaLink="true">http://www.daniweb.com/software-development/java/threads/454819/find-difficulty-in-learning-ckeditor</guid>
		</item>
				<item>
			<title>Listbox index is always -1</title>
			<link>http://www.daniweb.com/software-development/csharp/threads/454818/listbox-index-is-always-1</link>
			<pubDate>Fri, 17 May 2013 11:38:36 +0000</pubDate>
			<description>Hi Everyone I've been looking for a solution to this problema for a while, ive searched the net but still can't get this too work. if i put my code in the default asp template( http://i1.asp.net/asp.net/images/whitepapers/aspnet40/ASPNET4B1-image13.png?cdn_id=2013-05-08-001 ) it will work, but when i use my template i always get the ...</description>
			<content:encoded><![CDATA[ <p>Hi Everyone I've been looking for a solution to this problema for a while, ive searched the net but still can't get this too work. if i put my code in the default asp template( <a href="http://i1.asp.net/asp.net/images/whitepapers/aspnet40/ASPNET4B1-image13.png?cdn_id=2013-05-08-001" rel="nofollow">http://i1.asp.net/asp.net/images/whitepapers/aspnet40/ASPNET4B1-image13.png?cdn_id=2013-05-08-001</a> ) it will work, but when i use my template i always get the listbox Selecetedindex as -1.<br />
here is a example of what happens when i try to inspect the value using chrome. <a href="http://s21.postimg.org/3jsi8351z/weird.png" rel="nofollow">http://s21.postimg.org/3jsi8351z/weird.png</a><br />
Someone please help me.<br />
here is my code.</p>

<pre><code class="language-cs">using System;
using System.Data;
using System.Data.SqlClient;
using System.Drawing;
using System.Linq;
using System.Web.UI.WebControls;

public partial class permissaotop : System.Web.UI.Page
{
    protected void Page_Load(object sender, EventArgs e)
    {

    }  
    public void Droptopicoperfil_SelectedIndexChanged(object sender, EventArgs e)
    {
        SqlConnection conn = new SqlConnection("Data Source=Microsoft SQL Server (SqlClient);Server=Server;Initial Catalog=Forum;uid=user;pwd=password;Connect Timeout=10;TrustServerCertificate=True ");
        conn.Open();


        SqlCommand comm = conn.CreateCommand();
        comm.CommandType = CommandType.StoredProcedure;
        comm.CommandText = "SP_vertopicoperfil";

        comm.Parameters.AddWithValue("@id_topico", this.Droptopicoperfil.SelectedValue);

        SqlDataReader rdr = comm.ExecuteReader();

        lbpermitidotp.DataSource = rdr;
        lbpermitidotp.DataTextField = "Nome";
        this.lbpermitidotp.DataValueField = "Id";


        lbpermitidotp.DataBind();

        rdr.Close();
        conn.Close();

        conn.Open();

        SqlCommand comm1 = conn.CreateCommand();
        comm1.CommandType = CommandType.StoredProcedure;
        comm1.CommandText = "[SP_naotopicoperfil]";

        comm1.Parameters.AddWithValue("@id_topico", this.Droptopicoperfil.SelectedValue);
        SqlDataReader rdr1 = comm1.ExecuteReader();


        lbproibidotp.DataSource = rdr1;
        lbproibidotp.DataTextField = "Nome";
        this.lbproibidotp.DataValueField = "Id";

        lbproibidotp.DataBind();

        rdr1.Close();
        conn.Close();

    }
    protected void BtnnaopermitirClick(object sender, EventArgs e)
    {

        SqlConnection conn = new SqlConnection("Data Source=Microsoft SQL Server (SqlClient);Server=NEVETS-LAPTOP\\NEVETS;Initial Catalog=Forum;uid=sa;pwd=sql;Connect Timeout=10;TrustServerCertificate=True ");

        conn.Open();
        SqlCommand comm = conn.CreateCommand();
        comm.CommandType = CommandType.StoredProcedure;
        comm.CommandText = "usp_inserirtopicoperfil";

        comm.Parameters.AddWithValue("@id_topico", this.Droptopicoperfil.SelectedValue);             
        comm.Parameters.AddWithValue("@id_perfil", this.lbproibidotp.SelectedValue.ToString());


        SqlDataReader rdr = comm.ExecuteReader();

        if (this.lbproibidotp.SelectedIndex &gt;= 0)
        {
            this.lbproibidotp.Items.RemoveAt(this.lbproibidotp.SelectedIndex);
        }

        lbpermitidotp.DataBind();
        lbproibidotp.DataBind();
        Droptopicoperfil.DataBind();

        rdr.Close();
        conn.Close();

        Droptopicoperfil_SelectedIndexChanged(this, null);
    }
    protected void BtnpermitirClick(object sender, EventArgs e)
    {

        SqlConnection conn = new SqlConnection("Data Source=Microsoft SQL Server (SqlClient);Server=NEVETS-LAPTOP\\NEVETS;Initial Catalog=Forum;uid=sa;pwd=sql;Connect Timeout=10;TrustServerCertificate=True ");
        conn.Open();

        SqlCommand comm = conn.CreateCommand();
        comm.CommandType = CommandType.StoredProcedure;
        comm.CommandText = "SP_apagartopicoperfil";

        comm.Parameters.AddWithValue("@id_topico", this.Droptopicoperfil.SelectedValue);

        comm.Parameters.AddWithValue("@id_perfil", lbpermitidotp.SelectedValue.ToString());


        SqlDataReader rdr = comm.ExecuteReader();

        lbpermitidotp.DataSource = rdr;

        if (this.lbpermitidotp.SelectedIndex &gt;= 0)
        {
            this.lbpermitidotp.Items.RemoveAt(this.lbpermitidotp.SelectedIndex);
        }

        lbpermitidotp.DataBind();
        lbproibidotp.DataBind();
        Droptopicoperfil.DataBind();

        rdr.Close();
        conn.Close();

        Droptopicoperfil_SelectedIndexChanged(this, null);
    }

    protected void Button1_Click(object sender, EventArgs e)
    {
    //testing listbox
        Label3.Text =lbproibidotp.SelectedIndex.ToString();
        //Always gets the result -1

    }
}
</code></pre>
 ]]></content:encoded>
			<category domain="http://www.daniweb.com/software-development/csharp/61">C#</category>
			<dc:creator>NEVETS22387</dc:creator>
			<guid isPermaLink="true">http://www.daniweb.com/software-development/csharp/threads/454818/listbox-index-is-always-1</guid>
		</item>
				<item>
			<title>Larry Page’s I/O Conference </title>
			<link>http://www.daniweb.com/internet-marketing/search-engine-optimization/threads/454817/larry-pages-io-conference-</link>
			<pubDate>Fri, 17 May 2013 11:23:11 +0000</pubDate>
			<description>Larry’s appearance, especially after sharing his vocal-cord ailment a day earlier on Google+, made I/O Day 1 dominate digital tabloids.. Read Interesting Story with link that pointing Better Lesson For Marketer http://www.fatbit.com/fab/larry-pages-io-conference-gig-hidden-lessons-for-web-marketers-to-pick/</description>
			<content:encoded><![CDATA[ <p>Larry’s appearance, especially after sharing his vocal-cord ailment a day earlier on Google+, made I/O Day 1 dominate digital tabloids.. Read Interesting Story with link that pointing Better Lesson For Marketer  <a href="http://www.fatbit.com/fab/larry-pages-io-conference-gig-hidden-lessons-for-web-marketers-to-pick/" rel="nofollow">http://www.fatbit.com/fab/larry-pages-io-conference-gig-hidden-lessons-for-web-marketers-to-pick/</a></p>
 ]]></content:encoded>
			<category domain="http://www.daniweb.com/internet-marketing/search-engine-optimization/45">Search Engine Optimization</category>
			<dc:creator>Smohil</dc:creator>
			<guid isPermaLink="true">http://www.daniweb.com/internet-marketing/search-engine-optimization/threads/454817/larry-pages-io-conference-</guid>
		</item>
				<item>
			<title>Java equivalent of winapi message queue</title>
			<link>http://www.daniweb.com/software-development/java/threads/454816/java-equivalent-of-winapi-message-queue</link>
			<pubDate>Fri, 17 May 2013 11:20:33 +0000</pubDate>
			<description>Hi everyone, I am a C/C++ winapi developer and have to rewrite a &quot;Dialog based&quot; application in java, so that it will execute as an applet in any browser. My java skills are very few, since my knowledge is limited to past college classes. The application is not a large ...</description>
			<content:encoded><![CDATA[ <p>Hi everyone,</p>

<p>I am a C/C++ winapi developer and have to rewrite a "Dialog based" application in java, so that it will execute as an applet in any browser.</p>

<p>My java skills are very few, since my knowledge is limited to past college classes.</p>

<p>The application is not a large scale one, since it only implements a GUI, with a few screen interactions, which are driven by data from udp network connections.</p>

<p>In a windows development model, i would create worker threads wich handle the network communication and feed the gui with data through the window message queue, probably using SendMessage or PostMessage functions.</p>

<p>So my question is, how do i implement this kind of model in java?<br />
I am not interested, for the time being, in learning another model of thread communication, i just want to know if there is anyway to apply the same model in java, because i am quite familiar with it.</p>

<p>Thanks in advance!</p>
 ]]></content:encoded>
			<category domain="http://www.daniweb.com/software-development/java/9">Java</category>
			<dc:creator>ktsangop</dc:creator>
			<guid isPermaLink="true">http://www.daniweb.com/software-development/java/threads/454816/java-equivalent-of-winapi-message-queue</guid>
		</item>
				<item>
			<title>Assistance with ecommerce services providingsite</title>
			<link>http://www.daniweb.com/internet-marketing/ecommerce/threads/454815/assistance-with-ecommerce-services-providingsite</link>
			<pubDate>Fri, 17 May 2013 11:04:11 +0000</pubDate>
			<description>I have the sute with the ecommerce theme providing all types of ecommerce services that consists [product upload services](http://www.suntecindia.net/ecommerce-product-catalog-processing-services.html) and management services, please help me out with some tips that how can i improve my sales an services.</description>
			<content:encoded><![CDATA[ <p>I have the sute with the ecommerce theme providing all types of ecommerce services that consists <a href="http://www.suntecindia.net/ecommerce-product-catalog-processing-services.html" rel="nofollow">product upload services</a> and management services, please help me out with some tips that how can i improve my sales an services.</p>
 ]]></content:encoded>
			<category domain="http://www.daniweb.com/internet-marketing/ecommerce/46">eCommerce</category>
			<dc:creator>SidRhyes</dc:creator>
			<guid isPermaLink="true">http://www.daniweb.com/internet-marketing/ecommerce/threads/454815/assistance-with-ecommerce-services-providingsite</guid>
		</item>
				<item>
			<title>how to make  uploaded file information below submit button</title>
			<link>http://www.daniweb.com/web-development/php/threads/454812/how-to-make-uploaded-file-information-below-submit-button</link>
			<pubDate>Fri, 17 May 2013 09:28:53 +0000</pubDate>
			<description>after press submit button to upload the image, the information will display at new window, i need the information will be display below submit button. my code: &lt;?php if($_GET['action'] == &quot;upload&quot;) { ?&gt; &lt;div id=&quot;upload&quot;&gt; &lt;br/&gt;&lt;br/&gt; &lt;form action=&quot;upload_image.php?action=upload&quot; method=&quot;post&quot; enctype=&quot;multipart/form-data&quot;&gt; &lt;label for=&quot;file&quot;&gt;Gambar yang ingin dimuat naik:&lt;/label&gt; &lt;input type=&quot;file&quot; name=&quot;file&quot; id=&quot;file&quot;&gt;&lt;br&gt;&lt;br/&gt; ...</description>
			<content:encoded><![CDATA[ <p>after press submit button to upload the image, the information will display at new window, i need the information will be display below submit button.</p>

<p>my code:</p>

<pre><code>&lt;?php
    if($_GET['action'] == "upload")
    {
?&gt;  
&lt;div id="upload"&gt;
&lt;br/&gt;&lt;br/&gt;
&lt;form action="upload_image.php?action=upload" method="post" enctype="multipart/form-data"&gt;
&lt;label for="file"&gt;Gambar yang ingin dimuat naik:&lt;/label&gt;
&lt;input type="file" name="file" id="file"&gt;&lt;br&gt;&lt;br/&gt;
&lt;input type="submit" name="submit" value="Submit" id="submit_upload"&gt;&lt;br/&gt;&lt;br/&gt;
&lt;/form&gt;
&lt;/div&gt;
&lt;?php

$allowedExts = array("gif", "jpeg", "jpg", "png");
$value = explode(".", $_FILES["file"]["name"]);
$extension = end($value);
if ((($_FILES["file"]["type"] == "image/gif")
|| ($_FILES["file"]["type"] == "image/jpeg")
|| ($_FILES["file"]["type"] == "image/jpg")
|| ($_FILES["file"]["type"] == "image/pjpeg")
|| ($_FILES["file"]["type"] == "image/x-png")
|| ($_FILES["file"]["type"] == "image/png"))
//&amp;&amp; ($_FILES["file"]["size"] &lt; 20000)
&amp;&amp; in_array($extension, $allowedExts))
  {
  if ($_FILES["file"]["error"] &gt; 0)
    {
    echo "Return Code: " . $_FILES["file"]["error"] . "&lt;br&gt;";
    }
    else
    {
        echo "Upload: " . $_FILES["file"]["name"] . "&lt;br&gt;";
        echo "Type: " . $_FILES["file"]["type"] . "&lt;br&gt;";
        //echo "Size: " . ($_FILES["file"]["size"] / 1024) . " kB&lt;br&gt;";
        echo "Temp file: " . $_FILES["file"]["tmp_name"] . "&lt;br&gt;";

        if (file_exists("upload/" . $_FILES["file"]["name"]))
        {
        echo $_FILES["file"]["name"] . " already exists. ";
        }
        else
        {
            $_POST = array_map("mysql_real_escape_string", $_POST);
            //if ($img = $_FILES["file"]["tmp_name"]) {
            //$image_url = md5_file($img) . ".jpeg";

            if(move_uploaded_file($_FILES["file"]["tmp_name"],"upload/" . $_FILES["file"]["name"]))
            {
                //klu berjaya upload , then simpan nama kt database
                $conn = mysql_connect('localhost','root','');
                mysql_select_db('daftar',$conn);
                $link = "<a href="http://localhost/form/admin2/upload/" rel="nofollow">http://localhost/form/admin2/upload/</a>" . $_FILES["file"]["name"];;
                $sql = "insert into images (image,link) values ('".$_FILES['file']['name']."','".$link."')";
                if(mysql_query($sql))
                {
                echo "Stored in: " . "upload/" . $_FILES["file"]["name"];
                }
                else
                {
                echo 'File name not stored in database';
                }
            }     
        }
      }
   }
else
  {
  echo "Invalid file";
  }
    }
    else
    {
?&gt;
&lt;?php
require("../global.php");


echo "&lt;title&gt;".$title2."&lt;/title&gt;";
echo "&lt;link rel='stylesheet' type='text/css' href='style.css' /&gt;";


echo"
&lt;div id='upload'&gt;
&lt;br/&gt;&lt;br/&gt;
&lt;form action='upload_image.php?action=upload' method='post' enctype='multipart/form-data'&gt;
&lt;label for='file'&gt;Gambar yang ingin dimuat naik:&lt;/label&gt;
&lt;input type='file' name='file' id='file'&gt;&lt;br&gt;&lt;br/&gt;
&lt;input type='submit' name='submit' value='Submit' id='submit_upload'&gt;&lt;br/&gt;&lt;br/&gt;
&lt;/form&gt;
&lt;/div&gt;
";

}
?&gt;
</code></pre>
 ]]></content:encoded>
			<category domain="http://www.daniweb.com/web-development/php/17">PHP</category>
			<dc:creator>dina85</dc:creator>
			<guid isPermaLink="true">http://www.daniweb.com/web-development/php/threads/454812/how-to-make-uploaded-file-information-below-submit-button</guid>
		</item>
				<item>
			<title>Building my own processor &lt;step 1&gt;</title>
			<link>http://www.daniweb.com/hardware-and-software/threads/454811/building-my-own-processor-step-1</link>
			<pubDate>Fri, 17 May 2013 09:03:30 +0000</pubDate>
			<description>I am planning to build my own processor. A simple one to start with. I saw many videos on it and did research too. I've made the general layout of it. What I lack is the resources. **Can anyone tell what all would I need to make one?** Of course ...</description>
			<content:encoded><![CDATA[ <p>I am planning to build my own processor. A simple one to start with. I saw many videos on it and did research too. I've made the general layout of it.</p>

<p>What I lack is the resources. <strong>Can anyone tell what all would I need to make one?</strong> Of course it would be big in size and would be slow in speed, but I want to give it a start. <strong>Is anyone here engineered a processor?</strong></p>
 ]]></content:encoded>
			<category domain="http://www.daniweb.com/hardware-and-software/1">Hardware and Software</category>
			<dc:creator>nmakes</dc:creator>
			<guid isPermaLink="true">http://www.daniweb.com/hardware-and-software/threads/454811/building-my-own-processor-step-1</guid>
		</item>
				<item>
			<title>Function Overloading and Operator Overloading</title>
			<link>http://www.daniweb.com/software-development/cpp/threads/454810/function-overloading-and-operator-overloading</link>
			<pubDate>Fri, 17 May 2013 08:32:12 +0000</pubDate>
			<description>What is Function Overloading and Operator Overloading?</description>
			<content:encoded><![CDATA[ <p>What is Function Overloading and Operator Overloading?</p>
 ]]></content:encoded>
			<category domain="http://www.daniweb.com/software-development/cpp/8">C++</category>
			<dc:creator>chrispitt</dc:creator>
			<guid isPermaLink="true">http://www.daniweb.com/software-development/cpp/threads/454810/function-overloading-and-operator-overloading</guid>
		</item>
				<item>
			<title>JSP</title>
			<link>http://www.daniweb.com/web-development/jsp/threads/454809/jsp</link>
			<pubDate>Fri, 17 May 2013 08:30:06 +0000</pubDate>
			<description>What are the life cycle methods of JSP?</description>
			<content:encoded><![CDATA[ <p>What are the life cycle methods of JSP?</p>
 ]]></content:encoded>
			<category domain="http://www.daniweb.com/web-development/jsp/24">JSP</category>
			<dc:creator>chrispitt</dc:creator>
			<guid isPermaLink="true">http://www.daniweb.com/web-development/jsp/threads/454809/jsp</guid>
		</item>
				<item>
			<title>Htaccess redirect to external domain</title>
			<link>http://www.daniweb.com/web-development/php/threads/454807/htaccess-redirect-to-external-domain</link>
			<pubDate>Fri, 17 May 2013 08:27:21 +0000</pubDate>
			<description>Hi, I would have a subdomain on domain A. Basicly I want to forward this to a particular page on domain B. But it's slightly complicated- I want to mask this so it looks like domain A hosts the actual page than domain B. Eg. Domain A http://something.domainA.com Domain B ...</description>
			<content:encoded><![CDATA[ <p>Hi,</p>

<p>I would have a subdomain on domain A. Basicly I want to forward this to a particular page on domain B. But it's slightly complicated- I want to mask this so it looks like domain A hosts the actual page than domain B.</p>

<p>Eg.<br />
Domain A<br />
<a href="http://something.domainA.com" rel="nofollow">http://something.domainA.com</a></p>

<p>Domain B<br />
<a href="http://subdomain.domainB.com/particular/page?parameters=yes" rel="nofollow">http://subdomain.domainB.com/particular/page?parameters=yes</a></p>

<p>Desired URL in address bar<br />
<a href="http://something.domainA.com/particular/page?parameters=yes" rel="nofollow">http://something.domainA.com/particular/page?parameters=yes</a></p>

<p>Hope that makes sense, please ask if there are any questions.</p>

<p>Cheers,</p>
 ]]></content:encoded>
			<category domain="http://www.daniweb.com/web-development/php/17">PHP</category>
			<dc:creator>bsewell</dc:creator>
			<guid isPermaLink="true">http://www.daniweb.com/web-development/php/threads/454807/htaccess-redirect-to-external-domain</guid>
		</item>
				<item>
			<title>error to make a download link from database</title>
			<link>http://www.daniweb.com/web-development/php/threads/454806/error-to-make-a-download-link-from-database</link>
			<pubDate>Fri, 17 May 2013 08:25:13 +0000</pubDate>
			<description>can't download file from database, got error, help me please.. &lt;?php require(&quot;conn2.php&quot;); $sql=&quot;select image from images where id='$_GET[id]';&quot;; $result = mysql_query($sql); $row = mysql_fetch_array($result) $name = $row['image']; // the name of the file that is downloaded $FilePath = &quot;upload&quot;; // the folder of the file that is downloaded , you ...</description>
			<content:encoded><![CDATA[ <p>can't download file from database, got error, help me please..</p>

<p>&lt;?php<br />
require("conn2.php");<br />
$sql="select image from images where id='$_GET[id]';";<br />
$result = mysql_query($sql);<br />
$row = mysql_fetch_array($result)</p>

<p>$name = $row['image'];  // the name of the file that is downloaded<br />
$FilePath = "upload";  // the folder of the file that is downloaded , you can put the file in a folder on the server just for more order</p>

<p>$size = filesize($FilePath . $name) ;<br />
header("Content-Type: application/force-download; name=\"". $name ."\"");<br />
header("Content-Transfer-Encoding: binary");<br />
header("Content-Length: ". $size ."");<br />
header("Content-Disposition: attachment; filename=\"". $name ."\"");<br />
header("Expires: 0");<br />
header("Cache-Control: no-cache, must-revalidate");<br />
header("Pragma: no-cache");<br />
echo (readfile($FilePath . $name));<br />
?&gt;</p>
 ]]></content:encoded>
			<category domain="http://www.daniweb.com/web-development/php/17">PHP</category>
			<dc:creator>dina85</dc:creator>
			<guid isPermaLink="true">http://www.daniweb.com/web-development/php/threads/454806/error-to-make-a-download-link-from-database</guid>
		</item>
				<item>
			<title>Chat history save to database</title>
			<link>http://www.daniweb.com/software-development/vbnet/threads/454804/chat-history-save-to-database</link>
			<pubDate>Fri, 17 May 2013 07:54:37 +0000</pubDate>
			<description>hi we have an office chat messenger in our office, it is executable, and ofcourse cannot modify the codes already. i dont know exactly how this messenger save history, looking from its root folder, i cant see something related from its conversation or message history. I just need to save ...</description>
			<content:encoded><![CDATA[ <p>hi</p>

<p>we have an office chat messenger in our office, it is executable, and ofcourse cannot modify the codes already.<br />
i dont know exactly how this messenger save history, looking from its root folder, i cant see something related from its conversation or message history. I just need to save all incoming and outgoing messages to a database? is that possible? im thinking of getting data from ports that the messenger might used in sending and receiving</p>

<p>thanks</p>
 ]]></content:encoded>
			<category domain="http://www.daniweb.com/software-development/vbnet/58">VB.NET</category>
			<dc:creator>Lethugs</dc:creator>
			<guid isPermaLink="true">http://www.daniweb.com/software-development/vbnet/threads/454804/chat-history-save-to-database</guid>
		</item>
				<item>
			<title>make syntax of max if in vb excel 2007?</title>
			<link>http://www.daniweb.com/software-development/threads/454803/make-syntax-of-max-if-in-vb-excel-2007</link>
			<pubDate>Fri, 17 May 2013 07:42:47 +0000</pubDate>
			<description>does anyone know how to make syntax of max if in vb excel 2007? (not formula)</description>
			<content:encoded><![CDATA[ <p>does anyone know how to<br />
make syntax of max if in vb excel 2007? (not formula)</p>
 ]]></content:encoded>
			<category domain="http://www.daniweb.com/software-development/2">Software Development</category>
			<dc:creator>andyshera</dc:creator>
			<guid isPermaLink="true">http://www.daniweb.com/software-development/threads/454803/make-syntax-of-max-if-in-vb-excel-2007</guid>
		</item>
				<item>
			<title>tag postion</title>
			<link>http://www.daniweb.com/web-development/aspnet/threads/454802/tag-postion</link>
			<pubDate>Fri, 17 May 2013 07:22:39 +0000</pubDate>
			<description>how to postion tags fix like &lt;p&gt;,&lt;div&gt;. that could not move when i add some contents at same web page.</description>
			<content:encoded><![CDATA[ <p>how to postion tags fix like &lt;p&gt;,&lt;div&gt;. that could not move when i add some contents at same web page.</p>
 ]]></content:encoded>
			<category domain="http://www.daniweb.com/web-development/aspnet/18">ASP.NET</category>
			<dc:creator>kumar89hitesh</dc:creator>
			<guid isPermaLink="true">http://www.daniweb.com/web-development/aspnet/threads/454802/tag-postion</guid>
		</item>
				<item>
			<title>position of contents</title>
			<link>http://www.daniweb.com/web-development/aspnet/threads/454801/position-of-contents</link>
			<pubDate>Fri, 17 May 2013 07:20:29 +0000</pubDate>
			<description> how to positon contents in the asp.net? I have a problem to position contents of web page. i have many div at one page when i positon one div then another div move to another place and i have to position div again and again when i add some content ...</description>
			<content:encoded><![CDATA[ <pre><code>how to positon contents in the asp.net?
I have a problem to position contents of web page. i have many div at one page when i positon one div then another div move to another place and i have to position div again and again when i add some content at web page.please guide me to solve this problem.
</code></pre>
 ]]></content:encoded>
			<category domain="http://www.daniweb.com/web-development/aspnet/18">ASP.NET</category>
			<dc:creator>kumar89hitesh</dc:creator>
			<guid isPermaLink="true">http://www.daniweb.com/web-development/aspnet/threads/454801/position-of-contents</guid>
		</item>
				<item>
			<title>hi guys</title>
			<link>http://www.daniweb.com/hardware-and-software/threads/454800/hi-guys</link>
			<pubDate>Fri, 17 May 2013 06:37:03 +0000</pubDate>
			<description>i m in leave for month when ever back to position i may have new problems in dicussion</description>
			<content:encoded><![CDATA[ <p>i m in leave for month when ever back to position i may have new problems in dicussion</p>
 ]]></content:encoded>
			<category domain="http://www.daniweb.com/hardware-and-software/1">Hardware and Software</category>
			<dc:creator>Ali Musa</dc:creator>
			<guid isPermaLink="true">http://www.daniweb.com/hardware-and-software/threads/454800/hi-guys</guid>
		</item>
				<item>
			<title>Detect headphones while in background</title>
			<link>http://www.daniweb.com/hardware-and-software/apple/ios-iphone-os/threads/454799/detect-headphones-while-in-background</link>
			<pubDate>Fri, 17 May 2013 06:18:29 +0000</pubDate>
			<description>Hi all! I am trying to listen to plug in/out event for headphones while in background. The problem is that while the events are generated in real-time, I am not able to do handle them in real-time. Whatever code I run in the background gets executed all at once when ...</description>
			<content:encoded><![CDATA[ <p>Hi all!</p>

<p>I am trying to listen to plug in/out event for headphones while in background. The problem is that while the events are generated in real-time, I am not able to do handle them in real-time. Whatever code I run in the background gets executed all at once when the user opens the app next time. (some main queue problem?)<br />
I want to send location of the user to a server whenever user plugs out headphone when in background.</p>

<p>What should I do for this? I can't spawn a background thread while in background too (it gets spawned after the user opens the app again). Any ideas?</p>

<p>Thanks in advance!</p>
 ]]></content:encoded>
			<category domain="http://www.daniweb.com/hardware-and-software/apple/ios-iphone-os/101">iOS (iPhone OS)</category>
			<dc:creator>hypernova</dc:creator>
			<guid isPermaLink="true">http://www.daniweb.com/hardware-and-software/apple/ios-iphone-os/threads/454799/detect-headphones-while-in-background</guid>
		</item>
				<item>
			<title>Listview scroll bar - How do I know user has clicked listview scroll bar ??</title>
			<link>http://www.daniweb.com/software-development/csharp/threads/454798/listview-scroll-bar-how-do-i-know-user-has-clicked-listview-scroll-bar-</link>
			<pubDate>Fri, 17 May 2013 06:09:23 +0000</pubDate>
			<description> Hi, i am creating a text box in listview item. How I create is, I just take the location of the item and create a textbox on that location. OnFocus over, I just take the textbox text and put it in that perticular listview item and hide the textbox. Now ...</description>
			<content:encoded><![CDATA[ <p>Hi,</p>

<p>i am creating a text box in listview item.<br />
How I create is, I just take the location of the item and create a textbox on that location.<br />
OnFocus over, I just take the textbox text and put it in that perticular listview item and hide<br />
the textbox.</p>

<p>Now the problem is, since i am creating the textbox on a perticular location, when I scroll the lisview<br />
the textbox remain in the same place (textbox does not get scrolled) and the data gets scrolled.</p>

<p>Solution what i thought is, whenver user wants to scroll or user clicks scroll bar, I<br />
will hide the textbox.</p>

<p>But I could'n find the scroll bar click event. Or how do I find that user has clicked scroll bar ??</p>

<p>Is there any event where I can do this ??</p>

<p>Thanks.</p>
 ]]></content:encoded>
			<category domain="http://www.daniweb.com/software-development/csharp/61">C#</category>
			<dc:creator>sumitrapaul123</dc:creator>
			<guid isPermaLink="true">http://www.daniweb.com/software-development/csharp/threads/454798/listview-scroll-bar-how-do-i-know-user-has-clicked-listview-scroll-bar-</guid>
		</item>
				<item>
			<title>Augmented Reality Engines and Mobile Development</title>
			<link>http://www.daniweb.com/software-development/mobile-development/threads/454797/augmented-reality-engines-and-mobile-development</link>
			<pubDate>Fri, 17 May 2013 05:57:56 +0000</pubDate>
			<description>Lately I have been very interested in augmented reality applications and the many uses there can be for this kinds of apps, but there is very little information on the existing engines for object or image target recognition. As far as I've managed to investigate, the best (free, since there's ...</description>
			<content:encoded><![CDATA[ <p>Lately I have been very interested in augmented reality applications and the many uses there can be for this kinds of apps, but there is very little information on the existing engines for object or image target recognition. As far as I've managed to investigate, the best (free, since there's also <a href="http://www.wikitude.com/" rel="nofollow">Wikitude</a>) engine to work with for predefined image targets is <a href="http://www.qualcomm.com/solutions/augmented-reality" rel="nofollow">Qualcomm's Vuforia</a>, even though there are <a href="http://www.hitl.washington.edu/artoolkit/" rel="nofollow">several</a> <a href="http://www.mixare.org/" rel="nofollow">other</a> <a href="http://obviousengine.com/" rel="nofollow">http://obviousengine.com/</a> that work with precomposed images and patters.</p>

<p>I want to know if any of you, fellow developers, have any knowledge on other engines for this kind of applications, in any of the topics that involve real world object tracking, may it be:</p>

<ul><li>Text tracking, identifying text and such</li>
<li>Image tracking, precomposed patterns, 2d object recognition</li>
<li>3d object recognition</li>
<li>human body recognition, etc</li>
</ul>

<p>I'm currently learning to develop for Irrlicht to integrate the Vuforia engine to play around with some applications. Anyone else experimenting with AR?</p>
 ]]></content:encoded>
			<category domain="http://www.daniweb.com/software-development/mobile-development/181">Mobile Development</category>
			<dc:creator>Nichito</dc:creator>
			<guid isPermaLink="true">http://www.daniweb.com/software-development/mobile-development/threads/454797/augmented-reality-engines-and-mobile-development</guid>
		</item>
				<item>
			<title>iPhone 3gs</title>
			<link>http://www.daniweb.com/hardware-and-software/apple/ios-iphone-os/threads/454796/iphone-3gs</link>
			<pubDate>Fri, 17 May 2013 05:56:03 +0000</pubDate>
			<description>What are the features of iphone 3gs?</description>
			<content:encoded><![CDATA[ <p>What are the features of iphone 3gs?</p>
 ]]></content:encoded>
			<category domain="http://www.daniweb.com/hardware-and-software/apple/ios-iphone-os/101">iOS (iPhone OS)</category>
			<dc:creator>sushants</dc:creator>
			<guid isPermaLink="true">http://www.daniweb.com/hardware-and-software/apple/ios-iphone-os/threads/454796/iphone-3gs</guid>
		</item>
				<item>
			<title>Urlencode and Urldecode</title>
			<link>http://www.daniweb.com/web-development/php/threads/454795/urlencode-and-urldecode</link>
			<pubDate>Fri, 17 May 2013 05:52:11 +0000</pubDate>
			<description>What is Urlencode and Urldecode in PHP?</description>
			<content:encoded><![CDATA[ <p>What is Urlencode and Urldecode in PHP?</p>
 ]]></content:encoded>
			<category domain="http://www.daniweb.com/web-development/php/17">PHP</category>
			<dc:creator>sushants</dc:creator>
			<guid isPermaLink="true">http://www.daniweb.com/web-development/php/threads/454795/urlencode-and-urldecode</guid>
		</item>
				<item>
			<title>CComboBox madness</title>
			<link>http://www.daniweb.com/software-development/cpp/threads/454794/ccombobox-madness</link>
			<pubDate>Fri, 17 May 2013 05:44:38 +0000</pubDate>
			<description>I have a combobox in a dialog which I populate in the resource editor with this string: -12;-11;-10;-9;-8;-7;-6;-5;-4;-3;-2;-1;0;1;2;3;4;5;6;7;8;9;10;11;12 If the user chooses a new number from the combobox lots of other things happen in the dialog, then I select the number chosen again, this time programatically. (Some numbers are not ...</description>
			<content:encoded><![CDATA[ <p>I have a combobox in a dialog which I populate in the resource editor with this string:</p>

<p>-12;-11;-10;-9;-8;-7;-6;-5;-4;-3;-2;-1;0;1;2;3;4;5;6;7;8;9;10;11;12</p>

<p>If the user chooses a new number from the combobox lots of other things happen in the dialog, then I select the number chosen again, this time programatically. (Some numbers are not allowed and the calculation is not simple.) The combo is a DropList type.</p>

<p>Anyway the problem is that if the user selects "-1", when I use</p>

<pre><code class="language-cpp">const int ikCurSel = m_cbInclinePcent.SelectString (-1,szIncline) ;
</code></pre>

<p>it all works, the correct string is selected, as long as I do not use szIncline = "-1". If I try to select "-1" the combo selects the first string, ikCurSel becomes 0, and the actual string selected is "-12". So the user selects "-1" then sees his selection change to "-12". If he selects any other value, "-2" for example, or "11" then all works as it should.</p>

<p>The first -1 in the SelectString call is called nStartAfter and means "search for a match from and including the first string". The second parameter is a string, with, in this case "-1" in it, as a <em>string</em>.</p>

<p>Summarising: Why does</p>

<pre><code class="language-cpp"> SelectString (-1,"-1") ;
</code></pre>

<p>not work, selecting the first string in the list rather than the 12th  ?</p>
 ]]></content:encoded>
			<category domain="http://www.daniweb.com/software-development/cpp/8">C++</category>
			<dc:creator>owenransen</dc:creator>
			<guid isPermaLink="true">http://www.daniweb.com/software-development/cpp/threads/454794/ccombobox-madness</guid>
		</item>
				<item>
			<title>Excel Help : How to get atomic values in excel cell.</title>
			<link>http://www.daniweb.com/web-development/databases/threads/454793/excel-help-how-to-get-atomic-values-in-excel-cell</link>
			<pubDate>Fri, 17 May 2013 04:26:28 +0000</pubDate>
			<description>I have data in which column 'C' have cells which contain multiple values separated by (,).Now I want to get atomic values in all cells of column 'C'. i.e. that for a cell when there is more than one value; separated by (,) it should be copied in the next ...</description>
			<content:encoded><![CDATA[ <p>I have data in which column 'C' have cells which contain multiple values separated by (,).Now I want to get atomic values in all cells of column 'C'. i.e. that for a cell when there is more than one value; separated by (,) it should be copied in the next row with all the other columns of that row copied with the value we want to separate, in the next row...<br />
In simple I want my data to be in 1NF.</p>
 ]]></content:encoded>
			<category domain="http://www.daniweb.com/web-development/databases/16">Databases</category>
			<dc:creator>fashxfreak</dc:creator>
			<guid isPermaLink="true">http://www.daniweb.com/web-development/databases/threads/454793/excel-help-how-to-get-atomic-values-in-excel-cell</guid>
		</item>
				<item>
			<title>Problem with Python for S60</title>
			<link>http://www.daniweb.com/software-development/python/threads/454792/problem-with-python-for-s60</link>
			<pubDate>Fri, 17 May 2013 04:02:07 +0000</pubDate>
			<description>I just downloaded [Python for S60 2.0.0](http://en.wikipedia.org/wiki/Python_for_S60).The instructions say that for using it,I should open PyS60 Application Packager but it complains:«No module named tkFileDialog». I'm using Python3.3.2 And I should say that I know Python for S60 is really old and outdated and that maybe the problem,so I will appreciate ...</description>
			<content:encoded><![CDATA[ <p>I just downloaded <a href="http://en.wikipedia.org/wiki/Python_for_S60" rel="nofollow">Python for S60 2.0.0</a>.The instructions say that for using it,I should open PyS60 Application Packager but it complains:«No module named tkFileDialog».<br />
I'm using Python3.3.2<br />
And I should say that I know Python for S60 is really old and outdated and that maybe the problem,so I will appreciate any other suggestions about python programming for symbian.<br />
Thanks</p>
 ]]></content:encoded>
			<category domain="http://www.daniweb.com/software-development/python/114">Python</category>
			<dc:creator>pywriter</dc:creator>
			<guid isPermaLink="true">http://www.daniweb.com/software-development/python/threads/454792/problem-with-python-for-s60</guid>
		</item>
				<item>
			<title>Going for a piledriver with ATI Radeon HD instead of i5 or with NVidia?</title>
			<link>http://www.daniweb.com/hardware-and-software/threads/454791/going-for-a-piledriver-with-ati-radeon-hd-instead-of-i5-or-with-nvidia</link>
			<pubDate>Fri, 17 May 2013 03:37:55 +0000</pubDate>
			<description>**What do AMD's piledrivers do? Increase threading etc?** Lately I was doing a lot of research on AMD FX 8350. It says 4.0 GHz 8 cores. So **does that mean that at most, I can get 8x4 = 32GHz, without any overclocking or turbo thing?** That would seriously be superfast. ...</description>
			<content:encoded><![CDATA[ <p><strong>What do AMD's piledrivers do? Increase threading etc?</strong></p>

<p>Lately I was doing a lot of research on AMD FX 8350. It says 4.0 GHz 8 cores. So <strong>does that mean that at most, I can get 8x4 = 32GHz, without any overclocking or turbo thing?</strong> That would seriously be superfast.</p>

<p>But in many forums I found out that it actually has 4 cores and it just has double the threads. So it is actually not an 8 core processor. So, <strong>what does that mean? It can execute double the instructions at one go?</strong></p>

<p>I know that at one time all 8 cores will not be used. So <strong>can I make 2 cores process my graphics and the rest do their own job like a 6 core processor?</strong></p>

<p>I was thinking of getting Gigabyte AMD/ATI Radeon 6670 2 GB graphics card. So, <strong>if I could combine the labour of those 2 cores with this graphics card, can I run Crysis 3 at ultra settings without any lag?</strong></p>

<p>Is it good to go for AMD FX 8350? Is it future proof? If I have this configuration:</p>

<p>AMD FX 8350 4.0 GHz<br />
Gigabyte ATI Radeon 6670 (2GB)<br />
Corsair Vengeance 8GB RAM (1x8)<br />
ASUS M5A78L-M LX V2 motherboard<br />
Seagate Barracuda 1TB HDD<br />
ASUS DRW-24D3ST DVD Burner internal Optical Drive<br />
Cooler Master Elite 310 Cabinet<br />
Cooler Master Thunder <strong>500W PSU</strong></p>

<p><strong>IS THIS FUTURE PROOF FOR LIKE 6 YEARS?</strong></p>
 ]]></content:encoded>
			<category domain="http://www.daniweb.com/hardware-and-software/1">Hardware and Software</category>
			<dc:creator>nmakes</dc:creator>
			<guid isPermaLink="true">http://www.daniweb.com/hardware-and-software/threads/454791/going-for-a-piledriver-with-ati-radeon-hd-instead-of-i5-or-with-nvidia</guid>
		</item>
				<item>
			<title>Shared products DB between multiple Magento installations</title>
			<link>http://www.daniweb.com/web-development/php/threads/454790/shared-products-db-between-multiple-magento-installations</link>
			<pubDate>Fri, 17 May 2013 03:16:13 +0000</pubDate>
			<description>Is it possible? If you know how let me know.</description>
			<content:encoded><![CDATA[ <p>Is it possible?<br />
If you know how let me know.</p>
 ]]></content:encoded>
			<category domain="http://www.daniweb.com/web-development/php/17">PHP</category>
			<dc:creator>igabc</dc:creator>
			<guid isPermaLink="true">http://www.daniweb.com/web-development/php/threads/454790/shared-products-db-between-multiple-magento-installations</guid>
		</item>
				<item>
			<title>Appending Text to End of Each Line of File</title>
			<link>http://www.daniweb.com/software-development/cpp/threads/454789/appending-text-to-end-of-each-line-of-file</link>
			<pubDate>Fri, 17 May 2013 02:57:45 +0000</pubDate>
			<description>I am trying to add a comma to the end of each line ('\n') of a text file til the end of the file is reached. I am opening the file in append mode but am unsure as to how to go about identifying when the end of line is ...</description>
			<content:encoded><![CDATA[ <p>I am trying to add a comma to the end of each line ('\n') of a text file til the end of the file is reached. I am opening the file in append mode but am unsure as to how to go about identifying when the end of line is reached and how to add the comma (perhaps replace the newline char with the comma).</p>

<p>Any suggestions?</p>
 ]]></content:encoded>
			<category domain="http://www.daniweb.com/software-development/cpp/8">C++</category>
			<dc:creator>Jorox03</dc:creator>
			<guid isPermaLink="true">http://www.daniweb.com/software-development/cpp/threads/454789/appending-text-to-end-of-each-line-of-file</guid>
		</item>
				<item>
			<title>How to read a string?</title>
			<link>http://www.daniweb.com/software-development/csharp/threads/454788/how-to-read-a-string</link>
			<pubDate>Fri, 17 May 2013 02:47:32 +0000</pubDate>
			<description>Hi All, How can I get sample.xls from C:\users\sample\desktop\sample.xls to string? Thank you.</description>
			<content:encoded><![CDATA[ <p>Hi All,</p>

<p>How can I get sample.xls from C:\users\sample\desktop\sample.xls to string?</p>

<p>Thank you.</p>
 ]]></content:encoded>
			<category domain="http://www.daniweb.com/software-development/csharp/61">C#</category>
			<dc:creator>jaejoong</dc:creator>
			<guid isPermaLink="true">http://www.daniweb.com/software-development/csharp/threads/454788/how-to-read-a-string</guid>
		</item>
				<item>
			<title>How make a web store É</title>
			<link>http://www.daniweb.com/internet-marketing/threads/454787/how-make-a-web-store-</link>
			<pubDate>Fri, 17 May 2013 02:29:55 +0000</pubDate>
			<description>hi How can i make a web store what system i should use ? wich on is easier to design ? tnx for en answer.</description>
			<content:encoded><![CDATA[ <p>hi<br />
How can i make a web store what system i should use ? wich on is easier to design ?<br />
tnx for en answer.</p>
 ]]></content:encoded>
			<category domain="http://www.daniweb.com/internet-marketing/25">Internet Marketing</category>
			<dc:creator>vadimak</dc:creator>
			<guid isPermaLink="true">http://www.daniweb.com/internet-marketing/threads/454787/how-make-a-web-store-</guid>
		</item>
				<item>
			<title>Third Level Drop Down Menu is not Hidden</title>
			<link>http://www.daniweb.com/web-development/web-design-html-and-css/threads/454786/third-level-drop-down-menu-is-not-hidden</link>
			<pubDate>Fri, 17 May 2013 02:10:23 +0000</pubDate>
			<description>This is the code for my third level drop down menu. &lt;ul id=&quot;menu&quot;&gt; &lt;li&gt;&lt;a href=&quot;ourlovestory.php&quot;&gt;Our Love Story&lt;/a&gt;&lt;/li&gt; &lt;li&gt;&lt;a&gt;Notes&lt;/a&gt; &lt;ul&gt; &lt;li&gt;&lt;a href=&quot;blog.php&quot;&gt;Blog&lt;/a&gt;&lt;/li&gt; &lt;li&gt;&lt;a href=&quot;guestbook.php&quot;&gt;Guestbook&lt;/a&gt;&lt;/li&gt; &lt;ul&gt; &lt;li&gt;&lt;a href=&quot;guestbooksign.php&quot;&gt;Sign our Guestbook&lt;/a&gt;&lt;/li&gt; &lt;/ul&gt; &lt;/ul&gt; &lt;/li&gt; &lt;/ul&gt; What i want is the third level, Sign our Guestbook, be hidden then be displayed once hovered to ...</description>
			<content:encoded><![CDATA[ <p>This is the code for my third level drop down menu.</p>

<pre><code class="language-xhtml">&lt;ul id="menu"&gt;
                &lt;li&gt;&lt;a href="ourlovestory.php"&gt;Our Love Story&lt;/a&gt;&lt;/li&gt;
                &lt;li&gt;&lt;a&gt;Notes&lt;/a&gt;
                    &lt;ul&gt;
                        &lt;li&gt;&lt;a href="blog.php"&gt;Blog&lt;/a&gt;&lt;/li&gt;
                        &lt;li&gt;&lt;a href="guestbook.php"&gt;Guestbook&lt;/a&gt;&lt;/li&gt;
                            &lt;ul&gt;
                                &lt;li&gt;&lt;a href="guestbooksign.php"&gt;Sign our Guestbook&lt;/a&gt;&lt;/li&gt;
                            &lt;/ul&gt;
                    &lt;/ul&gt;
                &lt;/li&gt;            
            &lt;/ul&gt;
</code></pre>

<p>What i want is the third level, Sign our Guestbook, be hidden then be displayed once hovered to Guestbook link.<br />
But my problem is that it is already displayed on the second level.</p>

<p><img src="/attachments/fetch/L2ltYWdlcy9hdHRhY2htZW50cy8yL2E0N2E4ZjhkNzM5ZWEyOTY4MmVmNDM0MjIxMTA5YjBkLnBuZw%3D%3D/162" alt="a47a8f8d739ea29682ef434221109b0d" title="align-left" /></p>

<p>This is my CSS for this one.</p>

<pre><code class="language-xhtml">ul 
{
    font-family: 'tr_freehand591regular';
    font-size: 18px;
    margin: 0px;
    padding: 0px;
    list-style: none;   
    z-index:100;
}

ul li
{
    display: block;
    position: relative;
    float: left;
}

li ul
{
    display: none;
}

#menu a 
{
    color: #ff1493;
}

#menu a:hover
{
    color: #98fb98;
}

ul li a
{
    display: block;
    text-decoration: none;
    padding: 5px 15px 5px 15px;
    background: #fff0f5;
    margin-left: 1px;
    white-space: nowrap;
}

ul li a:hover 
{
    background: #3b3b3b;
}

li:hover ul 
{
    display: block;
    position: absolute; 
    visibility: visible;
}

li:hover li 
{
    float: none;
    font-size: 16px;
}

li:hover a 
{ 
    background: #3b3b3b; 
}
</code></pre>
 ]]></content:encoded>
			<category domain="http://www.daniweb.com/web-development/web-design-html-and-css/15">Web Design, HTML and CSS</category>
			<dc:creator>xuexue</dc:creator>
			<guid isPermaLink="true">http://www.daniweb.com/web-development/web-design-html-and-css/threads/454786/third-level-drop-down-menu-is-not-hidden</guid>
		</item>
				<item>
			<title>Visual Basic 6 and Access 2010</title>
			<link>http://www.daniweb.com/software-development/visual-basic-4-5-6/threads/454785/visual-basic-6-and-access-2010</link>
			<pubDate>Thu, 16 May 2013 23:10:07 +0000</pubDate>
			<description>17 May 2013 | I am trying (with no success) to connect an Access 2010 Table (.accdb).to a Vb6 ADO data control and having no luck at all. I have downloaded and installed the Microsoft.ACE.OLEDB.12.0 (as i read that this would solve the problem) and to be honest had expected ...</description>
			<content:encoded><![CDATA[ <p>17 May 2013 | I am trying (with no success) to connect an Access 2010 Table (.accdb).to a Vb6 ADO data control and having no luck at all.  I have downloaded and installed the Microsoft.ACE.OLEDB.12.0 (as i read that this would solve the problem) and to be honest had expected that it would then appear as a 'Provider' option, but its not there.  Can some one please provide an 'idiots' guide on how I can connect a table.accdb to an ADO data control..... Regards (and fingers crossed that someone will tell me how i can do so, in simple steps!! thank you in advance :-)</p>
 ]]></content:encoded>
			<category domain="http://www.daniweb.com/software-development/visual-basic-4-5-6/4">Visual Basic 4 / 5 / 6</category>
			<dc:creator>Jephor</dc:creator>
			<guid isPermaLink="true">http://www.daniweb.com/software-development/visual-basic-4-5-6/threads/454785/visual-basic-6-and-access-2010</guid>
		</item>
				<item>
			<title>attribute</title>
			<link>http://www.daniweb.com/software-development/cpp/threads/454784/attribute</link>
			<pubDate>Thu, 16 May 2013 23:08:42 +0000</pubDate>
			<description>what are the attributes in c++?</description>
			<content:encoded><![CDATA[ <p>what are the attributes in c++?</p>
 ]]></content:encoded>
			<category domain="http://www.daniweb.com/software-development/cpp/8">C++</category>
			<dc:creator>slyton</dc:creator>
			<guid isPermaLink="true">http://www.daniweb.com/software-development/cpp/threads/454784/attribute</guid>
		</item>
				<item>
			<title>Hello</title>
			<link>http://www.daniweb.com/community-center/community-introductions/threads/454783/hello</link>
			<pubDate>Thu, 16 May 2013 23:00:49 +0000</pubDate>
			<description>Hello, My name is Charles. I do marketing for a commercial insurance company in Florida. I am new to programming. I am looking for help with alpha 5 and wordpress. I am also looking to possibly contract some programming work for our databases. Pleased to be acquainted, Charles</description>
			<content:encoded><![CDATA[ <p>Hello,</p>

<p>My name is Charles.<br />
I do marketing for a commercial insurance company in Florida.<br />
I am new to programming.<br />
I am looking for help with alpha 5 and wordpress.<br />
I am also looking to possibly contract some programming work for our databases.</p>

<p>Pleased to be acquainted,<br />
Charles</p>
 ]]></content:encoded>
			<category domain="http://www.daniweb.com/community-center/community-introductions/165">Community Introductions</category>
			<dc:creator>charles muller</dc:creator>
			<guid isPermaLink="true">http://www.daniweb.com/community-center/community-introductions/threads/454783/hello</guid>
		</item>
				<item>
			<title>Could you help with this code?</title>
			<link>http://www.daniweb.com/software-development/csharp/threads/454782/could-you-help-with-this-code</link>
			<pubDate>Thu, 16 May 2013 22:56:26 +0000</pubDate>
			<description>The tiny tots tee-ball league has 12 players who have jersey numbers 0 through 11. The coach wants a program into which he can type a player’s number and the number of bases the player got in a turn at bat (a number 0 through 4). Write a program that ...</description>
			<content:encoded><![CDATA[ <p>The tiny tots tee-ball league has 12 players who have jersey numbers 0 through 11. The coach wants a program into which he can type a player’s number and the number of bases the player got in a turn at bat (a number 0 through 4). Write a program that allows the coach to continually enter the values until 999 is entered. Store the statistics in a two dimensional array. At the end of a data entry session, display each player’s number and the number of 0-bases, 1-base, 2-base, and 3-base, and 4-base turns the player had. Display a separate count of the number of data-entry errors the coach makes (a player number greater than 11 or a number of bases greater than 4).</p>
 ]]></content:encoded>
			<category domain="http://www.daniweb.com/software-development/csharp/61">C#</category>
			<dc:creator>ibr123</dc:creator>
			<guid isPermaLink="true">http://www.daniweb.com/software-development/csharp/threads/454782/could-you-help-with-this-code</guid>
		</item>
				<item>
			<title>Implementing</title>
			<link>http://www.daniweb.com/software-development/cpp/threads/454781/implementing</link>
			<pubDate>Thu, 16 May 2013 22:15:26 +0000</pubDate>
			<description>I have a header file, but I don't know how to do it: I am new to templates. template &lt;class T&gt; class Array { public: Array(int l, int h); Array(int s); Array(const Array&amp; other); ~Array(); T&amp; operator[](int index); const T&amp; operator[](int index) const; int get_size() const {return size;} private: int ...</description>
			<content:encoded><![CDATA[ <p>I have a header file, but I don't know how to do it: I am new to templates.</p>

<pre><code>template &lt;class T&gt; 
class Array 
{
    public:
        Array(int l, int h);
        Array(int s);
        Array(const Array&amp; other);
        ~Array();
        T&amp; operator[](int index);
        const T&amp; operator[](int index) const;
        int get_size() const 
        {return size;}
    private:
        int low;
        int  high;
        int size;
        int offset;
        T *ptr;  
};
</code></pre>
 ]]></content:encoded>
			<category domain="http://www.daniweb.com/software-development/cpp/8">C++</category>
			<dc:creator>TuteePink</dc:creator>
			<guid isPermaLink="true">http://www.daniweb.com/software-development/cpp/threads/454781/implementing</guid>
		</item>
				<item>
			<title>Can&#039;t display CrystalReport on aspx page</title>
			<link>http://www.daniweb.com/software-development/csharp/threads/454779/cant-display-crystalreport-on-aspx-page</link>
			<pubDate>Thu, 16 May 2013 21:42:56 +0000</pubDate>
			<description>I'm trying to display a Report with Crystal Report Viewer, in the Design looks fine, but it doesn't seem to load when I enter the website... &lt;form id=&quot;form1&quot; runat=&quot;server&quot;&gt; &lt;CR:CrystalReportViewer ID=&quot;CrystalReportViewer1&quot; runat=&quot;server&quot; AutoDataBind=&quot;True&quot; GroupTreeImagesFolderUrl=&quot;&quot; Height=&quot;1202px&quot; ReportSourceID=&quot;CrystalReportSource1&quot; ToolbarImagesFolderUrl=&quot;&quot; ToolPanelWidth=&quot;200px&quot; Width=&quot;1104px&quot; /&gt; &lt;CR:CrystalReportSource ID=&quot;CrystalReportSource1&quot; runat=&quot;server&quot;&gt; &lt;Report FileName=&quot;ReporteReciboFecha.rpt&quot;&gt; &lt;/Report&gt; &lt;/CR:CrystalReportSource&gt; &lt;/form&gt;</description>
			<content:encoded><![CDATA[ <p>I'm trying to display a Report with Crystal Report Viewer, in the Design looks fine, but it doesn't seem to load when I enter the website...</p>

<pre><code class="language-cs">        &lt;form id="form1" runat="server"&gt;      
                &lt;CR:CrystalReportViewer ID="CrystalReportViewer1" runat="server" 
                AutoDataBind="True" GroupTreeImagesFolderUrl="" Height="1202px"
                ReportSourceID="CrystalReportSource1" ToolbarImagesFolderUrl="" 
                ToolPanelWidth="200px" Width="1104px" /&gt;

            &lt;CR:CrystalReportSource ID="CrystalReportSource1" runat="server"&gt;
                &lt;Report FileName="ReporteReciboFecha.rpt"&gt;
                &lt;/Report&gt;
            &lt;/CR:CrystalReportSource&gt;
        &lt;/form&gt;
</code></pre>
 ]]></content:encoded>
			<category domain="http://www.daniweb.com/software-development/csharp/61">C#</category>
			<dc:creator>George_91</dc:creator>
			<guid isPermaLink="true">http://www.daniweb.com/software-development/csharp/threads/454779/cant-display-crystalreport-on-aspx-page</guid>
		</item>
				<item>
			<title>ReadOnly Property in custom control</title>
			<link>http://www.daniweb.com/software-development/vbnet/threads/454778/readonly-property-in-custom-control</link>
			<pubDate>Thu, 16 May 2013 21:41:03 +0000</pubDate>
			<description>When the readonly property of textbox is set to true then back colour turns to grey. i use below code to change the back colour to white Private Sub TextBox1_ReadOnlyChanged(ByVal sender As Object, ByVal e As System.EventArgs) Handles TextBox1.ReadOnlyChanged If TextBox1.ReadOnly = True Then TextBox1.BackColor = Color.White End If End ...</description>
			<content:encoded><![CDATA[ <p>When the readonly property of textbox is set to true then back colour turns to grey. i use below code to change the back colour to white</p>

<pre><code class="language-vb"> Private Sub TextBox1_ReadOnlyChanged(ByVal sender As Object, ByVal e As System.EventArgs) Handles TextBox1.ReadOnlyChanged
 If TextBox1.ReadOnly = True Then
 TextBox1.BackColor = Color.White
 End If
 End Sub
</code></pre>

<p>How can i make custom control for text box to handel above code so that i dont have to write above code for each and every text box.</p>
 ]]></content:encoded>
			<category domain="http://www.daniweb.com/software-development/vbnet/58">VB.NET</category>
			<dc:creator>PM312</dc:creator>
			<guid isPermaLink="true">http://www.daniweb.com/software-development/vbnet/threads/454778/readonly-property-in-custom-control</guid>
		</item>
				<item>
			<title>Template Class</title>
			<link>http://www.daniweb.com/software-development/cpp/threads/454777/template-class</link>
			<pubDate>Thu, 16 May 2013 21:30:11 +0000</pubDate>
			<description>I don't understand this code: T&amp; operator[](int index); const T&amp; operator[](int index) const; And, declared in the private is this: T *ptr; What does this mean?</description>
			<content:encoded><![CDATA[ <p>I don't understand this code:</p>

<pre><code class="language-cpp">T&amp; operator[](int index);
        const T&amp; operator[](int index) const;
</code></pre>

<p>And, declared in the private is this:</p>

<pre><code class="language-cpp">T *ptr;  
</code></pre>

<p>What does this mean?</p>
 ]]></content:encoded>
			<category domain="http://www.daniweb.com/software-development/cpp/8">C++</category>
			<dc:creator>TuteePink</dc:creator>
			<guid isPermaLink="true">http://www.daniweb.com/software-development/cpp/threads/454777/template-class</guid>
		</item>
				<item>
			<title>How to KILL a file</title>
			<link>http://www.daniweb.com/software-development/visual-basic-4-5-6/threads/454776/how-to-kill-a-file</link>
			<pubDate>Thu, 16 May 2013 20:43:49 +0000</pubDate>
			<description>Hi How to kill a file in this format kill App.Path &amp; &quot;\backup\backup\PhoneTel.mdb&quot; &amp; Format(Now, &quot;yymmdd_hhnn&quot;) &amp; &quot;.mdb&quot; Lenny</description>
			<content:encoded><![CDATA[ <p>Hi How to kill a file in this format</p>

<pre><code class="language-vb">kill App.Path &amp; "\backup\backup\PhoneTel.mdb" &amp; Format(Now, "yymmdd_hhnn") &amp; ".mdb"
</code></pre>

<p>Lenny</p>
 ]]></content:encoded>
			<category domain="http://www.daniweb.com/software-development/visual-basic-4-5-6/4">Visual Basic 4 / 5 / 6</category>
			<dc:creator>LeNenne</dc:creator>
			<guid isPermaLink="true">http://www.daniweb.com/software-development/visual-basic-4-5-6/threads/454776/how-to-kill-a-file</guid>
		</item>
			</channel>
</rss>