<?xml version="1.0" encoding="utf-8"?>
<rss version="2.0">
  <channel>
    <title>Programmers Heaven Forums RSS Feed</title>
    <link>http://www.programmersheaven.com/</link>
    <description>Contains the latest threads from all of the Programmer's Heaven forums, excluding replies.</description>
    <language>en</language>
    <copyright>Copyright 2009 Programmers Heaven</copyright>
    <pubDate>Fri, 03 Jul 2009 19:39:44 -0700</pubDate>
    <lastBuildDate>Fri, 03 Jul 2009 19:39:44 -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>find corresponding y coordinates</title>
      <link>http://www.programmersheaven.com/mb/ctocplusplustomatlab/393264/393264/find-corresponding-y-coordinates/</link>
      <description>I will try to explain what I am trying to do in more detail.&lt;br /&gt;
&lt;br /&gt;
Basically I have a binary image (attached) and I would like to plot a parabola across the min  y's for x=20:300 for example.&lt;br /&gt;
&lt;br /&gt;
But there are several values at y=1 in the binary image at x=200 for example.&lt;br /&gt;
&lt;br /&gt;
I did it point by point the following way but its not practical for 200 points.&lt;br /&gt;
&lt;br /&gt;
x1=125;&lt;br /&gt;
x2=120;&lt;br /&gt;
x3=115;&lt;br /&gt;
x4=110;&lt;br /&gt;
x5=105;&lt;br /&gt;
x6=100;&lt;br /&gt;
x7=95;&lt;br /&gt;
x8=80;&lt;br /&gt;
x11=75;&lt;br /&gt;
x12=70;&lt;br /&gt;
x13=65;&lt;br /&gt;
x14=60;&lt;br /&gt;
x15=55;&lt;br /&gt;
x16=40;&lt;br /&gt;
x17=35;&lt;br /&gt;
&lt;br /&gt;
[y1]=find(I(:,x1));&lt;br /&gt;
[y2]=find(I(:,x2));&lt;br /&gt;
[y3]=find(I(:,x3));&lt;br /&gt;
[y4]=find(l(:,x4));&lt;br /&gt;
[y5]=find(I(:,x5));&lt;br /&gt;
[y6]=find(Il(:,x6));&lt;br /&gt;
[y7]=find(I(:,x7));&lt;br /&gt;
[y8]=find(I(:,x8));&lt;br /&gt;
[y11]=find(I(x11));&lt;br /&gt;
[y12]=find(I(:,x12));&lt;br /&gt;
[y13]=find(I(:,x13));&lt;br /&gt;
[y14]=find(I(:,x14));&lt;br /&gt;
[y15]=find(I(:,x15));&lt;br /&gt;
[y16]=find(I(:,x16));&lt;br /&gt;
[y17]=find(I(:,x17));&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
y1=min(y1);&lt;br /&gt;
y2=min(y2);&lt;br /&gt;
y3=min(y3);&lt;br /&gt;
y4=min(y4);&lt;br /&gt;
y5=min(y5);&lt;br /&gt;
y6=min(y6);&lt;br /&gt;
y7=min(y7);&lt;br /&gt;
y8=min(y8);&lt;br /&gt;
y11=min(y11);&lt;br /&gt;
y12=min(y12);&lt;br /&gt;
y13=min(y13);&lt;br /&gt;
y14=min(y14);&lt;br /&gt;
y15=min(y15);&lt;br /&gt;
y16=min(y16);&lt;br /&gt;
y17=min(y17);&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Once I have the points I use p=polyfit(xcoord,ycoord,2) to draw the parabola which is pretty straightforward.The only problem I am facing is to get the corresponding minimum y coordinates for given larger range of x.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Best regards, &lt;br /&gt;</description>
      <guid isPermaLink="true">http://www.programmersheaven.com/mb/ctocplusplustomatlab/393264/393264/find-corresponding-y-coordinates/</guid>
      <pubDate>Fri, 03 Jul 2009 18:13:35 -0700</pubDate>
      <category>Matlab</category>
    </item>
    <item>
      <title>Help on homework assignment</title>
      <link>http://www.programmersheaven.com/mb/CandCPP/393263/393263/help-on-homework-assignment/</link>
      <description>I need to write a function called distance that calculates the distance between two points (x1,y1) and (x2, y2). All numbers and return values should be of type double. &lt;br /&gt;
&lt;br /&gt;
Here is what i have so far.&lt;br /&gt;
&lt;br /&gt;
#include "stdafx.h"&lt;br /&gt;
#include &amp;lt;iostream&amp;gt;&lt;br /&gt;
#include &amp;lt;cmath&amp;gt;&lt;br /&gt;
&lt;br /&gt;
using namespace std;&lt;br /&gt;
&lt;br /&gt;
int main()&lt;br /&gt;
{&lt;br /&gt;
	double x1,x2,y1,y2,d;   //declaring variables&lt;br /&gt;
&lt;br /&gt;
	cout &amp;lt;&amp;lt; "Please enter the first two points\n";  //prompting usering for the first two points.&lt;br /&gt;
	cin &amp;gt;&amp;gt; x1 &amp;gt;&amp;gt; y1;&lt;br /&gt;
&lt;br /&gt;
	cout &amp;lt;&amp;lt; "Please enter the last two points\n";   //prompting the user for the last two points.&lt;br /&gt;
	cin &amp;gt;&amp;gt; x2 &amp;gt;&amp;gt; y2;&lt;br /&gt;
    &lt;br /&gt;
        //distance function&lt;br /&gt;
        double distance(double x1, double x2, double y1, double y2)&lt;br /&gt;
	{&lt;br /&gt;
                 d = (sqrt (pow (double X2) - (double X1) ) + ( pow (double Y2) - (double Y1));&lt;br /&gt;
		 return d;&lt;br /&gt;
	}&lt;br /&gt;
&lt;br /&gt;
	return 0;&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;</description>
      <guid isPermaLink="true">http://www.programmersheaven.com/mb/CandCPP/393263/393263/help-on-homework-assignment/</guid>
      <pubDate>Fri, 03 Jul 2009 16:54:37 -0700</pubDate>
      <category>C and C++</category>
    </item>
    <item>
      <title>how to do a sequential search in C</title>
      <link>http://www.programmersheaven.com/mb/CandCPP/393261/393261/how-to-do-a-sequential-search-in-c/</link>
      <description>I'm trying to do a binarysearch in this piece of code that i have here. if the array has been sorted use a binary search, if it is not sorted use a sequential search. I've manage to get the binarysearch section of the code working, however, no joy with the sequential search.&lt;br /&gt;
&lt;br /&gt;
Can anyone show show me to accomplish this? i'm a newbie to the language, and i'm still learning this stuff. maybe a starting point, then i might be able to figure out the rest of it out myself.&lt;br /&gt;
&lt;br /&gt;
thanks&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;pre class="sourcecode"&gt;#include &amp;lt;stdio.h&amp;gt;
#include &amp;lt;ctype.h&amp;gt;//needed for toupper function
#include &amp;lt;time.h&amp;gt;
#include &amp;lt;stdlib.h&amp;gt;
#define SIZE 5


char menuVersion1 ();
void  menuVersion2 (char *);
void fill ( int [] , int * );// void fill ( int * );
void print ( int [] );
void sort ( int [] , int *  );

int main ()
{
    char selection;
    int A [SIZE] = {0}; // A is an array of 5 integers
    int sorted = 0;
    
    srand ( time (NULL) );

    do
    {
      //selection = menuVersion1 ();
      menuVersion2 ( &amp;amp;selection );
      
      

      switch ( selection )
      {
         case 'F' : fill (A , &amp;amp;sorted);
         break;
         
         case 'P' : print (A);
         break;
         
         case 'S' : sort (A, &amp;amp;sorted);
         break;
         
         
         case 'Z' : printf ("Goodbye!\n\n");
         break;
         
         case 'Q' : printf ("Query coming up!\n\n");
                    if ( sorted == 0 ) printf ("the array is not sorted!\n");
                    else printf ("the array is sorted!\n");
          break;
         
         default : printf ("\a\a Invalid selection!!!\n\n");    
      }
 
    }while ( selection != 'Z');
    
    system ("pause");
    return 0;
}
//----------------------------

char menuVersion1 ()
{
     char option;
     
     printf ("\n--------\nF-Fill the array \n");
     printf ("P-Print the array\n");
     printf ("S-Sort the array\n");
     printf ("Z-Exit\n");
     printf ("Enter your selection :");
     scanf(" %c", &amp;amp;option);

     return toupper(option);


}

//--------------------------------
void  menuVersion2 (char * option)
{
     
     
     printf ("\n--------\nF-Fill the array \n");
     printf ("P-Print the array\n");
     printf ("S-Sort the array\n");
     printf ("Q-Query the array\n");
     printf ("Z-Exit\n");
     printf ("Enter your selection :");
     scanf(" %c", option);

     *option = toupper(*option);
}
//---------------------------------
void fill ( int A [] , int * sorted)
{
   int walker;
   for (walker = 0 ; walker &amp;lt; SIZE ; walker ++)
   {   
      A[walker] = rand ()%999 + 1;    
   }
   *sorted = 0;
   
   printf ("ARRAY LOADED!!!\n");
     
}

//----------------------------------------
void print ( int A [])
{
   int walker;
   printf ("\nHere are the elements ...\n");
   for (walker = 0 ; walker &amp;lt; SIZE ; walker ++)
   {   
      printf ("%d\n", A[walker] );
   }
   
   printf ("\a ARRAY PRINTED!!!\n");
     
}
//------------------------
void sort ( int A[] , int * sorted )
{

   int i , j , temp ;
   *sorted = 1;
   
   for ( j= 0; j&amp;lt;SIZE ; j++)
   {
    for ( i=0; i&amp;lt;=SIZE-2 ; i++)
    {
       if ( A[i] &amp;gt; A[i+1])
       {
            temp = A[i];
            A[i] = A[i+1];
            A[i+1] = temp;
       }
    }
  }



}


&lt;/pre&gt;&lt;br /&gt;</description>
      <guid isPermaLink="true">http://www.programmersheaven.com/mb/CandCPP/393261/393261/how-to-do-a-sequential-search-in-c/</guid>
      <pubDate>Fri, 03 Jul 2009 14:49:15 -0700</pubDate>
      <category>C and C++</category>
    </item>
    <item>
      <title>Calculate median in VB6</title>
      <link>http://www.programmersheaven.com/mb/VBasic/393259/393259/calculate-median-in-vb6/</link>
      <description>I have an application written in VB6 that needs to calculate the median of a column of numbers read from an ASCII file.&lt;br /&gt;
&lt;br /&gt;
I have found some references on MSDN to StatisticFormula.Median Method and SeriesCollection Class.  There are also references to .mdb and SQL data bases.&lt;br /&gt;
&lt;br /&gt;
1) Which is easier to implement, VBA(using .mdb) or SQL?  Can either of these be used in plain VB6?  Can VB6 create the appropriate database, .mdb or SQL, as the program is running and then delete the file when it is finished?  As the data values are read from the ASCII file, how are they put into the selected database?&lt;br /&gt;
&lt;br /&gt;
2) Is there a Median function written in VB6 code out there somewhere that would (might) be easier to use than VBA or SQL?&lt;br /&gt;
&lt;br /&gt;
As you might surmise, I'm not a pro at this.  This application was written to support T-detector sensitivity calculation for a weather satellite system and the program now has to be modified.  I shall eventually rehost this into VB 2008 or 2010 but am trying to save some time as we have a launch coming up in two months.&lt;br /&gt;
&lt;br /&gt;
Any help would be appreciated.&lt;br /&gt;
&lt;br /&gt;
    Turner&lt;br /&gt;</description>
      <guid isPermaLink="true">http://www.programmersheaven.com/mb/VBasic/393259/393259/calculate-median-in-vb6/</guid>
      <pubDate>Fri, 03 Jul 2009 13:11:10 -0700</pubDate>
      <category>Visual Basic</category>
    </item>
    <item>
      <title>c++ stuck on math expressions</title>
      <link>http://www.programmersheaven.com/mb/beginnercpp/393256/393256/c++-stuck-on-math-expressions/</link>
      <description>This is a sample project for a virtual HS programming class (not graded) and I am stuck on the math expressions and cant figure out what I am doing wrong...I am thinking it could have something to do with mixing float and int but I have no clue, only been at it a short time. Any suggestions or help would be great!&lt;br /&gt;
