<?xml version="1.0" encoding="utf-8"?>
<rss version="2.0">
  <channel>
    <title>Windows XP Forum RSS Feed (Replies Included)</title>
    <link>http://www.programmersheaven.com/</link>
    <description>Contains the latest posts from the 'Windows XP' forum at Programmer's Heaven, including replies.</description>
    <language>en</language>
    <copyright>Copyright 2013 Programmers Heaven</copyright>
    <pubDate>Wed, 19 Jun 2013 00:23:14 -0700</pubDate>
    <lastBuildDate>Wed, 19 Jun 2013 00:23:14 -0700</lastBuildDate>
    <generator>Argotic Syndication Framework 2007.3.0.1, http://www.codeplex.com/Argotic</generator>
    <docs>http://www.rssboard.org/rss-specification</docs>
    <ttl>360</ttl>
    <image>
      <url>http://www.programmersheaven.com/images/ph.gif</url>
      <title>Programmers Heaven</title>
      <link>http://www.programmersheaven.com/</link>
      <width>88</width>
      <height>31</height>
    </image>
    <item>
      <title>This post has been deleted.</title>
      <link>http://www.programmersheaven.com/mb/winxp/383412/418914/this-post-has-been-deleted/#418914</link>
      <description>This post has been deleted.&lt;br&gt;&lt;br&gt;&lt;strong&gt;Attachment:&lt;/strong&gt; &lt;a href="http://www.programmersheaven.com/mb/DownloadAttachment.aspx?AttachmentID=1864"&gt;Processor_n_Memory_Details.cs&lt;/a&gt; (1992 bytes | downloaded 162 times)</description>
      <guid isPermaLink="true">http://www.programmersheaven.com/mb/winxp/383412/418914/this-post-has-been-deleted/#418914</guid>
      <pubDate>Thu, 30 Sep 2010 21:55:04 -0700</pubDate>
      <category>Windows XP</category>
    </item>
    <item>
      <title>Re: Reading BIOS Information with C#</title>
      <link>http://www.programmersheaven.com/mb/winxp/383412/418913/re-reading-bios-information-with-c/#418913</link>
      <description>hi,&lt;br /&gt;
&lt;br /&gt;
// add a reference System.Management.dll&lt;br /&gt;
using System.Management;&lt;br /&gt;
&lt;br /&gt;
//this code will display bios name and manufacturer&lt;br /&gt;
ObjectQuery objectQuery_BIOS = new ObjectQuery("select * from Win32_BIOS");&lt;br /&gt;
&lt;br /&gt;
ManagementObjectSearcher searcherBIOS = new ManagementObjectSearcher(objectQuery_BIOS);&lt;br /&gt;
ManagementObjectCollection valsBIOS = searcherBIOS.Get();&lt;br /&gt;
&lt;br /&gt;
        foreach (ManagementObject val in valsBIOS)&lt;br /&gt;
        {&lt;br /&gt;
            Console.WriteLine("Name = " + Convert.ToString(val.GetPropertyValue("Name")));&lt;br /&gt;
            Console.WriteLine("Manufacturer = " + Convert.ToString(val.GetPropertyValue("Manufacture
r")));&lt;br /&gt;
        }&lt;br /&gt;
        Console.ReadLine();&lt;br /&gt;
&lt;br /&gt;
//......for more properties in Win32_BIOS class check the below link&lt;br /&gt;
//http://msdn.microsoft.com/en-us/library/aa394077%28v=VS.85%29.aspx&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
hope this code helps you.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Thanks and Regards&lt;br /&gt;
huawei_1988&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br&gt;&lt;br&gt;&lt;strong&gt;Attachment:&lt;/strong&gt; &lt;a href="http://www.programmersheaven.com/mb/DownloadAttachment.aspx?AttachmentID=1863"&gt;Processor_n_Memory_Details.cs&lt;/a&gt; (1992 bytes | downloaded 158 times)</description>
      <guid isPermaLink="true">http://www.programmersheaven.com/mb/winxp/383412/418913/re-reading-bios-information-with-c/#418913</guid>
      <pubDate>Thu, 30 Sep 2010 21:52:14 -0700</pubDate>
      <category>Windows XP</category>
    </item>
    <item>
      <title>Help Installing Rosetta stone</title>
      <link>http://www.programmersheaven.com/mb/winxp/417044/417044/help-installing-rosetta-stone/</link>
      <description>I cant get the CDs to Run or install on windows XP. Can anyone please help me. &lt;br /&gt;
Thanks&lt;br /&gt;</description>
      <guid isPermaLink="true">http://www.programmersheaven.com/mb/winxp/417044/417044/help-installing-rosetta-stone/</guid>
      <pubDate>Sun, 06 Jun 2010 16:09:11 -0700</pubDate>
      <category>Windows XP</category>
    </item>
    <item>
      <title>Windows API : Moving a toolbar horizontaly</title>
      <link>http://www.programmersheaven.com/mb/winxp/414875/414875/windows-api--moving-a-toolbar-horizontaly/</link>
      <description>Hi,&lt;br /&gt;
&lt;br /&gt;
I am trying to enable gvim application's toolbar moving.&lt;br /&gt;
&lt;br /&gt;
Why ? Because in Gvim you can add icon to the toolbar dynamically.&lt;br /&gt;
Problem : when too many icons are added they are not available.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
So I wonder if I can do smooth horizontal move of the toolbar into Window GVim application ?&lt;br /&gt;
&lt;br /&gt;
Thank you for all&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;</description>
      <guid isPermaLink="true">http://www.programmersheaven.com/mb/winxp/414875/414875/windows-api--moving-a-toolbar-horizontaly/</guid>
      <pubDate>Thu, 25 Mar 2010 10:33:16 -0700</pubDate>
      <category>Windows XP</category>
    </item>
    <item>
      <title>netstat, command prompt closes</title>
      <link>http://www.programmersheaven.com/mb/winxp/413047/413047/netstat-command-prompt-closes/</link>
      <description>When I run netstat -o in my command prompt, for some reason my command window closes right after the process ID list is generated. Why is this happening?&lt;br /&gt;</description>
      <guid isPermaLink="true">http://www.programmersheaven.com/mb/winxp/413047/413047/netstat-command-prompt-closes/</guid>
      <pubDate>Thu, 04 Feb 2010 07:06:44 -0700</pubDate>
      <category>Windows XP</category>
    </item>
    <item>
      <title>Re: Detecting language bar changes</title>
      <link>http://www.programmersheaven.com/mb/winxp/308511/395473/re-detecting-language-bar-changes/#395473</link>
      <description>You cna do this is C# as follows:&lt;br /&gt;
&lt;br /&gt;
a) Start a C# Console Applictaion.&lt;br /&gt;
b) Open solution exlorer and add refernce to System.Windows.Forms.&lt;br /&gt;
c) Paste the followng code in the Project Editor.&lt;br /&gt;
&lt;br /&gt;
using System;&lt;br /&gt;
using System.Globalization;&lt;br /&gt;
using System.Windows.Forms;&lt;br /&gt;
&lt;br /&gt;
namespace ConsoleApplication1&lt;br /&gt;
{&lt;br /&gt;
    class Program&lt;br /&gt;
    {&lt;br /&gt;
        static void Main(string[] args)&lt;br /&gt;
        {&lt;br /&gt;
            InputLanguage myDefaultLanguage = &lt;br /&gt;
                                    InputLanguage.DefaultInputLanguage;&lt;br /&gt;
            Console.WriteLine("Current input language is now: " + &lt;br /&gt;
                                myDefaultLanguage.Culture.EnglishName);&lt;br /&gt;
            Console.ReadLine();&lt;br /&gt;
        }&lt;br /&gt;
    }&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
d) Compile the code and run it.&lt;br /&gt;
&lt;br /&gt;
You should be able to see the  current input languag selected in the language bar.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;</description>
      <guid isPermaLink="true">http://www.programmersheaven.com/mb/winxp/308511/395473/re-detecting-language-bar-changes/#395473</guid>
      <pubDate>Fri, 21 Aug 2009 06:34:53 -0700</pubDate>
      <category>Windows XP</category>
    </item>
    <item>
      <title>windows administration</title>
      <link>http://www.programmersheaven.com/mb/winxp/388974/388974/windows-administration/</link>
      <description>hey i am new to this community,&lt;br /&gt;
                                 well i wanna learn more about my system and stop asking others for help and do it myself.. so anyof u could suggest any books or any sites where i can get all the administration techniques or troubleshooting methods... will be helpful&lt;br /&gt;
