<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>Sandeep &#38; Vicky's Archive</title>
	<atom:link href="http://m4msakec.com/blog/index.php?feed=rss2" rel="self" type="application/rss+xml" />
	<link>http://m4msakec.com/blog</link>
	<description>powered by ConvergenceServices.in</description>
	<lastBuildDate>Mon, 26 Jul 2010 21:34:29 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Notes on Management control systems</title>
		<link>http://m4msakec.com/blog/?p=88</link>
		<comments>http://m4msakec.com/blog/?p=88#comments</comments>
		<pubDate>Mon, 26 Jul 2010 15:19:21 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[MBA : Presentations and projects]]></category>

		<guid isPermaLink="false">http://m4msakec.com/blog/?p=88</guid>
		<description><![CDATA[Hi all,
The notes on Management control systems can be downloaded
Prin of Mgmt Control Sys
I noticed that the above one is a protected one, which you cannot print. So, I have just created a cracked version which can be downloaded form the following link
Cracked &#8211; MCS (Management control systems) notes
Good Luck
]]></description>
			<content:encoded><![CDATA[<p>Hi all,</p>
<p>The notes on Management control systems can be downloaded</p>
<p><a href="http://m4msakec.com/blog/wp-content/uploads/2010/07/Prin-of-Mgmt-Control-Sys.pdf">Prin of Mgmt Control Sys</a></p>
<p>I noticed that the above one is a protected one, which you cannot print. So, I have just created a cracked version which can be downloaded form the following link</p>
<p><a href="http://m4msakec.com/blog/wp-content/uploads/2010/07/Cracked-MCS.pdf">Cracked &#8211; MCS (Management control systems) notes</a></p>
<p>Good Luck</p>
]]></content:encoded>
			<wfw:commentRss>http://m4msakec.com/blog/?feed=rss2&amp;p=88</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Activating users soon after registration in joomla mysms component</title>
		<link>http://m4msakec.com/blog/?p=85</link>
		<comments>http://m4msakec.com/blog/?p=85#comments</comments>
		<pubDate>Fri, 04 Jun 2010 20:05:34 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Joomla]]></category>

		<guid isPermaLink="false">http://m4msakec.com/blog/?p=85</guid>
		<description><![CDATA[Hi Guys,
I was working on mysms component today. Hats off to the person who made this component. I had installed jom-social also on the same site. The link is here : http://m4msakec.com/milenge.
The default process of mysms component is that it lists all the joomla users in the administrator section and from there we first need [...]]]></description>
			<content:encoded><![CDATA[<p>Hi Guys,</p>
<p>I was working on mysms component today. Hats off to the person who made this component. I had installed jom-social also on the same site. The link is here : http://m4msakec.com/milenge.</p>
<p>The default process of mysms component is that it lists all the joomla users in the administrator section and from there we first need to enable the users to send sms and then assign them the credits. Only after that users can send sms from the front end. I wanted a small modification in this, the requirement was that whenever a user registers, he should by default be able to send sms and should get a default credit of 100 SMS.</p>
<p>I tried editing the mysms.backend.php file but it did not work out&#8230;..spent almost 2 hrs for this. Then I just saw the database tables of mysms  component and realized that mysms was just storing the users credit and their ability to send sms in one table .i.e. mysms_joomlauser.</p>
<p>I thought of making an entry into this table at the time of registration itself&#8230;.and finally concluded that changing the code of the file that takes care of user registration in joomla will help me out. The file was user.php (JUser class)  in the directory libraries/joomla/user.</p>
<p>I just added the following code and a function in this file and things worked out perfectly fine&#8230;.just as the way I wanted</p>
<p><strong>Code : in the function save()</strong></p>
<p>function save( $updateOnly = false )<br />
{<br />
// purged code of functionsave()</p>
<p><strong>// registering as an sms sender &#8212;-added by vicky<br />
$sql = &#8220;INSERT INTO #__mysms_joomlauser VALUES( 0, $this-&gt;id, &#8221;,&#8221;,1, 100 )&#8221;;<br />
$this-&gt;ExecuteSql( $sql );</strong></p>
<p><strong><br />
</strong>        //purged code of functionsave()<br />
}<br />
Just after this when I registered a new user it gave me an error saying undefined function: JUser:Executesql()&#8230;&#8230;.</p>
<p>and just three lines added more to the code and that was it&#8230;&#8230;&#8230;The function that I wrote for Juseris as follows</p>
<p><strong>    function ExecuteSql($query)<br />
{<br />
$db =&amp; JFactory::getDBO();</strong></p>
<p><strong>$db-&gt;setQuery($query);<br />
$result = $db-&gt;query();</strong></p>
<p><strong>}</strong></p>
<p>If you are trying to do the same then just donload this <a href="http://m4msakec.com/blog/wp-content/uploads/2010/06/user.rar" title="user.rar">user.php</a> and replace it in your site/libraries/joomla/user directory</p>
<p>Hope this helps others too&#8230;.Please comment if it does</p>
]]></content:encoded>
			<wfw:commentRss>http://m4msakec.com/blog/?feed=rss2&amp;p=85</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Split a string on basis of capital letters in c#</title>
		<link>http://m4msakec.com/blog/?p=84</link>
		<comments>http://m4msakec.com/blog/?p=84#comments</comments>
		<pubDate>Tue, 06 Apr 2010 19:39:34 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[.Net]]></category>

		<guid isPermaLink="false">http://m4msakec.com/blog/?p=84</guid>
		<description><![CDATA[Hey Guys,
This is cool. The following code does a very simple and very important work for us. In all the programming languages, we follow a pattern of using capital letters to to differentiate between words while writing classes or making UI pages .i.e. instead of creating a class like class addnewstudent, we prefer class AddNewStudent. [...]]]></description>
			<content:encoded><![CDATA[<p>Hey Guys,</p>
<p>This is cool. The following code does a very simple and very important work for us. In all the programming languages, we follow a pattern of using capital letters to to differentiate between words while writing classes or making UI pages .i.e. instead of creating a class like class addnewstudent, we prefer class AddNewStudent. Now this can be easily understood by a programmer, but what abt a layman??????? The following code makes it easier for a layman and converts such strings into human readable format</p>
<p><strong>Code</strong></p>
<p>private string MakeStringReadable(string source)<br />
{<br />
StringBuilder sb = new StringBuilder();</p>
<p>char last = char.MinValue;<br />
foreach (char c in source)<br />
{<br />
if (char.IsLower(last) &amp;&amp;<br />
char.IsUpper(c))<br />
{ sb.Append(&#8216; &#8216;); }<br />
sb.Append(c);<br />
last = c;<br />
}<br />
return sb.ToString();<br />
}</p>
]]></content:encoded>
			<wfw:commentRss>http://m4msakec.com/blog/?feed=rss2&amp;p=84</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Understanding Indexation</title>
		<link>http://m4msakec.com/blog/?p=83</link>
		<comments>http://m4msakec.com/blog/?p=83#comments</comments>
		<pubDate>Mon, 05 Apr 2010 17:25:34 +0000</pubDate>
		<dc:creator>sandeep</dc:creator>
				<category><![CDATA[Finance]]></category>

		<guid isPermaLink="false">http://m4msakec.com/blog/?p=83</guid>
		<description><![CDATA[The Following PPT will explain you what exactly indexation is.
Please click on the following link to download the presentation on indexation
understanding indexation
thanks
]]></description>
			<content:encoded><![CDATA[<p>The Following PPT will explain you what exactly indexation is.</p>
<p>Please click on the following link to download the presentation on indexation</p>
<p><a href="http://m4msakec.com/blog/wp-content/uploads/2010/03/capitalgains_indexation.pps" title="understanding indexation">understanding indexation</a></p>
<p>thanks</p>
]]></content:encoded>
			<wfw:commentRss>http://m4msakec.com/blog/?feed=rss2&amp;p=83</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to connect to access database in java without a DSN</title>
		<link>http://m4msakec.com/blog/?p=78</link>
		<comments>http://m4msakec.com/blog/?p=78#comments</comments>
		<pubDate>Sat, 21 Nov 2009 08:53:20 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[java]]></category>

		<guid isPermaLink="false">http://m4msakec.com/blog/?p=78</guid>
		<description><![CDATA[Hi,
The following code connects to an access database &#8220;multilingual.mdb&#8221; located in the default folder of the java code. It does not requires to create a dsn for the same
CODE
try
{
Class.forName(&#8220;sun.jdbc.odbc.JdbcOdbcDriver&#8221;);
String myDB = &#8220;jdbc:odbc:Driver={Microsoft Access Driver (*.mdb)};DBQ=multilingual.mdb&#8221;;
Connection c = DriverManager.getConnection(myDB,&#8221;",&#8221;");
Statement s=c.createStatement();
ResultSet rss=s.executeQuery(&#8220;select naam from table1 where id=1&#8243;);
rss.next();
String st=rss.getString(1);
System.out.println(&#8220;string=&#8221;+st);
}
catch (Exception ex)
{
ex.printStackTrace();
}
]]></description>
			<content:encoded><![CDATA[<p>Hi,</p>
<p>The following code connects to an access database &#8220;multilingual.mdb&#8221; located in the default folder of the java code. It does not requires to create a dsn for the same</p>
<p><strong>CODE</strong></p>
<p>try<br />
{<br />
Class.forName(&#8220;sun.jdbc.odbc.JdbcOdbcDriver&#8221;);<br />
String myDB = &#8220;jdbc:odbc:Driver={Microsoft Access Driver (*.mdb)};DBQ=multilingual.mdb&#8221;;<br />
Connection c = DriverManager.getConnection(myDB,&#8221;",&#8221;");</p>
<p>Statement s=c.createStatement();</p>
<p>ResultSet rss=s.executeQuery(&#8220;select naam from table1 where id=1&#8243;);</p>
<p>rss.next();<br />
String st=rss.getString(1);</p>
<p>System.out.println(&#8220;string=&#8221;+st);<br />
}<br />
catch (Exception ex)</p>
<p>{<br />
ex.printStackTrace();<br />
}</p>
]]></content:encoded>
			<wfw:commentRss>http://m4msakec.com/blog/?feed=rss2&amp;p=78</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Pricing and Promotion Strategy of Sun Microsystem : JAVA</title>
		<link>http://m4msakec.com/blog/?p=76</link>
		<comments>http://m4msakec.com/blog/?p=76#comments</comments>
		<pubDate>Sat, 14 Nov 2009 21:53:11 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[MBA : Presentations and projects]]></category>
		<category><![CDATA[java]]></category>

		<guid isPermaLink="false">http://m4msakec.com/blog/?p=76</guid>
		<description><![CDATA[Hi People,  The following is my analysis on the Pricing and Promotion strategies of Sun Microsystems.
Pricing Strategy followed by Sun Microsystems: Java
Java is a programming language originally developed by James Gosling at Sun Microsystems and released in 1995 as a core component of Sun Microsystems&#8217; Java platform.

Java is an Open Source Language .i.e. One [...]]]></description>
			<content:encoded><![CDATA[<p>Hi People,  The following is my analysis on the Pricing and Promotion strategies of Sun Microsystems.</p>
<p class="MsoNormal" style="text-align: center" align="center"><strong><em><u><span style="font-size: 14pt; line-height: 115%; font-family: 'Times New Roman','serif'">Pricing Strategy followed by Sun Microsystems: Java<o:p></o:p></span></u></em></strong></p>
<p class="MsoNormal" style="text-align: justify"><strong>Java</strong> is a programming language originally developed by James Gosling at Sun Microsystems and released in 1995 as a core component of Sun Microsystems&#8217; Java platform.</p>
<p class="MsoNormal" style="text-align: center" align="center"><span><!--[if gte vml 1]><v:shapetype id="_x0000_t75"  coordsize="21600,21600" o:spt="75" o:preferrelative="t" path="m@4@5l@4@11@9@11@9@5xe"  filled="f" stroked="f">  <v:stroke joinstyle="miter"/>  <v:formulas>   <v:f eqn="if lineDrawn pixelLineWidth 0"/>   <v:f eqn="sum @0 1 0"/>   <v:f eqn="sum 0 0 @1"/>   <v:f eqn="prod @2 1 2"/>   <v:f eqn="prod @3 21600 pixelWidth"/>   <v:f eqn="prod @3 21600 pixelHeight"/>   <v:f eqn="sum @0 0 1"/>   <v:f eqn="prod @6 1 2"/>   <v:f eqn="prod @7 21600 pixelWidth"/>   <v:f eqn="sum @8 21600 0"/>   <v:f eqn="prod @7 21600 pixelHeight"/>   <v:f eqn="sum @10 21600 0"/>  </v:formulas>  <v:path o:extrusionok="f" gradientshapeok="t" o:connecttype="rect"/>  <o:lock v:ext="edit" aspectratio="t"/> </v:shapetype><v:shape id="Picture_x0020_1" o:spid="_x0000_i1025" type="#_x0000_t75"  style='width:75pt;height:137.25pt;visibility:visible;mso-wrap-style:square'>  <v:imagedata src="file:///E:\DOCUME~1\vicky.GOD\LOCALS~1\Temp\msohtmlclip1\01\clip_image001.png"   o:title=""/> </v:shape><![endif]--><!--[if !vml]--><img src="http://upload.wikimedia.org/wikipedia/en/thumb/3/39/Java_logo.svg/100px-Java_logo.svg.png" v:shapes="Picture_x0020_1" height="183" width="100" /><!--[endif]--></span></p>
<p class="MsoNormal" style="text-align: justify">Java is an Open Source Language .i.e. One does not have to Pay Sun Microsystems for downloading the Source code of Java. But then the Questions is: How does Sun Microsystems generate revenue from Java? <span> </span></p>
<p style="text-align: justify"><span style="font-size: 11pt; font-family: 'Calibri','sans-serif'">In 1996, Sun created Java and the terms under which it is distributed. Since then, the Java Community Process (JCP) has emerged, allowing companies to participate in shaping language changes, but the ownership of trademarks, licensing agreements, branding, and other fundamental product issues remains unchanged. One is reminded of this fact every time the Sun Microsystems<sup>TM</sup> trademark appears alongside the Java coffee cup logo, or when one is greeted with the message &#8220;brought to you by Sun Microsystems&#8221; at <a href="http://www.java.com/" target="_blank">www.java.com</a>. For anyone to use the Java-compatible logo on a product requires verification against the test compatibility kit (TCK), for which one has to enter into negotiations with Sun. Java, the technology, the trademark, and the language, are owned by Sun.<o:p></o:p></span></p>
<p style="text-align: justify"><span style="font-size: 11pt; font-family: 'Calibri','sans-serif'">The current licensing agreements for Java generate revenue for Sun in two ways; one is through direct fees to its licensees, and the other is through indirect revenue generated off the back end of Java&#8217;s success.<o:p></o:p></span></p>
<p style="text-align: justify"><span style="font-size: 11pt; font-family: 'Calibri','sans-serif'">Besides the above Java also generates revenue by conducting certificate programs and certifications exams like SCJP, SCJD, etc. Clearing these examinations is just like getting a degree which shows that the degree holder has a good knowledge of Java and these certifications are very important for an IT Personnel’s CV. Sun Microsystems <span> </span>charges around 7200 INR for these examinations<o:p></o:p></span></p>
<p style="text-align: justify"><span style="font-size: 11pt; font-family: 'Calibri','sans-serif'">When asked how much income is generated from Java, Jonathan Schwartz, CEO of Sun, replied, &#8220;about $13 billion.&#8221;<o:p></o:p></span></p>
<p style="text-align: justify"><strong><em><span style="font-size: 16pt; font-family: 'Calibri','sans-serif'">Conclusion<o:p></o:p></span></em></strong></p>
<p class="MsoNormal" style="text-align: justify"><strong><span>Thus Sun Microsystems have not priced their actual product, but they have priced the services that people would require after using their product.<o:p></o:p></span></strong></p>
<p class="MsoNormal" style="text-align: justify"><strong><span>The reason Sun Microsystems could do this is that there a very few competitors in the market and in spite of the competition, Java is the best among them.<o:p></o:p></span></strong></p>
<p class="MsoNormal" style="text-align: justify"><strong><em><u><span style="font-size: 14pt; line-height: 115%; font-family: 'Times New Roman','serif'"><o:p><span style="text-decoration: none"> </span></o:p></span></u></em></strong></p>
<p class="MsoNormal" style="text-align: center" align="center"><strong><em><u><span style="font-size: 14pt; line-height: 115%; font-family: 'Times New Roman','serif'">Promotion Strategy followed by Sun Microsystems: Java<o:p></o:p></span></u></em></strong></p>
<p class="MsoNormal" style="text-align: justify"><span style="font-size: 14pt; line-height: 115%; font-family: 'Times New Roman','serif'"><o:p> </o:p></span></p>
<p class="MsoNormal" style="text-align: justify"><strong><span style="font-size: 14pt; line-height: 115%">Promotion through developers<o:p></o:p></span></strong></p>
<p class="MsoNormal" style="text-align: justify"><span>Prior to java there were many programming languages for different Operating systems, Examples include C, C++, FoxPro, Visual Basic, etc. But there was one major common problem with all these languages; these languages were Platform Dependent .i.e. They had to be compiled differently on different Operating Systems .i.e. If a developer develops a code in C language and compiles the code on say Windows Operating System, then that code would not work on Linux Operating system, thus increasing the burden of the developer to compile the code again for Linux and Other Operating System.<o:p></o:p></span></p>
<p class="MsoNormal" style="text-align: justify"><span>Thus there was a great demand for a Programming Language that is Platform independent during the 1990’s. Sun Microsystems soon captured this Niche Segment of the Developers through its Platform Independent Language Java. On top of that the source code of Java was made open source to the developers all over the world. Any developer could download the source code from the website of Sun and use the code free of cost. <strong>Sun Microsystems used the fastest means of distribution .i.e. the Internet as their distribution Channel</strong>.<o:p></o:p></span></p>
<p class="MsoNormal" style="text-align: justify"><strong><span>The main idea behind making the source code open source was to push the brand to the developers. Sun Microsystems was aware of the fact that the developers will in turn push the brand to many customers and enterprises, thus creating a cumulative effect</span></strong><span>, and Sun would earn through Licensing and Certifications. That is what Sun Microsystems is doing these days.<o:p></o:p></span></p>
<p class="MsoNormal" style="text-align: justify"><span>Sun Microsystems has also started a Developer network (SDN) to solve the problem faced by the developers that are using Java. This is to give their target audience a better service and support.<o:p></o:p></span></p>
<p class="MsoNormal" style="text-align: justify"><span><o:p> </o:p></span></p>
<p class="MsoNormal" style="text-align: justify"><span><o:p> </o:p></span></p>
<p class="MsoNormal" style="text-align: justify"><strong><span style="font-size: 14pt; line-height: 115%">Promotion through software applications and Web servers<o:p></o:p></span></strong></p>
<p class="MsoNormal" style="text-align: justify"><span>Soon after the launch of Java, Sun Microsystems also launched its Internet surfing browser Netscape Navigator which was developed totally on the Java Programming language. This move was taken to show the developers the extent to which Java can be used and how developers can add new features in their software using Java. <o:p></o:p></span></p>
<p class="MsoNormal" style="text-align: justify"><span>Sun Microsystems also developed a Web server called Apache Tomcat server to handle web requests in the form of HTTP. This also facilitated the promotion of Java, as the server was built on the Java Platform. (Please note that: A web server is a computer with equipped softwares where the web sites are hosted).<o:p></o:p></span></p>
<p class="MsoNormal" style="text-align: justify"><strong><span>Again, all these facilitated pushing the Java brand to the Developers which was Sun Microsystems’ Main target.<o:p></o:p></span></strong></p>
<p class="MsoNormal" style="text-align: justify"><strong><span style="font-size: 14pt; line-height: 115%">Publicity<o:p></o:p></span></strong></p>
<p class="MsoNormal" style="text-align: justify"><span>Soon after the launch, the Java source code became very popular among the developers. Many people started discussion forums, blogs &amp; eLearning websites on Java Programming on the Internet. Thus, Java gained a lot of Publicity through its developer network and soon became very popular. Also, the increasing popularity of Java triggered the publishing of articles on Java in the Newspaper and online News portals like Forbes Newsletter, etc.<o:p></o:p></span></p>
<p class="MsoNormal" style="text-align: justify"><strong><em><span style="font-size: 16pt; line-height: 115%">Conclusion<o:p></o:p></span></em></strong></p>
<p class="MsoNormal" style="text-align: justify"><strong><span style="font-size: 12pt; line-height: 115%">Thus, Sun Microsystems targeted only the Developer network and pushed the brand to Developers who in turn pushed it to the rest of the world. <span> </span><span> </span><o:p></o:p></span></strong></p>
]]></content:encoded>
			<wfw:commentRss>http://m4msakec.com/blog/?feed=rss2&amp;p=76</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>How to Earn online through your Web site</title>
		<link>http://m4msakec.com/blog/?p=75</link>
		<comments>http://m4msakec.com/blog/?p=75#comments</comments>
		<pubDate>Mon, 12 Oct 2009 20:10:09 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://m4msakec.com/blog/?p=75</guid>
		<description><![CDATA[Many youngsters these days want to earn online, but hardly anyone knows how to do that.
It is actually very simple, if some one guides you in the entire process, otherwise it is very difficult. You can earn online  by  making your own web site and then advertising through your site. You can advertise [...]]]></description>
			<content:encoded><![CDATA[<p>Many youngsters these days want to earn online, but hardly anyone knows how to do that.</p>
<p>It is actually very simple, if some one guides you in the entire process, otherwise it is very difficult. You can earn online  by  making your own web site and then advertising through your site. You can advertise in many ways, some of the most well  known form of online advertising is google adsense, yahoo publisher, infolinks and many more.</p>
<p><strong>The process of earning online</strong></p>
<p>A typical process of earning online is as follows</p>
<ol>
<li>Register your domain name and web space for that domain.</li>
<li>Build your site (Typically a CMS driven site) through which you can update your content daily. A blog like the current site or a forum (<a href="http://m4msakec.com/forum">Click to see our forum</a>) are the best examples of such a site</li>
<li>Upload Good content on your site.</li>
<li>Integrate or Place advertisements on your Web site. (Please note that anyone would place ads on your site only if your site is getting good number of hits and hits will come only if your site has good quantity as well as quality content)</li>
<li>Get paid for the ads on your site.</li>
<li>Thats it</li>
</ol>
<p>The best part is that it costs hardly anything. People are making millions of money per month through the above process and guess what!!!! they hardly invested few dollars in the process. That is the Power of IT.</p>
<p>You can read more success stories by following this link : <a href="https://www.google.com/adsense/static/en_US/Success.html" target="_blank">https://www.google.com/adsense/static/en_US/Success.html</a></p>
<p>Even you can have a success story like theirs. Believe me it can seriously get you millions (if not millions then at least thousands) just at the cost of few bucks.</p>
<p>If you are interested in earning online, then please contact us. We will guide you in the entire process.</p>
<p>You can contact us on the following numbers (India) :  (+91)  9892388510, 9967433963,  9702115577,  9611191486</p>
<p>OR drop us an e mail. <a href="http://convergenceservices.in/contact%20us.html">Click here</a> to get our Contact details</p>
<p>Thanks</p>
<p>Vicky Jain</p>
<p>vickyjain05@gmail.com, vicky@convergenceservices.in</p>
<p>www.convergenceservices.in</p>
]]></content:encoded>
			<wfw:commentRss>http://m4msakec.com/blog/?feed=rss2&amp;p=75</wfw:commentRss>
		<slash:comments>6</slash:comments>
		</item>
		<item>
		<title>How to alter the default focus option in a JOptionPane?</title>
		<link>http://m4msakec.com/blog/?p=74</link>
		<comments>http://m4msakec.com/blog/?p=74#comments</comments>
		<pubDate>Fri, 09 Oct 2009 13:47:33 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[java]]></category>

		<guid isPermaLink="false">http://m4msakec.com/blog/?p=74</guid>
		<description><![CDATA[I was trying to set default focus to a textfield which was placed in a joptionpane, but it wast working with the following code
cvendor.requestFocus();
whereas the same code worked perfectly when the textfield was placed in a jpanel. On research i found that the default focus in a joptionpane is always on the OK button and [...]]]></description>
			<content:encoded><![CDATA[<p>I was trying to set default focus to a textfield which was placed in a joptionpane, but it wast working with the following code</p>
<p>cvendor.requestFocus();</p>
<p>whereas the same code worked perfectly when the textfield was placed in a jpanel. On research i found that the default focus in a joptionpane is always on the OK button and it cannot be changed statically, it can only b changed during runtime using the Runnable interface. Here is the code that did the trick</p>
<p><strong>javax.swing.SwingUtilities.invokeLater(new Runnable() {//&lt;&#8212;&#8211;add<br />
public void run() { cvendor.requestFocus(); }});//&lt;&#8212;-add</strong><br />
nn=JOptionPane.showConfirmDialog(null,Jop,&#8221;Please enter details&#8221;,JOptionPane.CANCEL_OPTION,JOptionPane.QUESTION_MESSAGE);</p>
<p>kool na&#8230;&#8230;&#8230;..</p>
]]></content:encoded>
			<wfw:commentRss>http://m4msakec.com/blog/?feed=rss2&amp;p=74</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Accessing windows registry using java</title>
		<link>http://m4msakec.com/blog/?p=72</link>
		<comments>http://m4msakec.com/blog/?p=72#comments</comments>
		<pubDate>Tue, 29 Sep 2009 20:25:19 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[java]]></category>

		<guid isPermaLink="false">http://m4msakec.com/blog/?p=72</guid>
		<description><![CDATA[Hi guys,
You can edit, change or delete any windows registry key values using java.
All you need to do is download d JNI interface for Windows registry from the following link
Click  JNI Registry to download the package
This package has many classes through which we can access the registry.
]]></description>
			<content:encoded><![CDATA[<p>Hi guys,</p>
<p>You can edit, change or delete any windows registry key values using java.</p>
<p>All you need to do is download d JNI interface for Windows registry from the following link</p>
<p>Click  <a href="http://m4msakec.com/blog/wp-content/uploads/2009/09/registry-313.zip" title="JNI Registry">JNI Registry</a> to download the package</p>
<p>This package has many classes through which we can access the registry.</p>
]]></content:encoded>
			<wfw:commentRss>http://m4msakec.com/blog/?feed=rss2&amp;p=72</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Forex secrets revealed : online Currency trading</title>
		<link>http://m4msakec.com/blog/?p=71</link>
		<comments>http://m4msakec.com/blog/?p=71#comments</comments>
		<pubDate>Tue, 29 Sep 2009 19:56:35 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[MBA : Presentations and projects]]></category>

		<guid isPermaLink="false">http://m4msakec.com/blog/?p=71</guid>
		<description><![CDATA[Hi guys,
I  found this kool info on forex currency trading&#8230;.some good secrets are revealed.
Please follow this link to read the article.
http://jabr-fx-online-trading.blogspot.com/
Hope it helps some1
]]></description>
			<content:encoded><![CDATA[<p>Hi guys,</p>
<p>I  found this kool info on forex currency trading&#8230;.some good secrets are revealed.</p>
<p>Please follow this link to read the article.</p>
<p>http://jabr-fx-online-trading.blogspot.com/</p>
<p>Hope it helps some1</p>
]]></content:encoded>
			<wfw:commentRss>http://m4msakec.com/blog/?feed=rss2&amp;p=71</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
	</channel>
</rss>