&lt;br /&gt;
#include &amp;lt;iostream&amp;gt;&lt;br /&gt;
using namespace std;&lt;br /&gt;
&lt;br /&gt;
int main()&lt;br /&gt;
{&lt;br /&gt;
int packs, bars, lollies; //user input data&lt;br /&gt;
const float GUM=1.99, CANDY=.75, LOLLIES=.30; //price per item&lt;br /&gt;
float total;&lt;br /&gt;
&lt;br /&gt;
	//Questions and input data for Candy Store Project&lt;br /&gt;
	cout&amp;lt;&amp;lt;"How many packs of gum would you like?";&lt;br /&gt;
	cin&amp;gt;&amp;gt;packs;&lt;br /&gt;
	cout&amp;lt;&amp;lt;"How many candy bars would you like?";&lt;br /&gt;
	cin&amp;gt;&amp;gt;bars;&lt;br /&gt;
	cout&amp;lt;&amp;lt;"How many lollipops would you like?";&lt;br /&gt;
	cin&amp;gt;&amp;gt;lollies;&lt;br /&gt;
&lt;br /&gt;
	//Calculations using math operators&lt;br /&gt;
	total = packs * GUM + bars * CANDY + lollies * LOLLIES; &lt;br /&gt;
	cout&amp;lt;&amp;lt;"Your total is $" &amp;lt;&amp;lt;total&amp;lt;&amp;lt;endl;&lt;br /&gt;
&lt;br /&gt;
	system("PAUSE");&lt;br /&gt;
	return0;&lt;br /&gt;
}&lt;br /&gt;</description>
      <guid isPermaLink="true">http://www.programmersheaven.com/mb/beginnercpp/393256/393256/c++-stuck-on-math-expressions/</guid>
      <pubDate>Fri, 03 Jul 2009 10:37:29 -0700</pubDate>
      <category>Beginner C/C++</category>
    </item>
    <item>
      <title>Buy 3gs 32GB Apple Iphone &amp; Nokia N97(32gb) + 1 free + 10% discount</title>
      <link>http://www.programmersheaven.com/mb/forsale/393255/393255/buy-3gs-32gb-apple-iphone--nokia-n9732gb-+-1-free-+-10-discount/</link>
      <description>Hi,&lt;br /&gt;
&lt;br /&gt;
We are major distributors of quality electronics ranging from mobile phones,game consoles,Plasma and LCD Tv,Monitors,Musical Equipments just to mention few.&lt;br /&gt;
&lt;br /&gt;
Our products are brand New factory sealed as they are OEM manufactured with 24 months warranty and 9 months insurance return policy.&lt;br /&gt;
&lt;br /&gt;
Contact us directly to ....&lt;br /&gt;
&lt;br /&gt;
HERE IS OTHER MOBILE PHONE LIST BELOW.....&lt;br /&gt;
&lt;br /&gt;
NOKIA PHONES...&lt;br /&gt;
Nokia N97(32GB)........$321usd&lt;br /&gt;
Nokia N96 16GB.........$300usd&lt;br /&gt;
Nokia N96 16gb(Quartz).$315usd&lt;br /&gt;
Nokia 5800(Music.e.)...$300usd&lt;br /&gt;
Nokia Aeon.............$450usd&lt;br /&gt;
Nokia N80..............$250usd&lt;br /&gt;
Nokia 8800 Arte........$380usd&lt;br /&gt;
Nokia N95 8GB..........$290usd&lt;br /&gt;
Nokia N81 8GB..........$250usd&lt;br /&gt;
Nokia E90 Communicator.$240usd&lt;br /&gt;
Nokia 8600 Luna........$220usd&lt;br /&gt;
Nokia 8800 Sirocco Edition...$230usd&lt;br /&gt;
Nokia N800 Internet Tablet...$250usd&lt;br /&gt;
Nokia 5300 XpressMusic.......$200usd&lt;br /&gt;
&lt;br /&gt;
APPLE IPHONE PHONES.&lt;br /&gt;
Iphone 4GB .......................$200usd&lt;br /&gt;
Iphone 8GB Version 1.1.3..........$215usd&lt;br /&gt;
Iphone 16GB Version 1.1.4.........$230usd&lt;br /&gt;
Iphone 3G New Edition Software ...$255usd&lt;br /&gt;
Iphone 3GS 32GB......................$311usd&lt;br /&gt;
&lt;br /&gt;
HTC PHONES&lt;br /&gt;
HTC MAX(4G)............$350USD&lt;br /&gt;
HTC AdvantageX7500.....$250usd&lt;br /&gt;
HTC Touch Hd ..........$300usd&lt;br /&gt;
HTC Touch Diamond 2....$230usd&lt;br /&gt;
HTC Touch Cruise 2.....$210usd&lt;br /&gt;
HTC Touch Dual.........$180usd&lt;br /&gt;
HTC TyTN II............$300usd&lt;br /&gt;
HTC TyTN...............$280usd.&lt;br /&gt;
&lt;br /&gt;
BLACKBERRY PHONES...&lt;br /&gt;
Blackberry 9530 Storm......$302usd&lt;br /&gt;
Blackberry 9500 Storm......$300usd&lt;br /&gt;
Blackberry 9000 Bold.......$303usd&lt;br /&gt;
Blackberry 8900 Curve......$311usd&lt;br /&gt;
Blackberry Pearl...........$300usd&lt;br /&gt;
&lt;br /&gt;
SAMSUNG PHONES.&lt;br /&gt;
Samsung T-Omnia.............$400usd&lt;br /&gt;
Samsung i910 Omnia 16gb.....$380usd&lt;br /&gt;
Samsung i900 Omnia..........$300usd&lt;br /&gt;
Samsung G800................$250usd&lt;br /&gt;
Samsung Serenata............$400usd&lt;br /&gt;
Samsung P520 Armani.........$230usd&lt;br /&gt;
&lt;br /&gt;
SONY ERICSSON PHONES.&lt;br /&gt;
Sony Ericsson Idou...........$400usd&lt;br /&gt;
Sony Ericsson w1............$350usd&lt;br /&gt;
Sony Ericsson C905 .........$240usd&lt;br /&gt;
Sony Ericsson XPERIA X1.....$260usd&lt;br /&gt;
&lt;br /&gt;
GAME CONSOLES.......&lt;br /&gt;
&lt;br /&gt;
Playstation 3 60gb.....$199usd&lt;br /&gt;
Playstation 3 80gb.....$211usd&lt;br /&gt;
Playstation 3 160gb....$245usd&lt;br /&gt;
&lt;br /&gt;
Nintendo wii Bundle....$206usd&lt;br /&gt;
Nintendo wii Fit(Elextra)..$235usd&lt;br /&gt;
Nintendo wii Platinum(Ash).$239usd&lt;br /&gt;
&lt;br /&gt;
Xbox 360 Solo....$200usd&lt;br /&gt;
Xbox 360 Degree..$207usd&lt;br /&gt;
Xbox 360 Altis...$211usd&lt;br /&gt;
&lt;br /&gt;
LCD &amp;amp; PLASMA TELEVISION.........&lt;br /&gt;
&lt;br /&gt;
Samsung - 52\\\" LCD TV - Widescreen ......$502usd&lt;br /&gt;
Samsung - 40\\\" LCD TV - Widescreen ......$420usd&lt;br /&gt;
Samsung - 46\\\" LCD TV - Widescreen - Black..$463usd&lt;br /&gt;
Samsung - 32\\\" LCD TV - Widescreen - Black...$300usd&lt;br /&gt;
Samsung - 62\\\" LCD TV - Widescreen - Black ..$533usd&lt;br /&gt;
Sharp - 42\\\" LCD TV - Widescreen - Black ...$399usd&lt;br /&gt;
Sharp LC - 52\\\" LCD TV - Widescreen - High-gloss black...$499usd&lt;br /&gt;
Sharp LC - 65\\\" LCD TV - Widescreen - High-gloss black...$531usd&lt;br /&gt;
Sharp LC - 32\\\" LCD TV - Widescreen - Black ........$302usd&lt;br /&gt;
Sharp LC - 46\\\" LCD TV - Widescreen - High-gloss black...$321usd&lt;br /&gt;
Sharp LC - 37\\\" LCD TV - Widescreen ..............$311usd&lt;br /&gt;
LG - 32\\\" LCD TV -Widescreen - High-gloss black..$321usd&lt;br /&gt;
LG - 42\\\" LCD TV - Widescreen - Black gloss ....$386usd&lt;br /&gt;
LG - 47\\\" LCD TV - Widescreen - Gloss piano black..$394usd&lt;br /&gt;
Sony - 46\\\" LCD TV - Widescreen .............$390usd&lt;br /&gt;
&lt;br /&gt;
DJ MIXERS AND MUSICAL INSTRUMENTS......&lt;br /&gt;
&lt;br /&gt;
Korg M3-88 Key Workstation/Sampler .......$1,050usd&lt;br /&gt;
Korg Pa2XPro 76-key Arranger Keyboard.......$1,000usd&lt;br /&gt;
Korg TR61 61-key Workstation........$510usd&lt;br /&gt;
Korg M3 73 73-key Workstation/Sampler.......$950usd&lt;br /&gt;
Korg M3 61 61-key Workstation...........$1,150usd&lt;br /&gt;
Korg PA50 Arranger Workstation.......$490usd&lt;br /&gt;
Korg X50 Synthesizer.........$400usd&lt;br /&gt;
KORG PA800 PRO ARRANG .........$1000usd&lt;br /&gt;
Korg TR88 88-key Workstation ........$780usd&lt;br /&gt;
KORG TRITON TR61......$500usd&lt;br /&gt;
Korg Pa500 61-key Arranger Keyboard ............$780usd&lt;br /&gt;
Korg CX3 Digital Drawbar Organ.....$1,050usd&lt;br /&gt;
Korg BX3 Digital Drawbar Organ.......$1,450usd&lt;br /&gt;
Korg OASYS 88 ............$2,000usd&lt;br /&gt;
Korg OASYS 76 .........$1,200usd&lt;br /&gt;
Korg NC-300 88-Key........$520usd&lt;br /&gt;
Korg TR-76 76-Key Keyboard.......$850usd&lt;br /&gt;
&lt;br /&gt;
DIGITAL MIXERS:&lt;br /&gt;
Yamaha O2R96V2 Digital Mixer ..........$2,800usd&lt;br /&gt;
Yamaha 01V96 V2 Digital Mixer .........$1,350usd&lt;br /&gt;
Yamaha N12 12-Channel Digital Mixer..........$880usd&lt;br /&gt;
Yamaha N8 8-Channel Digital Mixer ...$600usd&lt;br /&gt;
Yamaha PM4000 Mixing Console .....$2,100usd&lt;br /&gt;
YAMAHA PM5000-Console Digital Mixer.....$10,500usd&lt;br /&gt;
Yamaha MG32/14FX Analog Console....$600usd&lt;br /&gt;
Yamaha DM2000 Digital Production Console .........$3,800usd&lt;br /&gt;
YAMAHA DM1000V2 DIGITAL MIXING CONSOLE ........$1,980usd&lt;br /&gt;
YAMAHA PM5D Version 2 Live Sound Console Digital Mixer...$4,000usd&lt;br /&gt;
Yamaha M7CL-48 48Ch Digital Mixing Console .....$5,000usd&lt;br /&gt;
&lt;br /&gt;
(All prices quoted with Shipping to your delivery address )&lt;br /&gt;
&lt;br /&gt;
Our MOQ(Minimum Order is 3 Units,which attracts 1 free unit,20%&lt;br /&gt;
discount and free delivery charges as well)&lt;br /&gt;
&lt;br /&gt;
We will proceed to tagging and labeling of the units once we confirmed&lt;br /&gt;
your readiness along with your payment details&lt;br /&gt;
&lt;br /&gt;
via T/T,WU OR MG,as they are modes that meet up with our delivery&lt;br /&gt;
duration which is stationed at 32hours.&lt;br /&gt;
&lt;br /&gt;
Delivery will immediately be concreted via FEDEX/DHL COURIER SERVICES&lt;br /&gt;
while all the delivery data will be&lt;br /&gt;
&lt;br /&gt;
divulged to you for online monitoring till the units arrived your&lt;br /&gt;
destination in the following manner..&lt;br /&gt;
&lt;br /&gt;
**Tracking Codes for tracking of the units&lt;br /&gt;
**Air-Way Bill for order review&lt;br /&gt;
**Commercial Invoice and receipt for order registration and stamping&lt;br /&gt;
**(BOL)Bill of lading for delivery concreteness as your doorstep.&lt;br /&gt;
&lt;br /&gt;
SEND US YOUR FULL DELIVERY DATA IN THE FOLLOWING MANNER..&lt;br /&gt;
&lt;br /&gt;
**Full Receiver;s Name/company's Name/Store Name&lt;br /&gt;
**The Amount of units willing to order and the Models + SPECIFICATIONS&lt;br /&gt;
**Full Delivery Address and Data&lt;br /&gt;
**Your Phone Number/Fax Number/Code&lt;br /&gt;
**Skype ID/MSN/Yahoo/Google Talk ID&lt;br /&gt;
**Your opinion for speedy delivery.&lt;br /&gt;
&lt;br /&gt;
We therefore await your speedy reply along with your "GO AHEAD" for&lt;br /&gt;
instant delivery,so that we can proceed to&lt;br /&gt;
&lt;br /&gt;
tagging and labeling of the units without delay.&lt;br /&gt;
&lt;br /&gt;
NOTE...that our firm is acquainted with all the delivery Documents&lt;br /&gt;
like Vat Lapty,Custom's PROR,Tax EVA Sheet&lt;br /&gt;
&lt;br /&gt;
verified by COC(Chamber Of Commerce),ICOQ and other which will aid&lt;br /&gt;
speedy delivery of your units without any&lt;br /&gt;
&lt;br /&gt;
hindrance or extra charges as also demanded by other company/firm or&lt;br /&gt;
group of individuals.&lt;br /&gt;
&lt;br /&gt;
Send your inquiry straight to.......&lt;br /&gt;
&lt;br /&gt;
We await your reply NOW...&lt;br /&gt;
&lt;br /&gt;
Regards and God Bless...&lt;br /&gt;
&lt;br /&gt;
Quinito El-Haxavi(Hon.Edu.Bsc)Marketing Head and Sales Logistic.&lt;br /&gt;</description>
      <guid isPermaLink="true">http://www.programmersheaven.com/mb/forsale/393255/393255/buy-3gs-32gb-apple-iphone--nokia-n9732gb-+-1-free-+-10-discount/</guid>
      <pubDate>Fri, 03 Jul 2009 10:36:57 -0700</pubDate>
      <category>For sale</category>
    </item>
    <item>
      <title>Buy 3gs 32GB Apple Iphone &amp; Nokia N97(32gb) + 1 free + 10% discount</title>
      <link>http://www.programmersheaven.com/mb/forsale/393254/393254/buy-3gs-32gb-apple-iphone--nokia-n9732gb-+-1-free-+-10-discount/</link>
      <description>Hi,&lt;br /&gt;