i have windows xp at home.... thank you &lt;br /&gt;
u'll never know what hit you!!!! unless u hit it first..</description>
      <guid isPermaLink="true">http://www.programmersheaven.com/mb/winxp/388974/388974/windows-administration/</guid>
      <pubDate>Sat, 11 Apr 2009 06:48:06 -0700</pubDate>
      <category>Windows XP</category>
    </item>
    <item>
      <title>Windows Update error -- "pardlg.dll"</title>
      <link>http://www.programmersheaven.com/mb/winxp/388010/388010/windows-update-error----pardlgdll/</link>
      <description>When I was using my company laptop in office, suddenly there was a error msg "pardlg.dll could not be found" popped up, then the system was "locked" and went for reboot automatically. After that I found out that some Windows Update automatically began. Finally when it was over and I logged in again, all my unsaved work were gone! Such things never happened to this XP + SP2 book before. Anyone got any idea what this "pardlg.dll" was meant for?&lt;br /&gt;</description>
      <guid isPermaLink="true">http://www.programmersheaven.com/mb/winxp/388010/388010/windows-update-error----pardlgdll/</guid>
      <pubDate>Wed, 25 Mar 2009 18:35:13 -0700</pubDate>
      <category>Windows XP</category>
    </item>
    <item>
      <title>Windows XP Pro is a 32-bit op sys, right?</title>
      <link>http://www.programmersheaven.com/mb/winxp/387060/387060/windows-xp-pro-is-a-32-bit-op-sys-right/</link>
      <description>Windows XP Pro is a 32-bit op sys, right?&lt;br /&gt;</description>
      <guid isPermaLink="true">http://www.programmersheaven.com/mb/winxp/387060/387060/windows-xp-pro-is-a-32-bit-op-sys-right/</guid>
      <pubDate>Mon, 09 Mar 2009 20:27:26 -0700</pubDate>
      <category>Windows XP</category>
    </item>
    <item>
      <title>REAL MODE Question</title>
      <link>http://www.programmersheaven.com/mb/winxp/384267/384267/real-mode-question/</link>
      <description>Hi all!  I'm writing a driver for XP that reads the extended configuration space registers on the intel GMCH device.  This needs to be done as memory-mapped IO so I get the MCH Base address from IO read and it gives a 64bit number.  I don't know how to use it since real mode uses a 16bit segment and 16bit offset to point to an address.  Anybody have ideas?&lt;br /&gt;
&lt;br /&gt;
Thanks&lt;br /&gt;
&lt;br /&gt;
Target system is intel chipset4 (82Q45)  &lt;br /&gt;</description>
      <guid isPermaLink="true">http://www.programmersheaven.com/mb/winxp/384267/384267/real-mode-question/</guid>
      <pubDate>Mon, 12 Jan 2009 14:02:04 -0700</pubDate>
      <category>Windows XP</category>
    </item>
    <item>
      <title>Yahoo add-on to interface with Windows</title>
      <link>http://www.programmersheaven.com/mb/winxp/383578/383578/yahoo-add-on-to-interface-with-windows/</link>
      <description>Hello everyone I'm looking for some opinions/advice. I have to be awake long hours and I use yahoo messenger to keep in touch with both friends and business contacts, but I hate leaving my monitor on for hours on end when I'm just waiting for someone to sign on.&lt;br /&gt;
&lt;br /&gt;
Is there any way that an addon could be built for Windows/Yahoo, so that if I set my monitor to turn off after a certain amount of time (control panel&amp;gt;power options) and receive a popup from yahoo (a new email, someone signing on, a new message) yahoo could automatically turn it back on?&lt;br /&gt;
&lt;br /&gt;
If it IS possible, would I start on the Yahoo end or the Windows end?&lt;br /&gt;</description>
      <guid isPermaLink="true">http://www.programmersheaven.com/mb/winxp/383578/383578/yahoo-add-on-to-interface-with-windows/</guid>
      <pubDate>Fri, 26 Dec 2008 21:47:50 -0700</pubDate>
      <category>Windows XP</category>
    </item>
    <item>
      <title>Exception when reading BIOS information</title>
      <link>http://www.programmersheaven.com/mb/winxp/383417/383417/exception-when-reading-bios-information/</link>
      <description>Hello,&lt;br /&gt;
&lt;br /&gt;
i got an Exception when i try to read some BIOS informaiton with WMI using C#. &lt;br /&gt;
&lt;br /&gt;
I have the following code:&lt;br /&gt;
&lt;br /&gt;
public static string GetBIOSBuildName()&lt;br /&gt;
        {&lt;br /&gt;
            string name = "";&lt;br /&gt;
            try&lt;br /&gt;
            {&lt;br /&gt;
               &lt;br /&gt;
                ManagementObjectSearcher query = new ManagementObjectSearcher("SELECT * FROM Win32_bios");&lt;br /&gt;
                ManagementObjectCollection qCollection = query.Get();&lt;br /&gt;
                foreach (ManagementObject mo in qCollection)&lt;br /&gt;
                {&lt;br /&gt;
                    if (name == null)&lt;br /&gt;
                    {&lt;br /&gt;
                        name = mo["BuildName"].ToString();&lt;br /&gt;
                    }&lt;br /&gt;
                }&lt;br /&gt;
            }&lt;br /&gt;
            catch (Exception e)&lt;br /&gt;
            {&lt;br /&gt;
                return "error";&lt;br /&gt;
            }&lt;br /&gt;
            return name; &lt;br /&gt;
        }&lt;br /&gt;
&lt;br /&gt;
It looks like i cannot read the BuildNumber and some other information but i can read BuildVersion, Caption and Language. &lt;br /&gt;
&lt;br /&gt;
Do i need some other code for reading BuildNumber etc?&lt;br /&gt;
&lt;br /&gt;
Thank you.&lt;br /&gt;</description>
      <guid isPermaLink="true">http://www.programmersheaven.com/mb/winxp/383417/383417/exception-when-reading-bios-information/</guid>
      <pubDate>Mon, 22 Dec 2008 03:31:23 -0700</pubDate>
      <category>Windows XP</category>
    </item>
    <item>
      <title>Re: Reading BIOS Information with C#</title>
      <link>http://www.programmersheaven.com/mb/winxp/383412/383416/re-reading-bios-information-with-c/#383416</link>
      <description>Ok,&lt;br /&gt;
&lt;br /&gt;
i found something. &lt;br /&gt;
&lt;br /&gt;
But now i am getting some Exception.&lt;br /&gt;
&lt;br /&gt;
I will post a separate post for this. &lt;br /&gt;
&lt;br /&gt;
: Hello,&lt;br /&gt;
: &lt;br /&gt;
: i need to read some BIOS Information with C#.&lt;br /&gt;
: &lt;br /&gt;
: I have done some WMI programming with C# before but cannot find any &lt;br /&gt;
: information on how to read BIOS information.&lt;br /&gt;
: &lt;br /&gt;
: I want to use the Win32_BIOS class.&lt;br /&gt;
: &lt;br /&gt;
: Can anyone show me how to do this?&lt;br /&gt;
: &lt;br /&gt;
: Thank you.&lt;br /&gt;
: &lt;br /&gt;
&lt;br /&gt;</description>
      <guid isPermaLink="true">http://www.programmersheaven.com/mb/winxp/383412/383416/re-reading-bios-information-with-c/#383416</guid>
      <pubDate>Mon, 22 Dec 2008 03:28:24 -0700</pubDate>
      <category>Windows XP</category>
    </item>
    <item>
      <title>Reading BIOS Information with C#</title>
      <link>http://www.programmersheaven.com/mb/winxp/383412/383412/reading-bios-information-with-c/</link>
      <description>Hello,&lt;br /&gt;