&lt;br /&gt;
We are major distributors of quality electronics ranging from mobile phones,game consoles,Plasma and LCD Tv,Monitors,Musical Equipments just to mention few.&lt;br /&gt;
&lt;br /&gt;
Our products are brand New factory sealed as they are OEM manufactured with 24 months warranty and 9 months insurance return policy.&lt;br /&gt;
&lt;br /&gt;
Contact us directly to ....&lt;br /&gt;
&lt;br /&gt;
HERE IS OTHER MOBILE PHONE LIST BELOW.....&lt;br /&gt;
&lt;br /&gt;
NOKIA PHONES...&lt;br /&gt;
Nokia N97(32GB)........$321usd&lt;br /&gt;
Nokia N96 16GB.........$300usd&lt;br /&gt;
Nokia N96 16gb(Quartz).$315usd&lt;br /&gt;
Nokia 5800(Music.e.)...$300usd&lt;br /&gt;
Nokia Aeon.............$450usd&lt;br /&gt;
Nokia N80..............$250usd&lt;br /&gt;
Nokia 8800 Arte........$380usd&lt;br /&gt;
Nokia N95 8GB..........$290usd&lt;br /&gt;
Nokia N81 8GB..........$250usd&lt;br /&gt;
Nokia E90 Communicator.$240usd&lt;br /&gt;
Nokia 8600 Luna........$220usd&lt;br /&gt;
Nokia 8800 Sirocco Edition...$230usd&lt;br /&gt;
Nokia N800 Internet Tablet...$250usd&lt;br /&gt;
Nokia 5300 XpressMusic.......$200usd&lt;br /&gt;
&lt;br /&gt;
APPLE IPHONE PHONES.&lt;br /&gt;
Iphone 4GB .......................$200usd&lt;br /&gt;
Iphone 8GB Version 1.1.3..........$215usd&lt;br /&gt;
Iphone 16GB Version 1.1.4.........$230usd&lt;br /&gt;
Iphone 3G New Edition Software ...$255usd&lt;br /&gt;
Iphone 3GS 32GB......................$311usd&lt;br /&gt;
&lt;br /&gt;
HTC PHONES&lt;br /&gt;
HTC MAX(4G)............$350USD&lt;br /&gt;
HTC AdvantageX7500.....$250usd&lt;br /&gt;
HTC Touch Hd ..........$300usd&lt;br /&gt;
HTC Touch Diamond 2....$230usd&lt;br /&gt;
HTC Touch Cruise 2.....$210usd&lt;br /&gt;
HTC Touch Dual.........$180usd&lt;br /&gt;
HTC TyTN II............$300usd&lt;br /&gt;
HTC TyTN...............$280usd.&lt;br /&gt;
&lt;br /&gt;
BLACKBERRY PHONES...&lt;br /&gt;
Blackberry 9530 Storm......$302usd&lt;br /&gt;
Blackberry 9500 Storm......$300usd&lt;br /&gt;
Blackberry 9000 Bold.......$303usd&lt;br /&gt;
Blackberry 8900 Curve......$311usd&lt;br /&gt;
Blackberry Pearl...........$300usd&lt;br /&gt;
&lt;br /&gt;
SAMSUNG PHONES.&lt;br /&gt;
Samsung T-Omnia.............$400usd&lt;br /&gt;
Samsung i910 Omnia 16gb.....$380usd&lt;br /&gt;
Samsung i900 Omnia..........$300usd&lt;br /&gt;
Samsung G800................$250usd&lt;br /&gt;
Samsung Serenata............$400usd&lt;br /&gt;
Samsung P520 Armani.........$230usd&lt;br /&gt;
&lt;br /&gt;
SONY ERICSSON PHONES.&lt;br /&gt;
Sony Ericsson Idou...........$400usd&lt;br /&gt;
Sony Ericsson w1............$350usd&lt;br /&gt;
Sony Ericsson C905 .........$240usd&lt;br /&gt;
Sony Ericsson XPERIA X1.....$260usd&lt;br /&gt;
&lt;br /&gt;
GAME CONSOLES.......&lt;br /&gt;
&lt;br /&gt;
Playstation 3 60gb.....$199usd&lt;br /&gt;
Playstation 3 80gb.....$211usd&lt;br /&gt;
Playstation 3 160gb....$245usd&lt;br /&gt;
&lt;br /&gt;
Nintendo wii Bundle....$206usd&lt;br /&gt;
Nintendo wii Fit(Elextra)..$235usd&lt;br /&gt;
Nintendo wii Platinum(Ash).$239usd&lt;br /&gt;
&lt;br /&gt;
Xbox 360 Solo....$200usd&lt;br /&gt;
Xbox 360 Degree..$207usd&lt;br /&gt;
Xbox 360 Altis...$211usd&lt;br /&gt;
&lt;br /&gt;
LCD &amp;amp; PLASMA TELEVISION.........&lt;br /&gt;
&lt;br /&gt;
Samsung - 52\\\" LCD TV - Widescreen ......$502usd&lt;br /&gt;
Samsung - 40\\\" LCD TV - Widescreen ......$420usd&lt;br /&gt;
Samsung - 46\\\" LCD TV - Widescreen - Black..$463usd&lt;br /&gt;
Samsung - 32\\\" LCD TV - Widescreen - Black...$300usd&lt;br /&gt;
Samsung - 62\\\" LCD TV - Widescreen - Black ..$533usd&lt;br /&gt;
Sharp - 42\\\" LCD TV - Widescreen - Black ...$399usd&lt;br /&gt;
Sharp LC - 52\\\" LCD TV - Widescreen - High-gloss black...$499usd&lt;br /&gt;
Sharp LC - 65\\\" LCD TV - Widescreen - High-gloss black...$531usd&lt;br /&gt;
Sharp LC - 32\\\" LCD TV - Widescreen - Black ........$302usd&lt;br /&gt;
Sharp LC - 46\\\" LCD TV - Widescreen - High-gloss black...$321usd&lt;br /&gt;
Sharp LC - 37\\\" LCD TV - Widescreen ..............$311usd&lt;br /&gt;
LG - 32\\\" LCD TV -Widescreen - High-gloss black..$321usd&lt;br /&gt;
LG - 42\\\" LCD TV - Widescreen - Black gloss ....$386usd&lt;br /&gt;
LG - 47\\\" LCD TV - Widescreen - Gloss piano black..$394usd&lt;br /&gt;
Sony - 46\\\" LCD TV - Widescreen .............$390usd&lt;br /&gt;
&lt;br /&gt;
DJ MIXERS AND MUSICAL INSTRUMENTS......&lt;br /&gt;
&lt;br /&gt;
Korg M3-88 Key Workstation/Sampler .......$1,050usd&lt;br /&gt;
Korg Pa2XPro 76-key Arranger Keyboard.......$1,000usd&lt;br /&gt;
Korg TR61 61-key Workstation........$510usd&lt;br /&gt;
Korg M3 73 73-key Workstation/Sampler.......$950usd&lt;br /&gt;
Korg M3 61 61-key Workstation...........$1,150usd&lt;br /&gt;
Korg PA50 Arranger Workstation.......$490usd&lt;br /&gt;
Korg X50 Synthesizer.........$400usd&lt;br /&gt;
KORG PA800 PRO ARRANG .........$1000usd&lt;br /&gt;
Korg TR88 88-key Workstation ........$780usd&lt;br /&gt;
KORG TRITON TR61......$500usd&lt;br /&gt;
Korg Pa500 61-key Arranger Keyboard ............$780usd&lt;br /&gt;
Korg CX3 Digital Drawbar Organ.....$1,050usd&lt;br /&gt;
Korg BX3 Digital Drawbar Organ.......$1,450usd&lt;br /&gt;
Korg OASYS 88 ............$2,000usd&lt;br /&gt;
Korg OASYS 76 .........$1,200usd&lt;br /&gt;
Korg NC-300 88-Key........$520usd&lt;br /&gt;
Korg TR-76 76-Key Keyboard.......$850usd&lt;br /&gt;
&lt;br /&gt;
DIGITAL MIXERS:&lt;br /&gt;
Yamaha O2R96V2 Digital Mixer ..........$2,800usd&lt;br /&gt;
Yamaha 01V96 V2 Digital Mixer .........$1,350usd&lt;br /&gt;
Yamaha N12 12-Channel Digital Mixer..........$880usd&lt;br /&gt;
Yamaha N8 8-Channel Digital Mixer ...$600usd&lt;br /&gt;
Yamaha PM4000 Mixing Console .....$2,100usd&lt;br /&gt;
YAMAHA PM5000-Console Digital Mixer.....$10,500usd&lt;br /&gt;
Yamaha MG32/14FX Analog Console....$600usd&lt;br /&gt;
Yamaha DM2000 Digital Production Console .........$3,800usd&lt;br /&gt;
YAMAHA DM1000V2 DIGITAL MIXING CONSOLE ........$1,980usd&lt;br /&gt;
YAMAHA PM5D Version 2 Live Sound Console Digital Mixer...$4,000usd&lt;br /&gt;
Yamaha M7CL-48 48Ch Digital Mixing Console .....$5,000usd&lt;br /&gt;
&lt;br /&gt;
(All prices quoted with Shipping to your delivery address )&lt;br /&gt;
&lt;br /&gt;
Our MOQ(Minimum Order is 3 Units,which attracts 1 free unit,20%&lt;br /&gt;
discount and free delivery charges as well)&lt;br /&gt;
&lt;br /&gt;
We will proceed to tagging and labeling of the units once we confirmed&lt;br /&gt;
your readiness along with your payment details&lt;br /&gt;
&lt;br /&gt;
via T/T,WU OR MG,as they are modes that meet up with our delivery&lt;br /&gt;
duration which is stationed at 32hours.&lt;br /&gt;
&lt;br /&gt;
Delivery will immediately be concreted via FEDEX/DHL COURIER SERVICES&lt;br /&gt;
while all the delivery data will be&lt;br /&gt;
&lt;br /&gt;
divulged to you for online monitoring till the units arrived your&lt;br /&gt;
destination in the following manner..&lt;br /&gt;
&lt;br /&gt;
**Tracking Codes for tracking of the units&lt;br /&gt;
**Air-Way Bill for order review&lt;br /&gt;
**Commercial Invoice and receipt for order registration and stamping&lt;br /&gt;
**(BOL)Bill of lading for delivery concreteness as your doorstep.&lt;br /&gt;
&lt;br /&gt;
SEND US YOUR FULL DELIVERY DATA IN THE FOLLOWING MANNER..&lt;br /&gt;
&lt;br /&gt;
**Full Receiver;s Name/company's Name/Store Name&lt;br /&gt;
**The Amount of units willing to order and the Models + SPECIFICATIONS&lt;br /&gt;
**Full Delivery Address and Data&lt;br /&gt;
**Your Phone Number/Fax Number/Code&lt;br /&gt;
**Skype ID/MSN/Yahoo/Google Talk ID&lt;br /&gt;
**Your opinion for speedy delivery.&lt;br /&gt;
&lt;br /&gt;
We therefore await your speedy reply along with your "GO AHEAD" for&lt;br /&gt;
instant delivery,so that we can proceed to&lt;br /&gt;
&lt;br /&gt;
tagging and labeling of the units without delay.&lt;br /&gt;
&lt;br /&gt;
NOTE...that our firm is acquainted with all the delivery Documents&lt;br /&gt;
like Vat Lapty,Custom's PROR,Tax EVA Sheet&lt;br /&gt;
&lt;br /&gt;
verified by COC(Chamber Of Commerce),ICOQ and other which will aid&lt;br /&gt;
speedy delivery of your units without any&lt;br /&gt;
&lt;br /&gt;
hindrance or extra charges as also demanded by other company/firm or&lt;br /&gt;
group of individuals.&lt;br /&gt;
&lt;br /&gt;
Send your inquiry straight to.......&lt;br /&gt;
&lt;br /&gt;
We await your reply NOW...&lt;br /&gt;
&lt;br /&gt;
Regards and God Bless...&lt;br /&gt;
&lt;br /&gt;
Quinito El-Haxavi(Hon.Edu.Bsc)Marketing Head and Sales Logistic.&lt;br /&gt;</description>
      <guid isPermaLink="true">http://www.programmersheaven.com/mb/forsale/393254/393254/buy-3gs-32gb-apple-iphone--nokia-n9732gb-+-1-free-+-10-discount/</guid>
      <pubDate>Fri, 03 Jul 2009 10:26:42 -0700</pubDate>
      <category>For sale</category>
    </item>
    <item>
      <title>K where do I start?</title>
      <link>http://www.programmersheaven.com/mb/VBasic/393253/393253/k-where-do-i-start/</link>
      <description>ALright I was thinking of trying to learn some VB but I dont really know where to start. What would I need to begin getting into it? is there a specific turorial which will give a person the right platform to write the VB on so it is working VB? I just dont know where to start with trying to learn it through practical means TY.&lt;br /&gt;</description>
      <guid isPermaLink="true">http://www.programmersheaven.com/mb/VBasic/393253/393253/k-where-do-i-start/</guid>
      <pubDate>Fri, 03 Jul 2009 09:45:54 -0700</pubDate>
      <category>Visual Basic</category>
    </item>
    <item>
      <title>Close excel file</title>
      <link>http://www.programmersheaven.com/mb/VB_Beginner/393248/393248/close-excel-file/</link>
      <description>Hi All,&lt;br /&gt;