&lt;br /&gt;
i need to read some BIOS Information with C#.&lt;br /&gt;
&lt;br /&gt;
I have done some WMI programming with C# before but cannot find any information on how to read BIOS information.&lt;br /&gt;
&lt;br /&gt;
I want to use the Win32_BIOS class.&lt;br /&gt;
&lt;br /&gt;
Can anyone show me how to do this?&lt;br /&gt;
&lt;br /&gt;
Thank you.&lt;br /&gt;</description>
      <guid isPermaLink="true">http://www.programmersheaven.com/mb/winxp/383412/383412/reading-bios-information-with-c/</guid>
      <pubDate>Mon, 22 Dec 2008 02:36:54 -0700</pubDate>
      <category>Windows XP</category>
    </item>
    <item>
      <title>USB</title>
      <link>http://www.programmersheaven.com/mb/winxp/373955/373955/usb/</link>
      <description>can some please tell me how to access USB port thru JAVA or C++.&lt;br /&gt;
Like i want to disable them thru programming.&lt;br /&gt;</description>
      <guid isPermaLink="true">http://www.programmersheaven.com/mb/winxp/373955/373955/usb/</guid>
      <pubDate>Tue, 05 Aug 2008 05:52:07 -0700</pubDate>
      <category>Windows XP</category>
    </item>
    <item>
      <title>Shell Execution</title>
      <link>http://www.programmersheaven.com/mb/winxp/372440/372440/shell-execution/</link>
      <description>Hi all,&lt;br /&gt;
&lt;br /&gt;
I am having some issues with my Java program opening a .wmv file remotely (or locally for that matter). I am not having problems with any other sort of file.&lt;br /&gt;
&lt;br /&gt;
Anyway, when the program gets to the point where my Desktop object tries to open the file, I am getting an IOException saying that access is denied to the file. I know that the user has access to the file.&lt;br /&gt;
&lt;br /&gt;
I posted this problem on a Java Forums and they said that it had something to do with the native Windows code, and was not an actual Java issue.&lt;br /&gt;
&lt;br /&gt;
Thanks ahead of the time for the help.&lt;br /&gt;</description>
      <guid isPermaLink="true">http://www.programmersheaven.com/mb/winxp/372440/372440/shell-execution/</guid>
      <pubDate>Thu, 05 Jun 2008 13:28:45 -0700</pubDate>
      <category>Windows XP</category>
    </item>
    <item>
      <title>Console C++ to full Windows</title>
      <link>http://www.programmersheaven.com/mb/winxp/371187/371187/console-c++-to-full-windows/</link>
      <description>Alright heres the situation: I have made a console based calculator and I need to move it all into windows program. The following code is what I have so far in Windows code.&lt;br /&gt;