&lt;br /&gt;
I copy data from one excel file to another.Once the copy is done,I would like to close the file from which I copied the data.&lt;br /&gt;
Any commands for this one?&lt;br /&gt;
&lt;br /&gt;
Thanks.&lt;br /&gt;
&lt;br /&gt;
Regards,&lt;br /&gt;
Krishna</description>
      <guid isPermaLink="true">http://www.programmersheaven.com/mb/VB_Beginner/393248/393248/close-excel-file/</guid>
      <pubDate>Fri, 03 Jul 2009 08:08:12 -0700</pubDate>
      <category>Beginner VB</category>
    </item>
    <item>
      <title>How to customize prompt confirm message box for web input report?</title>
      <link>http://www.programmersheaven.com/mb/database/393246/393246/how-to-customize-prompt-confirm-message-box-for-web-input-report/</link>
      <description>&lt;strong&gt;&lt;span style="font-size: large;"&gt;Background&lt;/span&gt;&lt;/strong&gt;&lt;br /&gt;
For web input report, users often need input data at the client-side. Then, &lt;strong&gt;if a prompt message box will appear when users submit input data to confirm submit success, it will be very convenient.&lt;/strong&gt;&lt;br /&gt;
&lt;br /&gt;
&lt;strong&gt;Sometimes, users have to customize prompt message box according to real requirement. Then, how to achieve it?&lt;/strong&gt;&lt;br /&gt;
&lt;br /&gt;
&lt;strong&gt;&lt;span style="font-size: large;"&gt;Solution&lt;/span&gt;&lt;/strong&gt;&lt;br /&gt;
RAQ Report is a professional Web-based reporting tool pays a lot of attention to users’ requirement. Therefore, users can solve all the common problems in web report easily with RAQ Report. Such as radio button for single choice or multiple choices, drop-down list, automation computation, automation sequential number, data validity check, and batch operations, etc.&lt;br /&gt;
&lt;br /&gt;
For this problem, RAQ Report provides a wonderful solution. Therefore, you can easily customize prompt box with RAQ Report. As it is a pure Java reporting tool,you only need to write JavaScript Code in a JSP file.&lt;br /&gt;
&lt;br /&gt;
For example, if users want to add “cancel” in the prompt message box, they just need to set “cancel” as the value of promptAfterSave.&lt;br /&gt;
&lt;br /&gt;
The JavaScript Code is as follows:&lt;br /&gt;
&lt;br /&gt;
   &amp;lt;input type="submit" name="Submit2" value="submit" onclick="firm()" /&amp;gt;&lt;br /&gt;
      function firm()&lt;br /&gt;
      {&lt;br /&gt;
      // Use the return value of prompt box（true or false）&lt;br /&gt;
      if(confirm("NeedSave"))&lt;br /&gt;
      {&lt;br /&gt;
      //If true is selected, call _submitTable( report1 )&lt;br /&gt;
      _submitTable( report1 );&lt;br /&gt;
      return true;&lt;br /&gt;
      }&lt;br /&gt;
      else&lt;br /&gt;
      {&lt;br /&gt;
      //Or else cancel it;&lt;br /&gt;
      //alert("If false is selected, false will be returned");&lt;br /&gt;
      return false;&lt;br /&gt;
      }&lt;br /&gt;
      }&lt;br /&gt;
      &amp;lt;/script&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;strong&gt;&lt;span style="font-size: large;"&gt;Graphic Illustration&lt;/span&gt;&lt;/strong&gt;&lt;br /&gt;
&lt;img src="http://www.raqsoft.com/know-how/wp-content/uploads/2009/04/124.jpg" /&gt;&lt;br /&gt;</description>
      <guid isPermaLink="true">http://www.programmersheaven.com/mb/database/393246/393246/how-to-customize-prompt-confirm-message-box-for-web-input-report/</guid>
      <pubDate>Fri, 03 Jul 2009 07:38:30 -0700</pubDate>
      <category>Database &amp; SQL</category>
    </item>
    <item>
      <title>Only two companies to achieve growth in the IPC industry</title>
      <link>http://www.programmersheaven.com/mb/hardware/393244/393244/only-two-companies-to-achieve-growth-in-the-ipc-industry/</link>
      <description>According to the financial reports released by global industrial PC suppliers as of May 31, EVOC remains in the rank of the world's top three. In Q1 2009, most IPC companies showed a 20-30% negative growth. As one of the only two companies to achieve growth in the industry, EVOC grew by 11.48%, ranking No. 1 in growth rate. &lt;br /&gt;
&lt;br /&gt;
Statistics in April and May indicated that compared with the same period of last year, most IPC companies experienced negative growth, and the whole industry is suffering from the combined effects of a general economic downturn. On the one hand, the direct impact of financial crisis on IPC industry is about increased difficulty in funding and getting loans, which has made some companies run out of cash. On the other hand, almost all the down-stream industries of IPC (including transportation, industrial automation, medical care, electric power, environmental protection, petrol chemical, banking, network security and video surveillance) are suffering from ripple effects of the crisis, and have reduced production and demands for industrial computing products. &lt;br /&gt;
&lt;br /&gt;
Despite the impact of the global financial crisis upon the IPC industry, both Kontron and EVOC showed optimistic views on their current situation and future development. CEO of Kontron Ulrich Gehrmann said, “Particularly in times of crisis, cost-effective and high-performance innovative systems such as those developed by Kontron can be worthwhile investments for industry. This is because outsourcing offers benefits, can result in rapid savings in companies' unit costs, and cut working capital, thereby resulting in higher liquidity and equity ratios, which are very important factors in these times.”&lt;br /&gt;
&lt;br /&gt;
The sales revenue of EVOC in the first quarter of 2009 was US$29,870,000, 11.48% up from last year’s US$26,790,000. The two-digit growth rate achieved during the crisis greatly inspires people in the industry. Ms. Amy Pan, Global Sales Director of EVOC Group said, “This achievement can be attributed to the interaction and integration of EVOC’s R&amp;amp;D effort and global marketing. EVOC always focuses on product innovation, and fine-tunes its R&amp;amp;D plans and strategy according to the market feedbacks. These two points secure EVOC’s position as the market leader in terms of product R&amp;amp;D and technological innovation. In addition, EVOC’s exploration in overseas market is progressing smoothly, and EVOC has established its name in Europe, North America, Middle East and South-east Asia. Increasing demands for EVOC products from some incremental markets and improvement in market conditions are the positive factors that can explain EVOC’s sales performance.” &lt;br /&gt;
&lt;br /&gt;</description>
      <guid isPermaLink="true">http://www.programmersheaven.com/mb/hardware/393244/393244/only-two-companies-to-achieve-growth-in-the-ipc-industry/</guid>
      <pubDate>Fri, 03 Jul 2009 07:29:52 -0700</pubDate>
      <category>Computer Hardware</category>
    </item>
    <item>
      <title>Apnavoip.net Offers Latest Softswitch Solution in cheapest</title>
      <link>http://www.programmersheaven.com/mb/java/393240/393240/apnavoipnet-offers-latest-softswitch-solution-in-cheapest/</link>
      <description>Dear Friends:&lt;br /&gt;
&lt;br /&gt;
Want to setup VoIP company, a business under your own brand name? We have complete solution to launche VoIP (Voice Over Internet Protocol) company. All support comes included.&lt;br /&gt;
Features: PC2Phone, Device2Phone, Calling Card, Callback,sms callback solution, Ani Callback solution, DID callback solution, Cli Callback, Pin Callback, Wholesale Termination, Online Billing, Unlimited Resellers Creating, online shop, invoice generator, paypal integrated online shop, pin recharge modules, H323 and SIP.&lt;br /&gt;
No ties to us, deal with the wholesalers you want and buy VoIP minutes from any one in the market without any expensive equipment.&lt;br /&gt;
&lt;br /&gt;
&lt;strong&gt;System&lt;/strong&gt; &lt;br /&gt;
&lt;br /&gt;
Single platform solution&lt;br /&gt;
Rapid Service Rollout&lt;br /&gt;
Pre-configured templates &lt;br /&gt;
Scalability - phased investment&lt;br /&gt;
Quick, flexible reporting&lt;br /&gt;
Open database architecture allowing for extended reporting functions and use of external scripts&lt;br /&gt;
&lt;br /&gt;
&lt;strong&gt;Switching&lt;/strong&gt;&lt;br /&gt;
&lt;br /&gt;
Carrier-grade softswitch&lt;br /&gt;
Gatekeeper, registrar and proxy functionality&lt;br /&gt;
SIP and H323 protocol support &lt;br /&gt;
Protocols transparent conversion&lt;br /&gt;
Network protection capabilities&lt;br /&gt;
Advanced routing&lt;br /&gt;
Single entry point into VoIP infrastructure&lt;br /&gt;
Flexible proxy methods&lt;br /&gt;
&lt;br /&gt;
&lt;strong&gt;Billing&lt;/strong&gt; &lt;br /&gt;
&lt;br /&gt;
Various authentication methods&lt;br /&gt;
Prepaid/postpaid accounts&lt;br /&gt;
Robust engine&lt;br /&gt;
Fully integration with the softswitch&lt;br /&gt;
Cooperation with MySQL or MSSQL&lt;br /&gt;
&lt;br /&gt;
&lt;strong&gt;Management interface&lt;/strong&gt; &lt;br /&gt;
&lt;br /&gt;
Real-time traffic and system's performance monitor &lt;br /&gt;
Windows graphical interface &lt;br /&gt;
Web-based interface &lt;br /&gt;
&lt;br /&gt;
&lt;strong&gt;Web interface for endusers&lt;/strong&gt; &lt;br /&gt;
&lt;br /&gt;
Customizable customer self care web interface&lt;br /&gt;
Admin section with embedded html editors&lt;br /&gt;
Ready to use design templates&lt;br /&gt;
CDRs, payments, invoices, address book, user's profile and others/&lt;br /&gt;
Sending SMS, web callback&lt;br /&gt;
&lt;br /&gt;
&lt;strong&gt;IP IVR&lt;/strong&gt; &lt;br /&gt;
&lt;br /&gt;
Customizable IVR scenarios (XML)&lt;br /&gt;
Ready to use templates&lt;br /&gt;
Caller ID recognition&lt;br /&gt;
One or two stage calling procedures&lt;br /&gt;
Support for DIDs as access numbers&lt;br /&gt;
&lt;br /&gt;
&lt;strong&gt;Softphone&lt;/strong&gt; &lt;br /&gt;
&lt;br /&gt;
Based on SIP protocol&lt;br /&gt;
Proprietary VOIP tunnel technology - making/receieving calls even behind voip blockades&lt;br /&gt;
Fully integration with the web interface&lt;br /&gt;
Quick access to voicemail&lt;br /&gt;
Sending SMS&lt;br /&gt;
&lt;br /&gt;
&lt;strong&gt;Callback&lt;/strong&gt; &lt;br /&gt;
&lt;br /&gt;
Authentication by callerID or PIN&lt;br /&gt;
Various methods of realizing callback&lt;br /&gt;
Support for DIDs as callback service numbers&lt;br /&gt;
SMS and Web triggered callback&lt;br /&gt;
Embedded IVR system&lt;br /&gt;
&lt;br /&gt;
&lt;strong&gt;Resellers system (VSR)&lt;/strong&gt; &lt;br /&gt;
&lt;br /&gt;
Multilevel structure&lt;br /&gt;
Web-based comprehensive interface&lt;br /&gt;
Support for multi-currency&lt;br /&gt;
Customizable web interface for end-users&lt;br /&gt;
Integration with the E-Shop&lt;br /&gt;
&lt;br /&gt;
&lt;strong&gt;Callshop&lt;/strong&gt; &lt;br /&gt;
&lt;br /&gt;
Real-time monitoring and billing&lt;br /&gt;
Booths visualisation&lt;br /&gt;
Standalone and web based versions invoicing&lt;br /&gt;
&lt;br /&gt;
&lt;strong&gt;E-Shop&lt;/strong&gt; &lt;br /&gt;
&lt;br /&gt;
Various payments processors&lt;br /&gt;
Credit cards, paypal, moneybookers&lt;br /&gt;
Automatic sign-up procedure&lt;br /&gt;
Recharge, also by vouchers/PINs&lt;br /&gt;
Basket for selling products online&lt;br /&gt;
&lt;br /&gt;
&lt;strong&gt;SMS module&lt;/strong&gt; &lt;br /&gt;
&lt;br /&gt;
Support for http methods&lt;br /&gt;
Extended routing plan with support for multiple SMS providers&lt;br /&gt;
Integrated with the softphone and the end-users web interface&lt;br /&gt;
Support for wholesale SMS traffic&lt;br /&gt;
&lt;br /&gt;
&lt;strong&gt;Capacity&lt;/strong&gt; &lt;br /&gt;
&lt;br /&gt;
Average result 1000 conncurent calls (full proxy) on one server (Dual Xeon CPU 2GB RAM*). For higher traffic recommended is cluster configuration with two or three servers with voipswitch software running on seperate servers and connected to one, shared SQL database installed on a dedicated server. Web services running on a backup SQL server set in replication mode so that the load from web requests (for example browsing CDRs, statistics) does not affect the performance of the main SQL server. &lt;br /&gt;
&lt;br /&gt;
* tested and certified for SIP interoperatibility with Level3 (US based tier one carrier)&lt;br /&gt;
&lt;br /&gt;
&lt;strong&gt;Scalability&lt;/strong&gt;&lt;br /&gt;
Phased implementation of new services by enabling additional modules. &lt;br /&gt;
&lt;br /&gt;
&lt;strong&gt;Operating system&lt;/strong&gt;&lt;br /&gt;
Windows 2000, XP pro, Windows 2003 (both standard and web editions)&lt;br /&gt;
&lt;br /&gt;
&lt;strong&gt;Hardware requirements&lt;/strong&gt;&lt;br /&gt;
Recommended are servers based on Intel Xeon processors &lt;br /&gt;
&lt;br /&gt;
dual core or quad core, in configuration of single or dual CPU,&lt;br /&gt;
RAM minimum 1GB,&lt;br /&gt;
HDD 100 GB or more&lt;br /&gt;
&lt;br /&gt;
---------------------------------------------------------&lt;br /&gt;
&lt;strong&gt;Contact us if you are interested.&lt;br /&gt;
&lt;br /&gt;
Thank you,&lt;br /&gt;
Apnavoip (.) net&lt;br /&gt;
&lt;br /&gt;
Emails: sales@apnavoip.net&lt;br /&gt;
        apnavoip@hotmail.com&lt;br /&gt;
&lt;br /&gt;
(MSN MESSENGER) SALES: crm@apnavoip.net&lt;br /&gt;
              SUPPORT: support@apnavoip.net&lt;br /&gt;
(YAHOO MESSENGER): apnavoip@yahoo.com&lt;br /&gt;
&lt;br /&gt;
Regards,&lt;br /&gt;
        sales team  www.apnavoip.net&lt;br /&gt;