&lt;br /&gt;
// First Windows Program&lt;br /&gt;
// This program is intended to display a Windows XP themed interface&lt;br /&gt;
// and use some basic Windows program functions&lt;br /&gt;
&lt;br /&gt;
#define STRICT&lt;br /&gt;
#define WIN32_LEAN_AND_MEAN&lt;br /&gt;
#include &amp;lt;windows.h&amp;gt;&lt;br /&gt;
#include &amp;lt;iostream&amp;gt;&lt;br /&gt;
#include &amp;lt;string&amp;gt;&lt;br /&gt;
&lt;br /&gt;
int PASCAL WinMain(HINSTANCE hInstance, HINSTANCE hPrevInstance,&lt;br /&gt;
		LPSTR lpCmdLine, int nCmdShow) {&lt;br /&gt;
		using namespace std;&lt;br /&gt;
MessageBox(NULL, "Would you like to do some math?", "Calculator",&lt;br /&gt;
MB_OK|MB_ICONINFORMATION|MB_SETFOREGROUND);&lt;br /&gt;
&lt;br /&gt;
return 0;&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
This is my calculator code:&lt;br /&gt;
&lt;br /&gt;
// Calculator&lt;br /&gt;
&lt;br /&gt;
// Include files below&lt;br /&gt;
&lt;br /&gt;
#include &amp;lt;iostream&amp;gt;&lt;br /&gt;
#include &amp;lt;string&amp;gt;&lt;br /&gt;
#include &amp;lt;math.h&amp;gt;&lt;br /&gt;
#include &amp;lt;cstdlib&amp;gt;&lt;br /&gt;
using namespace std;&lt;br /&gt;
&lt;br /&gt;
//Beginning of calulator&lt;br /&gt;
&lt;br /&gt;
int main()&lt;br /&gt;
{&lt;br /&gt;
      //Mathematical operators' corresponding number&lt;br /&gt;
      //Done = 5;&lt;br /&gt;
      //Subtraction = 4;&lt;br /&gt;
      //Addition = 3;&lt;br /&gt;
      //Multiplication = 2;&lt;br /&gt;
      //Division = 1;&lt;br /&gt;
      &lt;br /&gt;
     int answer;&lt;br /&gt;
     &lt;br /&gt;
     //Answer must be initialized to be used&lt;br /&gt;
     &lt;br /&gt;
     cout &amp;lt;&amp;lt; "What basic mathematical operator shall I perform ?" &amp;lt;&amp;lt; endl;&lt;br /&gt;
     cout &amp;lt;&amp;lt; "Please answer with: Division(1), Multiplication(2), Addition(3), Subtraction(4)" &amp;lt;&amp;lt; endl;&lt;br /&gt;
     cout &amp;lt;&amp;lt; "Square Root(5), Sine(6), Cosine(7), Tangent(8), Exponetial(9) or End Program(10)" &amp;lt;&amp;lt; endl;&lt;br /&gt;
     cout &amp;lt;&amp;lt; "Want a operator not seen here? More operators can be added at your request!" &amp;lt;&amp;lt; endl;&lt;br /&gt;
     cin &amp;gt;&amp;gt; answer;&lt;br /&gt;
     &lt;br /&gt;
     while(answer!=10) // This begins a loop that will only end when answer is equal to 10&lt;br /&gt;
     {&lt;br /&gt;
     &lt;br /&gt;
     if (answer == 1) //Division section of the calculator&lt;br /&gt;
     {                              &lt;br /&gt;
                // Long double is the type of variable that can have up to 15 digits&lt;br /&gt;
                // Again variables must be initialized before using them.&lt;br /&gt;
                // However because of the braces around this section the variables&lt;br /&gt;
                // are local and can be initialized/used in other sections again&lt;br /&gt;
                &lt;br /&gt;
                long double value1;&lt;br /&gt;
                long double value2;             &lt;br /&gt;
                &lt;br /&gt;
                // This asks for values and then inputs the values into the variables&lt;br /&gt;
                &lt;br /&gt;
                      cout &amp;lt;&amp;lt; "Input value to be divided: ";&lt;br /&gt;
                      cin &amp;gt;&amp;gt; value1;&lt;br /&gt;
                      cout &amp;lt;&amp;lt; "Input the dividend: ";&lt;br /&gt;
                      cin &amp;gt;&amp;gt; value2;&lt;br /&gt;
                &lt;br /&gt;
                //Dividing the values and storing the answer to value1&lt;br /&gt;
                &lt;br /&gt;
                value1 /= value2;&lt;br /&gt;
                cout &amp;lt;&amp;lt; "Answer: "&amp;lt;&amp;lt; value1 &amp;lt;&amp;lt; endl &amp;lt;&amp;lt;endl;&lt;br /&gt;
                cout &amp;lt;&amp;lt; "Please input the next operation number you would like to preform." &amp;lt;&amp;lt; endl;&lt;br /&gt;
                cin &amp;gt;&amp;gt; answer;&lt;br /&gt;
                &lt;br /&gt;
     }&lt;br /&gt;
     &lt;br /&gt;
     if (answer == 2) //Multiplication section of the calculator&lt;br /&gt;
     { &lt;br /&gt;
                &lt;br /&gt;
                long double value1;&lt;br /&gt;
                long double value2;              &lt;br /&gt;
                 &lt;br /&gt;
                      cout &amp;lt;&amp;lt; "Input first number: ";&lt;br /&gt;
                      cin &amp;gt;&amp;gt; value1;&lt;br /&gt;
                      cout &amp;lt;&amp;lt; "Input the second number: ";&lt;br /&gt;
                      cin &amp;gt;&amp;gt; value2;&lt;br /&gt;
                &lt;br /&gt;
                value1*=value2;&lt;br /&gt;
                cout &amp;lt;&amp;lt; "Answer: "&amp;lt;&amp;lt; value1 &amp;lt;&amp;lt; endl &amp;lt;&amp;lt;endl;&lt;br /&gt;
                cout &amp;lt;&amp;lt; "Please input the next operation number you would like to preform." &amp;lt;&amp;lt; endl;&lt;br /&gt;
                cin &amp;gt;&amp;gt; answer;&lt;br /&gt;
     }&lt;br /&gt;
     if (answer == 3) //Addition section of the calculator&lt;br /&gt;
     { &lt;br /&gt;
                &lt;br /&gt;
                long double value1;&lt;br /&gt;
                long double value2;&lt;br /&gt;
                 &lt;br /&gt;
                      cout &amp;lt;&amp;lt; "Input the first number : ";&lt;br /&gt;
                      cin &amp;gt;&amp;gt; value1;&lt;br /&gt;
                      cout &amp;lt;&amp;lt; "Input the second number: ";&lt;br /&gt;
                      cin &amp;gt;&amp;gt; value2;&lt;br /&gt;
                &lt;br /&gt;
                value1+=value2;&lt;br /&gt;
                cout &amp;lt;&amp;lt; "Answer: "&amp;lt;&amp;lt; value1 &amp;lt;&amp;lt; endl &amp;lt;&amp;lt;endl;&lt;br /&gt;
                cout &amp;lt;&amp;lt; "Please input the next operation number you would like to preform." &amp;lt;&amp;lt; endl;&lt;br /&gt;
                cin &amp;gt;&amp;gt; answer;&lt;br /&gt;
     }&lt;br /&gt;
     if (answer == 4) //Subtraction section of the calculator&lt;br /&gt;
     { &lt;br /&gt;
                &lt;br /&gt;
                long double value1;&lt;br /&gt;
                long double value2;&lt;br /&gt;
                 &lt;br /&gt;
                      cout &amp;lt;&amp;lt; "Input value to be subtracted from: ";&lt;br /&gt;
                      cin &amp;gt;&amp;gt; value1;&lt;br /&gt;
                      cout &amp;lt;&amp;lt; "Input the number to subtract from the first: ";&lt;br /&gt;
                      cin &amp;gt;&amp;gt; value2;&lt;br /&gt;
                &lt;br /&gt;
                value1-=value2;&lt;br /&gt;
                cout &amp;lt;&amp;lt; "Answer: "&amp;lt;&amp;lt; value1 &amp;lt;&amp;lt; endl &amp;lt;&amp;lt;endl;&lt;br /&gt;
                cout &amp;lt;&amp;lt; "Please input the next operation number you would like to preform." &amp;lt;&amp;lt; endl;&lt;br /&gt;
                cin &amp;gt;&amp;gt; answer;&lt;br /&gt;
      }&lt;br /&gt;
     if (answer == 5) //root section of the calculator&lt;br /&gt;
     { &lt;br /&gt;
                &lt;br /&gt;
                long double value1;&lt;br /&gt;
                long double value2;&lt;br /&gt;
                 &lt;br /&gt;
                      cout &amp;lt;&amp;lt; "Input value to be square rooted: ";&lt;br /&gt;
                      cin &amp;gt;&amp;gt; value1;&lt;br /&gt;
                &lt;br /&gt;
                value2 = sqrt (value1);&lt;br /&gt;
                cout &amp;lt;&amp;lt; "Answer: "&amp;lt;&amp;lt; value2 &amp;lt;&amp;lt; endl &amp;lt;&amp;lt;endl;&lt;br /&gt;
                cout &amp;lt;&amp;lt; "Please input the next operation number you would like to preform." &amp;lt;&amp;lt; endl;&lt;br /&gt;
                cin &amp;gt;&amp;gt; answer;&lt;br /&gt;
      }&lt;br /&gt;
      if (answer == 6) //sine section of the calculator&lt;br /&gt;
      { &lt;br /&gt;
                &lt;br /&gt;
                long double value1;&lt;br /&gt;
                long double value2;&lt;br /&gt;
                 &lt;br /&gt;
                      cout &amp;lt;&amp;lt; "Input value to get the sine for: ";&lt;br /&gt;
                      cin &amp;gt;&amp;gt; value1;&lt;br /&gt;
                &lt;br /&gt;
                value2 = sin (value1);&lt;br /&gt;
                cout &amp;lt;&amp;lt; "Answer: "&amp;lt;&amp;lt; value2 &amp;lt;&amp;lt; endl &amp;lt;&amp;lt;endl;&lt;br /&gt;
                cout &amp;lt;&amp;lt; "Please input the next operation number you would like to preform." &amp;lt;&amp;lt; endl;&lt;br /&gt;
                cin &amp;gt;&amp;gt; answer;&lt;br /&gt;
       }&lt;br /&gt;
       if (answer == 7) //cosine section of the calculator&lt;br /&gt;
       { &lt;br /&gt;
                &lt;br /&gt;
                long double value1;&lt;br /&gt;
                long double value2;&lt;br /&gt;
                 &lt;br /&gt;
                      cout &amp;lt;&amp;lt; "Input value to get the cosine for: ";&lt;br /&gt;
                      cin &amp;gt;&amp;gt; value1;&lt;br /&gt;
                &lt;br /&gt;
                value2 = cos (value1);&lt;br /&gt;
                cout &amp;lt;&amp;lt; "Answer: "&amp;lt;&amp;lt; value2 &amp;lt;&amp;lt; endl &amp;lt;&amp;lt;endl;&lt;br /&gt;
                cout &amp;lt;&amp;lt; "Please input the next operation number you would like to preform." &amp;lt;&amp;lt; endl;&lt;br /&gt;
                cin &amp;gt;&amp;gt; answer;&lt;br /&gt;
       }&lt;br /&gt;
       if (answer == 8) //tangent section of the calculator&lt;br /&gt;
       { &lt;br /&gt;
                &lt;br /&gt;
                long double value1;&lt;br /&gt;
                long double value2;&lt;br /&gt;
                 &lt;br /&gt;
                      cout &amp;lt;&amp;lt; "Input value to get the tangent for: ";&lt;br /&gt;
                      cin &amp;gt;&amp;gt; value1;&lt;br /&gt;
                &lt;br /&gt;
                value2 = tan (value1);&lt;br /&gt;
                cout &amp;lt;&amp;lt; "Answer: " &amp;lt;&amp;lt; value2 &amp;lt;&amp;lt; endl &amp;lt;&amp;lt;endl;&lt;br /&gt;
                cout &amp;lt;&amp;lt; "Please input the next operation number you would like to preform." &amp;lt;&amp;lt; endl;&lt;br /&gt;
                cin &amp;gt;&amp;gt; answer;&lt;br /&gt;
       }&lt;br /&gt;
       if (answer == 9) //exponetial section of the calculator&lt;br /&gt;
       { &lt;br /&gt;
                &lt;br /&gt;
                long double value1;&lt;br /&gt;
                long double value2;&lt;br /&gt;
                 &lt;br /&gt;
                      cout &amp;lt;&amp;lt; "Input value to raise exponentially: ";&lt;br /&gt;
                      cin &amp;gt;&amp;gt; value1;&lt;br /&gt;
                      cout &amp;lt;&amp;lt; "Input exponet: ";&lt;br /&gt;
                      cin &amp;gt;&amp;gt; value2;&lt;br /&gt;
                      &lt;br /&gt;
                cout &amp;lt;&amp;lt; "Answer: "&amp;lt;&amp;lt; pow (value1,value2)&amp;lt;&amp;lt; endl &amp;lt;&amp;lt;endl;&lt;br /&gt;
                cout &amp;lt;&amp;lt; "Please input the next operation number you would like to preform." &amp;lt;&amp;lt; endl;&lt;br /&gt;
                cin &amp;gt;&amp;gt; answer;&lt;br /&gt;
       }&lt;br /&gt;
       else&lt;br /&gt;
       {&lt;br /&gt;
       cout &amp;lt;&amp;lt; "Please input a correct number" &amp;lt;&amp;lt; endl;&lt;br /&gt;
       cin &amp;gt;&amp;gt; answer;&lt;br /&gt;
       }&lt;br /&gt;
      // Braces are needed at each level of abstraction&lt;br /&gt;
      }&lt;br /&gt;
      // Return value shows that program executed as expected and then ends the program&lt;br /&gt;
     return 0;&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
Thank you for all the help!&lt;br /&gt;</description>
      <guid isPermaLink="true">http://www.programmersheaven.com/mb/winxp/371187/371187/console-c++-to-full-windows/</guid>
      <pubDate>Mon, 14 Apr 2008 12:11:54 -0700</pubDate>
      <category>Windows XP</category>
    </item>
    <item>
      <title>Re: IP ADDRESS</title>
      <link>http://www.programmersheaven.com/mb/winxp/364659/370480/re-ip-address/#370480</link>
      <description>: WHATS THE EASIEST WAY TO FIND AN IP ADDRESS OF SOMEONE YOUR TALKING &lt;br /&gt;
: TO ON MSN? THIS WOULD BE MUCH APPRECIATED!&lt;br /&gt;
: Go to messblack.com&lt;br /&gt;
&lt;br /&gt;</description>
      <guid isPermaLink="true">http://www.programmersheaven.com/mb/winxp/364659/370480/re-ip-address/#370480</guid>
      <pubDate>Wed, 19 Mar 2008 19:52:13 -0700</pubDate>
      <category>Windows XP</category>
    </item>
    <item>
      <title>Re: i want to check present cpu usage ........</title>
      <link>http://www.programmersheaven.com/mb/winxp/370144/370153/re-i-want-to-check-present-cpu-usage-/#370153</link>
      <description>: hi everyone... &lt;br /&gt;
: my java application needs presnt cpu usage....&lt;br /&gt;
: &lt;br /&gt;
: like i can get from task manager...&lt;br /&gt;
: but i want from command line....&lt;br /&gt;
: &lt;br /&gt;
: i can  call external application for this ...&lt;br /&gt;
: but tell me how to go for it...?&lt;br /&gt;
: &lt;br /&gt;
: please reply... 1000 thanks in advance&lt;br /&gt;
: &lt;br /&gt;
: &lt;br /&gt;
One way is to use JNI to call the NdisGetCurrentProcessorCounts() function. See &lt;a href="http://msdn2.microsoft.com/en-us/library/bb314462.aspx"&gt;http://msdn2.microsoft.com/en-us/library/bb314462.aspx&lt;/a&gt; for more info on that API function.</description>
      <guid isPermaLink="true">http://www.programmersheaven.com/mb/winxp/370144/370153/re-i-want-to-check-present-cpu-usage-/#370153</guid>
      <pubDate>Sat, 08 Mar 2008 15:08:00 -0700</pubDate>
      <category>Windows XP</category>
    </item>
    <item>
      <title>i want to check present cpu usage ........</title>
      <link>http://www.programmersheaven.com/mb/winxp/370144/370144/i-want-to-check-present-cpu-usage-/</link>
      <description>hi everyone... &lt;br /&gt;
my java application needs presnt cpu usage....&lt;br /&gt;
&lt;br /&gt;
like i can get from task manager...&lt;br /&gt;
but i want from command line....&lt;br /&gt;
&lt;br /&gt;
i can  call external application for this ...&lt;br /&gt;
but tell me how to go for it...?&lt;br /&gt;
&lt;br /&gt;
please reply... 1000 thanks in advance&lt;br /&gt;
&lt;br /&gt;</description>
      <guid isPermaLink="true">http://www.programmersheaven.com/mb/winxp/370144/370144/i-want-to-check-present-cpu-usage-/</guid>
      <pubDate>Sat, 08 Mar 2008 11:25:57 -0700</pubDate>
      <category>Windows XP</category>
    </item>
    <item>
      <title>Re: Comand Prompt</title>
      <link>http://www.programmersheaven.com/mb/winxp/369309/369322/re-comand-prompt/#369322</link>
      <description>: My teacher hid a document in myDocuments folder from the comand &lt;br /&gt;
: Prompt and every effort to unhide that file proved abortive. Does &lt;br /&gt;
: anyone know how he acomplished this magic.&lt;br /&gt;
: &lt;br /&gt;
Moved to Windows, since this has nothing to do with Java.</description>
      <guid isPermaLink="true">http://www.programmersheaven.com/mb/winxp/369309/369322/re-comand-prompt/#369322</guid>
      <pubDate>Thu, 07 Feb 2008 22:41:54 -0700</pubDate>
      <category>Windows XP</category>
    </item>
    <item>
      <title>Comand Prompt</title>
      <link>http://www.programmersheaven.com/mb/winxp/369309/369309/comand-prompt/</link>
      <description>My teacher hid a document in myDocuments folder from the comand Prompt and every effort to unhide that file proved abortive. Does anyone know how he acomplished this magic.&lt;br /&gt;</description>
      <guid isPermaLink="true">http://www.programmersheaven.com/mb/winxp/369309/369309/comand-prompt/</guid>
      <pubDate>Thu, 07 Feb 2008 15:32:16 -0700</pubDate>
      <category>Windows XP</category>
    </item>
    <item>
      <title>Need Good Programmer/Hacker Help!</title>
      <link>http://www.programmersheaven.com/mb/winxp/366318/366318/need-good-programmerhacker-help/</link>
      <description>Hello Everyone! I am new to programmersheaven, and also a bit new to programming as well. I am not used to programming because I have spent most of my time learning to code in other ways. That is not the reason I am posting though. First off, you may know of a game that is called RuneScape 2. This game is full of scammers/hackers/crackers ect. I recently got my account stolen, and I have known many other people that have to. With my knowledge in coding, I am hoping to create a website that helps people get their accounts back. I am asking for someone who would be willing to help make / create a simple keylogger or type of trojan keylogger or maybe a backdoor. Also, some help making this file undetectable. I would be truly grateful to anyone that could help, and I'm sure that the people that come to me for help will be grateful as well. Please talk to me on AIM on howdydoody202020 , or on MSN at zsbarson@hotmail.com&lt;br /&gt;
&lt;br /&gt;
Thank you all very much, and enjoy the website!&lt;br /&gt;
&lt;br /&gt;
Post Back!&lt;br /&gt;
&lt;br /&gt;</description>
      <guid isPermaLink="true">http://www.programmersheaven.com/mb/winxp/366318/366318/need-good-programmerhacker-help/</guid>
      <pubDate>Wed, 10 Oct 2007 18:33:04 -0700</pubDate>
      <category>Windows XP</category>
    </item>
    <item>
      <title>Re: Is it possible to install Visual Studio on an externa HD?</title>
      <link>http://www.programmersheaven.com/mb/winxp/365558/365564/re-is-it-possible-to-install-visual-studio-on-an-externa-hd/#365564</link>
      <description>: : : &lt;br /&gt;
: : : Hi all, &lt;br /&gt;
: : : I am asking this because I think it could a useful thing for &lt;br /&gt;
: : : everybody.&lt;br /&gt;
: : : &lt;br /&gt;
: : : It could be interesting to know (if possible) how to install a &lt;br /&gt;
: : : Visual Studio 2005 on an extarnal HD, so that I can bring it up and &lt;br /&gt;
: : : just connecting it on a new computer I can start to keep working as &lt;br /&gt;
: : : I was doing on my home computer....&lt;br /&gt;
: : : &lt;br /&gt;
: : : I know that there are lap tops for that purpose but I think that an &lt;br /&gt;
: : : Ext HD is cheaper and than it could be useful and easier to carry &lt;br /&gt;
: : : out.&lt;br /&gt;
: : : &lt;br /&gt;
: : : Is there somebody that knows it?&lt;br /&gt;
: : : &lt;br /&gt;
: : : Thanks,&lt;br /&gt;
: : : Dario P. &lt;br /&gt;
: : &lt;br /&gt;
: : It's not possible, because VS2005 (just like so many applications) &lt;br /&gt;
: : store its configuration in the registry, which cannot be placed on &lt;br /&gt;
: : an external HDD. It might also install several critical components &lt;br /&gt;
: : in the windows\system, windows\system32, and "program files\common &lt;br /&gt;
: : files" folders.&lt;br /&gt;
: &lt;br /&gt;
: Hi, thanks for the answer that was more or less what I was expecting &lt;br /&gt;
: to get... But you can never know may be there is a way....&lt;br /&gt;
: With Visual Studio 6 I have been able to do that (but, you know, &lt;br /&gt;
: that is a relative smaller product) in fact I exported the registry &lt;br /&gt;
: things and the few dlls that where installed on System32 and with &lt;br /&gt;
: that it went fine, but it was VS6 and not VisualStudio2005....&lt;br /&gt;
: Any other hint ?&lt;br /&gt;
&lt;br /&gt;
I am just wondering that the way it is its derived from a political decision to force to have one installation on one PC, installing it on external HD it sounds like to be installed on different boxes with one single license purchased..., by the way I still beleive that there gotta be a way....</description>
      <guid isPermaLink="true">http://www.programmersheaven.com/mb/winxp/365558/365564/re-is-it-possible-to-install-visual-studio-on-an-externa-hd/#365564</guid>
      <pubDate>Thu, 13 Sep 2007 06:51:49 -0700</pubDate>
      <category>Windows XP</category>
    </item>
    <item>
      <title>Re: Is it possible to install Visual Studio on an externa HD?</title>
      <link>http://www.programmersheaven.com/mb/winxp/365558/365563/re-is-it-possible-to-install-visual-studio-on-an-externa-hd/#365563</link>
      <description>: : &lt;br /&gt;
: : Hi all, &lt;br /&gt;
: : I am asking this because I think it could a useful thing for &lt;br /&gt;
: : everybody.&lt;br /&gt;
: : &lt;br /&gt;
: : It could be interesting to know (if possible) how to install a &lt;br /&gt;
: : Visual Studio 2005 on an extarnal HD, so that I can bring it up and &lt;br /&gt;
: : just connecting it on a new computer I can start to keep working as &lt;br /&gt;
: : I was doing on my home computer....&lt;br /&gt;
: : &lt;br /&gt;
: : I know that there are lap tops for that purpose but I think that an &lt;br /&gt;
: : Ext HD is cheaper and than it could be useful and easier to carry &lt;br /&gt;
: : out.&lt;br /&gt;
: : &lt;br /&gt;
: : Is there somebody that knows it?&lt;br /&gt;
: : &lt;br /&gt;
: : Thanks,&lt;br /&gt;
: : Dario P. &lt;br /&gt;
: &lt;br /&gt;
: It's not possible, because VS2005 (just like so many applications) &lt;br /&gt;
: store its configuration in the registry, which cannot be placed on &lt;br /&gt;
: an external HDD. It might also install several critical components &lt;br /&gt;
: in the windows\system, windows\system32, and "program files\common &lt;br /&gt;
: files" folders.&lt;br /&gt;
&lt;br /&gt;
Hi, thanks for the answer that was more or less what I was expecting to get... But you can never know may be there is a way....&lt;br /&gt;
With Visual Studio 6 I have been able to do that (but, you know, that is a relative smaller product) in fact I exported the registry things and the few dlls that where installed on System32 and with that it went fine, but it was VS6 and not VisualStudio2005....&lt;br /&gt;
Any other hint ?</description>
      <guid isPermaLink="true">http://www.programmersheaven.com/mb/winxp/365558/365563/re-is-it-possible-to-install-visual-studio-on-an-externa-hd/#365563</guid>
      <pubDate>Thu, 13 Sep 2007 06:36:53 -0700</pubDate>
      <category>Windows XP</category>
    </item>
  </channel>
</rss>