&lt;br /&gt;
THANKS&lt;/strong&gt;&lt;br /&gt;</description>
      <guid isPermaLink="true">http://www.programmersheaven.com/mb/java/393240/393240/apnavoipnet-offers-latest-softswitch-solution-in-cheapest/</guid>
      <pubDate>Fri, 03 Jul 2009 05:13:33 -0700</pubDate>
      <category>Java</category>
    </item>
    <item>
      <title>Nomad Programming role. Please contact me</title>
      <link>http://www.programmersheaven.com/mb/Console/393238/393238/nomad-programming-role-please-contact-me/</link>
      <description>•	Must have substantial experience as a programmer, analyst/designer in a financial environment.&lt;br /&gt;
•	Mainframe experience – NOMAD, VM, COBOL, IMS technical skills&lt;br /&gt;
•	A solid understanding of structured analysis techniques&lt;br /&gt;
•	Good knowledge of MS Office products (Word, Excel)&lt;br /&gt;
•	Must be able to work under pressure, juggle multiple projects, use own initiative to meet deadlines and set priorities without close supervision&lt;br /&gt;
•	Attention to detail and accuracy are essential.  &lt;br /&gt;
&lt;br /&gt;
Regards&lt;br /&gt;
&lt;br /&gt;
John Spendiff&lt;br /&gt;
Aston Carter Limited | Consultant&lt;br /&gt;
Direct Line (0) 20 7997 1094&lt;br /&gt;
É+44 (0)20 7997 1000 | &lt;br /&gt;
Ê+44 (0)20 7997 1001 &lt;br /&gt;
Ê+44 (0)20 7997 1002| Payroll Fax&lt;br /&gt;
* jspendiff@astoncarter.co.uk &lt;br /&gt;
ü: www.astoncarter.co.uk&lt;br /&gt;
&lt;br /&gt;</description>
      <guid isPermaLink="true">http://www.programmersheaven.com/mb/Console/393238/393238/nomad-programming-role-please-contact-me/</guid>
      <pubDate>Fri, 03 Jul 2009 04:53:00 -0700</pubDate>
      <category>Console programming</category>
    </item>
    <item>
      <title>Making a keyboard in Linux</title>
      <link>http://www.programmersheaven.com/mb/Linux/393236/393236/making-a-keyboard-in-linux/</link>
      <description>&lt;span style="color: Red;"&gt;Hi,&lt;br /&gt;
&lt;br /&gt;
I am trying to make a keyboard application in C on Linux.&lt;br /&gt;
Please help with the source code. it wud be a keyboard used in Electronic Cash Registers.&lt;br /&gt;
&lt;br /&gt;
Reply soon&lt;/span&gt;&lt;br /&gt;</description>
      <guid isPermaLink="true">http://www.programmersheaven.com/mb/Linux/393236/393236/making-a-keyboard-in-linux/</guid>
      <pubDate>Fri, 03 Jul 2009 04:43:33 -0700</pubDate>
      <category>LINUX programming</category>
    </item>
    <item>
      <title>WinRM + WSAutomation library missing</title>
      <link>http://www.programmersheaven.com/mb/windows/393235/393235/winrm-+-wsautomation-library-missing/</link>
      <description>Dera All,&lt;br /&gt;
&lt;br /&gt;
I need to develop an WinRM related C++ application&lt;br /&gt;
&lt;br /&gt;
I downloaded Windows 7 RC SDK where I found the required WsmanAuto.dll, wsmandisp.h, wsmandisp.idl&lt;br /&gt;
but I could not find required WSMamAutomation kibrary.&lt;br /&gt;
&lt;br /&gt;
Now If I trying to use IID_IWSMAN flag then it is showing lik=nking error like Unresolved external symbol IID_IWSMAN.&lt;br /&gt;
&lt;br /&gt;
This is definetly the case of missing WsManAutomation librray.&lt;br /&gt;
&lt;br /&gt;
Where Can I found this library.&lt;br /&gt;
&lt;br /&gt;
If some one have it please mail me at vishal_askqns@yahoo.in &lt;br /&gt;
&lt;br /&gt;
Regards&lt;br /&gt;
Vishal&lt;br /&gt;</description>
      <guid isPermaLink="true">http://www.programmersheaven.com/mb/windows/393235/393235/winrm-+-wsautomation-library-missing/</guid>
      <pubDate>Fri, 03 Jul 2009 04:32:15 -0700</pubDate>
      <category>Windows programming</category>
    </item>
    <item>
      <title>close or overwrite the file</title>
      <link>http://www.programmersheaven.com/mb/csharp/393234/393234/close-or-overwrite-the-file/</link>
      <description>Hi all,&lt;br /&gt;
&lt;br /&gt;
I have one windows service made in C#. I want My service to create CSV file every two minutes... but it should overwrite the existing file every two minutes. but whenever I try - it says file is already open - while I am sure that file is processed during those elapsed two minutes.. How do i programmatically close the file or overwrite the same. My file creation is through windows utility CSVDE (so have no control over creation except for the time and name!)&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
please suggest, thanks,&lt;br /&gt;
Jeet&lt;br /&gt;</description>
      <guid isPermaLink="true">http://www.programmersheaven.com/mb/csharp/393234/393234/close-or-overwrite-the-file/</guid>
      <pubDate>Fri, 03 Jul 2009 04:00:49 -0700</pubDate>
      <category>C#</category>
    </item>
    <item>
      <title>VBA Outlook app - keeping a sql connection open indefinetely</title>
      <link>http://www.programmersheaven.com/mb/vba/393233/393233/vba-outlook-app---keeping-a-sql-connection-open-indefinetely/</link>
      <description>I'm doing a bit of work with an Outlook VBA application that a colleauge created. It's fairly basic, just connects to a sql server and runs some commands, depending on what the user is changing etc. The problem we're having is in trying to speed it up. It's not slow, but at the moment every time the user clicks to add some time (it's mostly a time-keeping thing), it opens a connection to the server, processes the stuff the user sends, and then closes the connection when it's done. When the user is simply updating a tiny bit of data, say a single field update in the database, it seems (to my boss) to be terribly wasteful to open a new connection, do some stuff, and then just close it. Therefore, I - with my very little experience of programming - have been tasked with trying to answer the question; would it be possible/quicker/safe to simply have the form open a connection when it's first opened for the day, and then keep it open until outlook is closed at the end of the day? &lt;br /&gt;
&lt;br /&gt;
So, can you do this? There's only a handful of staff in the office, 50 at most, so the server won't fall over trying to keep 50 connections open (I assume!). Will it be alot quicker than opening a connection and closing it again? Is it secure to keep a connection open for such a long time? Am I asking too many questions?&lt;br /&gt;
&lt;br /&gt;
Thanks for any replies,&lt;br /&gt;
Barns&lt;br /&gt;</description>
      <guid isPermaLink="true">http://www.programmersheaven.com/mb/vba/393233/393233/vba-outlook-app---keeping-a-sql-connection-open-indefinetely/</guid>
      <pubDate>Fri, 03 Jul 2009 03:59:53 -0700</pubDate>
      <category>VBA</category>
    </item>
    <item>
      <title>Cooperation offering</title>
      <link>http://www.programmersheaven.com/mb/jobs-available/393229/393229/cooperation-offering/</link>
      <description>Good day dear programmers! Especially those, who deals with game’s creation!&lt;br /&gt;
We’re sure, that your fantasy combining with high level of qualification brings excellent results – most unusual, funny and curious games. Unfortunately, these are not the only requirements for successful promotion; furthermore it is not infrequent that the best creations of programmers’ minds remain unused and unneeded. &lt;br /&gt;
Therefore, the team of specialists in the name of  “Sunphonia” company is glad to offer you working relationship and cooperation of our efforts.&lt;br /&gt;
Being a certified seller in Apple Store, possessing ample opportunities, dedication and experience in iPhone-games realization and promotion through the internet, we can afford ground for the entrance of your product on the world-wide web market and achieve high performance.&lt;br /&gt;
All provided projects are fulfilling by the large crew of professionals with wide experience in exactly this field.&lt;br /&gt;
Terms of payment defined individually according to the volume of needed works.&lt;br /&gt;
For more information contact us at:dev@sunphonia.com&lt;br /&gt;
&lt;br /&gt;</description>
      <guid isPermaLink="true">http://www.programmersheaven.com/mb/jobs-available/393229/393229/cooperation-offering/</guid>
      <pubDate>Fri, 03 Jul 2009 01:58:38 -0700</pubDate>
      <category>Jobs Available</category>
    </item>
    <item>
      <title>Finding the corresponding y coordinates in a binary image matlab</title>
      <link>http://www.programmersheaven.com/mb/ctocplusplustomatlab/393224/393224/finding-the-corresponding-y-coordinates-in-a-binary-image-matlab/</link>
      <description>Hi everyone, &lt;br /&gt;
&lt;br /&gt;
Just wanted to know if there is a way to do this...&lt;br /&gt;
&lt;br /&gt;
I have a binary image, an I would like to find the min corresponding y coordinates for a given range , say x=120:200;&lt;br /&gt;
&lt;br /&gt;
[y1]=find(image(:,x1));&lt;br /&gt;
y1=min(y1);&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
I can do it manually for up to 10 coordinates but is there any way i can do it for a range of x values.&lt;br /&gt;
&lt;br /&gt;
I tried the following:&lt;br /&gt;
&lt;br /&gt;
x = 120:380';&lt;br /&gt;
[y1]=find(image(:,x));&lt;br /&gt;
y=max(y);&lt;br /&gt;
&lt;br /&gt;
But I am getting an error every time...&lt;br /&gt;
&lt;br /&gt;
Any suggestions would be greatly appreciacted.&lt;br /&gt;
&lt;br /&gt;
Many thanks, &lt;br /&gt;</description>
      <guid isPermaLink="true">http://www.programmersheaven.com/mb/ctocplusplustomatlab/393224/393224/finding-the-corresponding-y-coordinates-in-a-binary-image-matlab/</guid>
      <pubDate>Thu, 02 Jul 2009 21:19:57 -0700</pubDate>
      <category>Matlab</category>
    </item>
    <item>
      <title>C/C++ graphics help</title>
      <link>http://www.programmersheaven.com/mb/beginnercpp/393223/393223/cc++-graphics-help/</link>
      <description>I want to use 32 bit colors for designing  a gui for my program using turbo c 3.0. How can i??? please help me friends............&lt;br /&gt;
I shall be really thankful to you people&lt;br /&gt;</description>
      <guid isPermaLink="true">http://www.programmersheaven.com/mb/beginnercpp/393223/393223/cc++-graphics-help/</guid>
      <pubDate>Thu, 02 Jul 2009 21:03:11 -0700</pubDate>
      <category>Beginner C/C++</category>
    </item>
    <item>
      <title>C/C++ graphics help</title>
      <link>http://www.programmersheaven.com/mb/beginnercpp/393222/393222/cc++-graphics-help/</link>
      <description>I want to use 32 bit colors for designing  a gui for my program using turbo c 3.0. How can i??? please help me friends............&lt;br /&gt;
I shall be really thankful to you people&lt;br /&gt;</description>
      <guid isPermaLink="true">http://www.programmersheaven.com/mb/beginnercpp/393222/393222/cc++-graphics-help/</guid>
      <pubDate>Thu, 02 Jul 2009 21:02:09 -0700</pubDate>
      <category>Beginner C/C++</category>
    </item>
    <item>
      <title>Looking for Partners: talented AJAX/Web 2.0/Java web-designers.</title>
      <link>http://www.programmersheaven.com/mb/java/393219/393219/looking-for-partners-talented-ajaxweb-20java-web-designers/</link>
      <description>Looking for talented AJAX/Web 2.0/Java web-designers to partner with our team (stock options) for development of a new social site.&lt;br /&gt;</description>
      <guid isPermaLink="true">http://www.programmersheaven.com/mb/java/393219/393219/looking-for-partners-talented-ajaxweb-20java-web-designers/</guid>
      <pubDate>Thu, 02 Jul 2009 18:30:20 -0700</pubDate>
      <category>Java</category>
    </item>
    <item>
      <title>Simple Sound from a C++ program?</title>
      <link>http://www.programmersheaven.com/mb/CandCPP/393216/393216/simple-sound-from-a-c++-program/</link>
      <description>For a course on musical acoustics, I've written a program that allows the user to draw a wave shape.  I'd like the user to be able to hear that wave shape.  The program is in C++, and the "shape" consists of 300 integer entries, so I'd like that file somehow to "loop" as it's converted to sound.&lt;br /&gt;
&lt;br /&gt;
The program uses OpenGL.  It's presently on a Dell (using Linux), though I'd like to be able to use it on a Mac (OSX) as well.&lt;br /&gt;
&lt;br /&gt;
Thanks for any help you can give.&lt;br /&gt;</description>
      <guid isPermaLink="true">http://www.programmersheaven.com/mb/CandCPP/393216/393216/simple-sound-from-a-c++-program/</guid>
      <pubDate>Thu, 02 Jul 2009 14:51:09 -0700</pubDate>
      <category>C and C++</category>
    </item>
    <item>
      <title>Buffer overflow c/c++</title>
      <link>http://www.programmersheaven.com/mb/CandCPP/393213/393213/buffer-overflow-cc++/</link>
      <description>Hello,&lt;br /&gt;
how can I find a buffer overflow in C/C++.&lt;br /&gt;
&lt;br /&gt;
For example:&lt;br /&gt;
&lt;br /&gt;
int x[10];&lt;br /&gt;
int y[5][5];&lt;br /&gt;
int z[5][5][2];&lt;br /&gt;
&lt;br /&gt;
x[12] = 0;&lt;br /&gt;
y[3][7] = 8;&lt;br /&gt;
z[2][6][1] = 8;&lt;br /&gt;
&lt;br /&gt;
   Thanks&lt;br /&gt;</description>
      <guid isPermaLink="true">http://www.programmersheaven.com/mb/CandCPP/393213/393213/buffer-overflow-cc++/</guid>
      <pubDate>Thu, 02 Jul 2009 14:23:42 -0700</pubDate>
      <category>C and C++</category>
    </item>
    <item>
      <title>for sale brand new Apple iPhone 3Gs 32Gb Unlocked@320usd</title>
      <link>http://www.programmersheaven.com/mb/forsale/393207/393207/for-sale-brand-new-apple-iphone-3gs-32gb-unlocked320usd/</link>
      <description>&lt;strong&gt;MADCOM LIMITED&lt;/strong&gt; is a recognized distributor of various consumer electronics&lt;br /&gt;
we sell latest brand and new original phones from there manufacturer with the&lt;br /&gt;
minimum of 1 full year international warranty.&lt;br /&gt;
we are one of the leading mobile phone distributors.&lt;br /&gt;
We are Legitimate registered under government registration and licensed,&lt;br /&gt;
&lt;strong&gt;Registered No:06338485&lt;/strong&gt;&lt;br /&gt;
 &lt;br /&gt;
Do have a look at the rated and other mobile  MADCOM LIMITED is a recognized distributor of various consumer electronics&lt;br /&gt;
we sell latest brand and new original phones from there manufacturer with the&lt;br /&gt;
minimum of 1 full year international warranty.&lt;br /&gt;
we are one of the leading mobile phone distributors.&lt;br /&gt;
&lt;br /&gt;
 &lt;br /&gt;
Do have a look at the rated and other mobile phones we stock below.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Apple iPhone 3Gs 32Gb Unlocked@320usd                                  Apple iPhone 3G 16Gb Unlocked @190usd&lt;br /&gt;
Apple iPhone 3G 8GB Unlocked @150usd&lt;br /&gt;
Apple iPhone 8GB Unlocked @120usd&lt;br /&gt;
Apple iPhone 16GB Unlocked @130usd&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Nokia 8800 Gold Arte @310usd&lt;br /&gt;
Nokia N97 @300usd&lt;br /&gt;
Nokia E75 @270usd&lt;br /&gt;
Nokia N85 @200usd&lt;br /&gt;
Nokia N96 16GB @190usd&lt;br /&gt;
Nokia N95 8GB @170usd&lt;br /&gt;
Nokia N95 @150usd&lt;br /&gt;
Nokia N93i@ 150usd&lt;br /&gt;
Nokia n93 @ 140usd&lt;br /&gt;
Nokia N92 @ 130usd&lt;br /&gt;
Nokia N91 8GB @ 145usd&lt;br /&gt;
Nokia N80 @160usd&lt;br /&gt;
Nokia N76 @160usd&lt;br /&gt;
Nokia N75 @120usd&lt;br /&gt;
Nokia N73 @110usd&lt;br /&gt;
Nokia N70 @95usd&lt;br /&gt;
Nokia E71 @145usd&lt;br /&gt;
Nokia E66 @150usd&lt;br /&gt;
Nokia E90 Communicator @185usd&lt;br /&gt;
Nokia E65 @ 100usd&lt;br /&gt;
Nokia E61i @110usd&lt;br /&gt;
Nokia 8801 @ 150usd&lt;br /&gt;
Nokia 8800 Sirocco @195usd&lt;br /&gt;
Nokia 770 Internet @ 160usd&lt;br /&gt;
Nokia 5800 XpressMusic @290&lt;br /&gt;
Nokia 5320 XpressMusic @250&lt;br /&gt;
Nokia 5220 XpressMusic @ 205&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
HTC Max 4G---------------$300&lt;br /&gt;
HTC Touch HD-------------$280&lt;br /&gt;
HTC Touch 3G--------------$250&lt;br /&gt;
HTC Touch Viva------------$280&lt;br /&gt;
HTC Touch Pro - - - - - - - $230&lt;br /&gt;
HTC Touch Diamond - - $200&lt;br /&gt;
HTC Shift Pocket PC---$220&lt;br /&gt;
HTC Advantage X7510 - - $290&lt;br /&gt;
HTC P3470 - - $200&lt;br /&gt;
HTC Touch Cruise - - $250&lt;br /&gt;
HTC Touch Dual - - $225&lt;br /&gt;
HTC P6500 - - $210&lt;br /&gt;
HTC S730 - - $200&lt;br /&gt;
HTC TyTN II - - $195&lt;br /&gt;
HTC S630 - - $150&lt;br /&gt;
HTC Touch - - $101&lt;br /&gt;
HTC P6300 - - $120&lt;br /&gt;
HTC Shift - - $230&lt;br /&gt;
HTC Advantage X7500 - - $215&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Blackberry Curve 8900 @350usd&lt;br /&gt;
Blackberry Storm 9530@230usd&lt;br /&gt;
Blackberry Storm 9500 @220usd&lt;br /&gt;
Blackberry Pearl Flip 8220 @210usd&lt;br /&gt;
Blackberry Bold 9000 @200usd&lt;br /&gt;
Blackberry Curve 8320 @190usd&lt;br /&gt;
Blackberry Curve 8310 @205usd&lt;br /&gt;
Blackberry Curve 8300 @ 200usd&lt;br /&gt;
Blackberry 8820 @195usd&lt;br /&gt;
Blackberry 8830 World Edition @200usd&lt;br /&gt;
Blackberry 8800 "indigo" unlocked @ 200usd&lt;br /&gt;
Blackberry 8700g @ 160usd&lt;br /&gt;
Blackberry 8100 Pearl Cingular unlocked @140usd&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
LG Phones&lt;br /&gt;
LG Incite @295&lt;br /&gt;
LG GD910 @300&lt;br /&gt;
LG KS500 @300&lt;br /&gt;
LG KF900 Prada @290&lt;br /&gt;
LG KC780 @250&lt;br /&gt;
LG KP500 Cookie @255&lt;br /&gt;
LG KC910 Renoir @260&lt;br /&gt;
LG KB770 @200&lt;br /&gt;
LG CB630 Invision @200&lt;br /&gt;
LG KS360 @190&lt;br /&gt;
 &lt;br /&gt;
ETEN glofiish X610 @210&lt;br /&gt;
ETEN glofiish V900 @220&lt;br /&gt;
ETEN glofiish X900 @205&lt;br /&gt;
ETEN glofiish DX900 @210&lt;br /&gt;
ETEN glofiish M750@200&lt;br /&gt;
ETEN glofiish M810 @170usd&lt;br /&gt;
ETEN 500 Glofiish @ 160usd&lt;br /&gt;
ETEN M700 Glofiish 2 @195usd&lt;br /&gt;
ETEN M600 @ 135usdc&lt;br /&gt;
ETEN G500 @ 110usd&lt;br /&gt;
ETEN 800 Glofiish @ 200usd&lt;br /&gt;
&lt;br /&gt;
samsung M8910 Pixon12 @$480&lt;br /&gt;
Samsung i8910 Omnia HD @$500&lt;br /&gt;
Samsung S9402    ......$280&lt;br /&gt;
Samsung T919 Behold.....$290&lt;br /&gt;
Samsung M3200. $260&lt;br /&gt;
Samsung i907 Epix @270&lt;br /&gt;
Samsung A767 Propel@260&lt;br /&gt;
Samsung A867 EternityN @255&lt;br /&gt;
Samsung M8800 Pixon @245&lt;br /&gt;
Samsung D980 @230&lt;br /&gt;
Samsung i8510 INNOV8 16GB @210&lt;br /&gt;
Samsung Instinct @200&lt;br /&gt;
Samsung i900 Omnia @ 200usd&lt;br /&gt;
Sony Ericsson W902 Volcanic @240&lt;br /&gt;
Samsung SGHB600 @ 230usd&lt;br /&gt;
Samsung i760 @ 210uad&lt;br /&gt;
Samsung F500 @ 180uad&lt;br /&gt;
Samsung D900 @ 110uad&lt;br /&gt;
Samsung BlackJack SGHi607 Unlocked @ 190usd                                                  Samsung BDP1000 BluRay Disc Player @ 200usd&lt;br /&gt;
&lt;br /&gt;
SIDEKICK PHONES&lt;br /&gt;
SIDEKICK LX ----- $120&lt;br /&gt;
SIDEKICK III----- $135&lt;br /&gt;
SIDEKICK II ----- $115&lt;br /&gt;
JUICY COUTURE SIDEKICK I----- $100&lt;br /&gt;
SIDEKICK II MISTER CARTOON--$130&lt;br /&gt;
JUICY COUTURE SIDEKICK II----- $130&lt;br /&gt;
Juicy couture Sidekick III-----$150&lt;br /&gt;
Sidekick D - Wade--------------$140&lt;br /&gt;
Sidekick ID -------------------$120&lt;br /&gt;
&lt;br /&gt;
sony Ericsson idou @250usd&lt;br /&gt;
Sony Ericsson C510 @290usd&lt;br /&gt;
Sony Ericsson W508 @270usd&lt;br /&gt;
Sony Ericsson W705 @300usd&lt;br /&gt;
Sony Ericsson W715 @295usd&lt;br /&gt;
Sony Ericsson G705 @280usd&lt;br /&gt;
Sony Ericsson W705 @260usd&lt;br /&gt;
Sony Ericsson C905 @250usd&lt;br /&gt;
Sony Ericsson XPERIA X1 @ 200usd&lt;br /&gt;
Sony Ericsson W950i @ 205uad&lt;br /&gt;
Sony Ericsson W880i Walkman Phone @ 200usd&lt;br /&gt;
Sony Ericsson W850i @ 200usd&lt;br /&gt;
Sony Ericsson W810i Walkman Phone @ 110usd&lt;br /&gt;
Sony Ericsson W660i @ 120usd&lt;br /&gt;
Sony Ericsson M600i @ 210usd&lt;br /&gt;
 &lt;br /&gt;
APPLE IPODS:&lt;br /&gt;
Apple IPod 32GB Newest! ---------$180&lt;br /&gt;
Apple iPod 30GB (Video) New! - - $100&lt;br /&gt;
Apple iPod 60GB (Video) New! - - $110&lt;br /&gt;
Apple iPod Nano 2GB New! - - $70&lt;br /&gt;
Apple iPod Nano 4GB New! - - $80&lt;br /&gt;
Apple iPod Shuffle 512 MB - - $65&lt;br /&gt;
Apple iPod Shuffle 1 GB - - $75&lt;br /&gt;
Apple iPod Mini 4 GB - - $70&lt;br /&gt;
Apple iPod Mini 6 GB - - $90&lt;br /&gt;
Apple iPod Photo 30 GB - - $100&lt;br /&gt;
Apple iPod U2 SE 20 GB - - $111&lt;br /&gt;
Apple iPod Photo 60 GB - - $121&lt;br /&gt;
Apple iPod 20 GB - - $95&lt;br /&gt;
Apple ipod 80 GB - - $115&lt;br /&gt;
 &lt;br /&gt;
XBOX GAMES:&lt;br /&gt;
Xbox 360 Core System . 200usd&lt;br /&gt;
Xbox 360 Prenium pack .-220usd&lt;br /&gt;
Xbox 360 Platinum Bundle Console 240usd&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
NINTENDO WII GAMES:&lt;br /&gt;
Nintendo DS Lite NDSL Game Console (Pink) .$130&lt;br /&gt;
Nintendo DS Lite Black (US) .$130&lt;br /&gt;
Nintendo DS Lite Enamel Navy (HK) . $130&lt;br /&gt;
Nintendo Wii Game Console (White (Japan Version ) . $160&lt;br /&gt;
Nintendo Wii (Jap) (Downgrade version) .$160&lt;br /&gt;
Nintendo Wii Game Console (White (US Version Wii sport included) ..$180&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
PLAYSTATION 3 GAMES:&lt;br /&gt;
Playstation 3 60GB . $200&lt;br /&gt;
Playstation 3 80GB . $230&lt;br /&gt;
Playstation 3 40GB . ... . $180&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
PANASONIC PLASMA TV&lt;br /&gt;
Panasonic TH-37PHD8UK Plasma $1000&lt;br /&gt;
Panasonic TH-42PWD8UK Plasma $950&lt;br /&gt;
Panasonic TH-42PHD8UK Plasma $945&lt;br /&gt;
Panasonic TH-42PD50U EDTV $900&lt;br /&gt;
Panasonic TH-42PX50U Plasma $850&lt;br /&gt;
Panasonic TH-50PX50U Plasma $800&lt;br /&gt;
panasonic TH-65PHD8UK Plasma $820&lt;br /&gt;
&lt;br /&gt;
SONY PLASMA TV&lt;br /&gt;
SONY FWD-42PV1Plasma Display $1100&lt;br /&gt;
Sony PFM-42X1 Plasma Display $1000&lt;br /&gt;
Sony FWD-50PX2 Plasma Display $950&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
PHILIPS PLASMA TV&lt;br /&gt;
Philips 42PF7320A/37 Plasma TV $590&lt;br /&gt;
Philips 42PF9630A/37 Plasma HDTV $650&lt;br /&gt;
Philips 50PF7320A/37 Plasma HDTV $600&lt;br /&gt;
Philips 50PF9630A/37 Plasma HDTV $495&lt;br /&gt;
Philips 50PF9830A/37 Plasma HDTV $750&lt;br /&gt;
&lt;br /&gt;
SAMSUNG PLASMA TV&lt;br /&gt;
SAMSUNG HPP3761 Plasma TV $1200&lt;br /&gt;
Samsung PPM42M5S Plasma Display $1100&lt;br /&gt;
Samsung SPP4251 Plasma TV $1000&lt;br /&gt;
Samsung PPM42M5H Plasma Display $950&lt;br /&gt;
Samsung HPR4252 Plasma $900&lt;br /&gt;
Samsung HPR4262 Plasma TV $800&lt;br /&gt;
Samsung HPR4272 Plasma $800&lt;br /&gt;
Samsung PPM50M5H Plasma Display $840&lt;br /&gt;
Samsung HPR5052 Plasma $700&lt;br /&gt;
Samsung HPR5072 Plasma $650&lt;br /&gt;
Samsung HPP5581 Plasma TV $550&lt;br /&gt;
Samsung PPM63H3Q Plasma Display$500&lt;br /&gt;
Samsung HPR6372 Plasma$500&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
HITACHI PLASMA TV&lt;br /&gt;
Hitachi CMP4211u Plasma $1850&lt;br /&gt;
Hitachi CMP4212u Plasma $1350&lt;br /&gt;
Hitachi 42HDF52 Plasma HDTV $1400&lt;br /&gt;
Hitachi 42HDT52 Plasma TV  $1440&lt;br /&gt;
Hitachi 55HDS52 Plasma HDTV $1480&lt;br /&gt;
Hitachi 55HDT52 Plasma TV $1650&lt;br /&gt;
Hitachi CMP-55HDM71 Plasma $1420&lt;br /&gt;
 &lt;br /&gt;
APPLE LAPTOPS&lt;br /&gt;
APPLE LAPTOP&lt;br /&gt;
Apple Macbook Air............................$1750&lt;br /&gt;
Apple MacBook (MA700LL/A) Mac Notebook...$1500usd&lt;br /&gt;
Apple MacBook Pro (MA611LL/A) Notebook...$1600usd&lt;br /&gt;
Apple MacBook (MA254LL/A) Mac Notebook...$1450usd&lt;br /&gt;
Apple iBook G3 (M7698LL/A) Mac Notebook..$1600usd&lt;br /&gt;
Apple MacBook Pro (MA609LL/A) Notebook....$1550usd&lt;br /&gt;
Apple MacBook Pro (MA600LLA) Notebook...$1500usd&lt;br /&gt;
Apple MacBook Pro (MA610LL/A) Notebook...$1600usd&lt;br /&gt;
Apple Macbook Pro (885909119400) Notebook..$1600usd&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
DELL LAPTOP:&lt;br /&gt;
Dell XPS M1710 PC Notebook...$1500usd&lt;br /&gt;
Dell XPS M2010 PC Notebook....$1550usd&lt;br /&gt;
Dell Laptop 1100-BX7ZT21....$1350&lt;br /&gt;
Dell Latitude C640 - 2.0GHz, 512MB, 40GB...$1400&lt;br /&gt;
Dell Inspiron Model 8500 Laptop..$1400&lt;br /&gt;
Dell Latitude D810...$500&lt;br /&gt;
Dell Inspiron 6000 Notebook Computer..$1400&lt;br /&gt;
Dell Laptop,Wireless,Intel M,60GB HD,CD/DVD, XP,Pro...$1360&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
ACER FERRARI P4 LAPTOP:&lt;br /&gt;
Acer Ferrari 3200 - Mobile Athlon 64 2800+ ...$1450&lt;br /&gt;
Acer Ferrari 3400LMi Notebook ...$1500&lt;br /&gt;
Acer Ferrari 3000LMi - Athlon XP-M...$1480&lt;br /&gt;
Acer Ferrari 3200LMi - Mobile Athlon..$1650&lt;br /&gt;
Apple Powerbook G4 1.67ghz Drive Bluetooth&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
SONY LAPTOP&lt;br /&gt;
Sony VAIO VGN-T1..$1180&lt;br /&gt;
Sony VAIO VGN-FS315...$1720&lt;br /&gt;
Sony VAIO VGN-S3...$1850&lt;br /&gt;
Sony VAIO VGN-TX1...$1240&lt;br /&gt;
Sony VAIO VGN-FS215...$1710&lt;br /&gt;
Sony VAIO VGN-S4...$1870&lt;br /&gt;
Sony VAIO PCG-K35...$1750&lt;br /&gt;
Sony VAIO A170 Laptop ....$1300&lt;br /&gt;
Sony VAIO GRT250 Laptop ....$1350&lt;br /&gt;
Sony VAIO V505DC1 Laptop ....$1400&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Toshiba Satellite® A75S211 PC Notebook....$580usd&lt;br /&gt;
Toshiba Satellite® A75S229 PC&lt;br /&gt;
 Notebook....$600usd&lt;br /&gt;
Toshiba Satellite A75S213 PC&lt;br /&gt;
 &lt;br /&gt;
Notebook........$650usd&lt;br /&gt;
 &lt;br /&gt;
&lt;br /&gt;
MADCOM LIMITED strive to offer high-quality products at competitive&lt;br /&gt;
prices.&lt;br /&gt;
All of our products are brand new,never used, never rebuilt. We maintain&lt;br /&gt;
multiple-supplier sources for our products as a means of being able to&lt;br /&gt;
continually offer the best products at the best prices.&lt;br /&gt;
 Contact us for further information about warranty process.&lt;br /&gt;
We are committed to doing all it takes to keep you a satisfied customer! Many&lt;br /&gt;
thanks and God bless you as you place your order with us today..&lt;br /&gt;
Your inquiry will be greatly appreciated.&lt;br /&gt;
Contact Name:  &lt;strong&gt;Mr. Harmond&lt;/strong&gt;&lt;br /&gt;
E-Mail: &lt;strong&gt;harmonddavies@yahoo.com.&lt;br /&gt;
&lt;/strong&gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;</description>
      <guid isPermaLink="true">http://www.programmersheaven.com/mb/forsale/393207/393207/for-sale-brand-new-apple-iphone-3gs-32gb-unlocked320usd/</guid>
      <pubDate>Thu, 02 Jul 2009 10:29:14 -0700</pubDate>
      <category>For sale</category>
    </item>
  </channel>
</rss>