User Shoban - Stack Overflowmost recent 30 from stackoverflow.com2009-11-30T00:41:45Zhttp://stackoverflow.com/feeds/user/12178http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/897107/can-i-fetch-the-tweet-from-twitter-if-i-know-the-tweets-id/897138#8971382Answer by Shoban for Can I fetch the tweet from Twitter if I know the tweet's id?Shoban2009-05-22T09:52:30Z2009-11-27T21:43:34Z<p>Yes you can. Check <a href="http://apiwiki.twitter.com/Twitter-REST-API-Method%3A-statuses%C2%A0show" rel="nofollow">this</a>.</p>
http://stackoverflow.com/questions/1809333/get-information-of-uploaded-media-in-net/1809393#18093930Answer by Shoban for Get information of uploaded media in .NETShoban2009-11-27T15:37:42Z2009-11-27T15:37:42Z<p>I had a similar requirement for one of my sites and used <a href="http://ffmpeg.org/" rel="nofollow">ffmpeg</a> for that. I think ffmpeg is your best option.</p>
http://stackoverflow.com/questions/1804351/any-harm-to-the-monitor-in-using-sendmessage-function0Any harm to the monitor in using SendMessage FunctionShoban2009-11-26T15:33:40Z2009-11-26T15:39:07Z
<p>I developed a little app which uses <code>SendMessage</code> function to turn off monitor. My friend asked me whether using the app regularly will harm his monitor. He had some issues with his mother board when he used a similar app. Is there any harm (for hardware) in using the function to do things like these?</p>
http://stackoverflow.com/questions/1803184/javascript-know-if-a-link-has-already-been-opened/1803204#18032041Answer by Shoban for javascript - know if a link has already been opened.Shoban2009-11-26T11:41:13Z2009-11-26T11:41:13Z<p>We have a similar question. Check out <a href="http://stackoverflow.com/questions/795654/using-javascript-to-mark-a-link-as-visited">using javascript to mark a link as visited</a>. Got this while googling for an answer to your question ;-)</p>
http://stackoverflow.com/questions/1802351/creating-a-hotmail-account-from-c/1802389#18023891Answer by Shoban for Creating a hotmail account from C#Shoban2009-11-26T08:53:31Z2009-11-26T08:53:31Z<p>I dont think you will be able to do it as you will required to solve a Captcha.</p>
http://stackoverflow.com/questions/1788383/is-there-an-api-for-time-zones-based-on-ip-address/1788406#17884060Answer by Shoban for Is there an API for time zones based on IP address?Shoban2009-11-24T07:19:20Z2009-11-24T07:19:20Z<p><strong>Edit :</strong> Looks like we have a similar question : <a href="http://stackoverflow.com/questions/743505/how-to-get-time-zone-through-ip-address-in-php">How to get Time Zone through IP Address in PHP</a></p>
<p>AFAIK there is no API which gives both of you. try out <a href="http://www.ip2location.com/" rel="nofollow">ip2location</a> which can get you the location and then you can use the location to get the timezone.</p>
http://stackoverflow.com/questions/245840/rename-files-in-sub-directories3Rename files in sub directoriesShoban2008-10-29T04:57:44Z2009-11-23T13:59:13Z
<p>Is there any way of batch renaming files in sub directories?</p>
<p>Example: </p>
<p>Rename *.html to *.htm in a folder which has directories and sub directories.</p>
http://stackoverflow.com/questions/1782657/double-click-on-datagrid-view-to-open-email-messages/1782672#17826721Answer by Shoban for double click on datagrid view to open email messagesShoban2009-11-23T11:51:06Z2009-11-23T11:51:06Z<p>You will be storing the path of the <code>msg</code> file some where right? Then you can use the <code>CellDoubleClick</code> or the <code>CellMouseDoubleClick</code> event to open the msg file using <a href="http://msdn.microsoft.com/en-us/library/system.diagnostics.process.start.aspx" rel="nofollow">Process.Start</a>. I assume outlook is installed and MSG file is associated with outlook. Hope this gives enough information <strong>write you own code</strong>.</p>
http://stackoverflow.com/questions/1782393/i-want-to-crawl-my-website-for-every-one-hour/1782434#17824340Answer by Shoban for I want to crawl my website for every one hour.Shoban2009-11-23T11:04:08Z2009-11-23T11:04:08Z<p>AFAIK This is not something which you have full control . The settings are diff for different crawlers. Check this question for Google Search Crawler : <a href="http://stackoverflow.com/questions/1225850/when-does-google-re-crawl-a-site">When does Google re-crawl a site?</a> </p>
<p>Update your content regularly and crawlers will come back to your site regularly.</p>
<p>and some more info here : <a href="http://webhostingreality.blogspot.com/2008/01/change-frequency-sitemap-xml-tag.html" rel="nofollow">Change Frequency Sitemap XML Tag</a></p>
<blockquote>
<p>Please note that the value of this tag
is considered a hint and not a
command. Even though search engine
crawlers may consider this information
when making decisions, they may crawl
pages marked "hourly" less frequently
than that, and they may crawl pages
marked "yearly" more frequently than
that.</p>
</blockquote>
http://stackoverflow.com/questions/1782162/form-submit-problem-using-javascript-in-internet-explorer-6/1782331#17823310Answer by Shoban for Form submit problem using JavaScript in Internet Explorer 6Shoban2009-11-23T10:43:55Z2009-11-23T10:43:55Z<p>I have edited your code a little bit.</p>
<pre><code><script type="text/javascript" language="javascript">
function dodelete(image_id)
{
if (confirm("Are you sure want to delete this image?"))
{
document.getElementById('image_id').value=image_id;
document.del_form.submit();
}
return false;
}
</script>
</code></pre>
<p>and the HTML with some test <code>Image ID</code> and it works in IE6</p>
<pre><code><form name="del_form" id="del_form" method="post" onSubmit="return(dodelete('2'));">
<input name="do" id="do" value="delete" />
<input name="image_id" id="image_id" />
<input type="submit" value="Submit">
</form>
</code></pre>
http://stackoverflow.com/questions/1778061/how-to-detect-different-user-settings-javascript-enabled-cookies-enabled/1778073#17780732Answer by Shoban for How to detect different user settings? Javascript enabled, Cookies enabledShoban2009-11-22T07:11:59Z2009-11-22T07:11:59Z<p>You can use the <code><noscript></code> tag to detect whether javascript is disabled or not. Well You cannot actually detect instead you can do something like</p>
<pre><code><noscript>Javascript is disabled. please enable Javascript</noscript>
</code></pre>
<p>Also there is no proper way <a href="http://stackoverflow.com/questions/531393/how-to-detect-if-cookies-are-disabled-is-it-possible/531415#531415">to check whether cookies are disabled</a>. All you can do is save something in the cookie and try to retrieve them.</p>
http://stackoverflow.com/questions/1771734/how-do-you-maintain-technical-contracts-between-development-teams/1771780#17717801Answer by Shoban for How do you maintain technical contracts between development teams?Shoban2009-11-20T16:53:42Z2009-11-20T16:53:42Z<p>What about having a Team site (both as one team) or a Wiki so that both teams are aware of the change.</p>
http://stackoverflow.com/questions/1769542/what-is-the-easiest-way-to-write-code-in-ms-word/1769574#17695741Answer by Shoban for What is the easiest way to write code in MS Word?Shoban2009-11-20T10:23:16Z2009-11-20T10:23:16Z<p>Why not use notepad which does not complain about spelling? or just turn of sopelling and Grammar check.</p>
<p><img src="http://www.codegeeks.net/wp-content/uploads/2009/11/word.JPG" alt="alt text"></p>
http://stackoverflow.com/questions/1768582/how-to-write-the-captcha/1768599#17685995Answer by Shoban for How to write the Captcha?Shoban2009-11-20T05:58:27Z2009-11-20T05:58:27Z<p>Try out <a href="http://recaptcha.net/plugins/aspnet/" rel="nofollow">reCpatcha</a> or check out eh blog post "<a href="http://www.codegeeks.net/captcha-using-aspnet" rel="nofollow">Captcha Using Asp.Net</a>" which I wrote sometime back.</p>
http://stackoverflow.com/questions/1768297/looking-for-guidance-on-writing-tutorials-for-users/1768322#17683220Answer by Shoban for Looking for guidance on writing tutorials for usersShoban2009-11-20T04:22:37Z2009-11-20T04:22:37Z<ol>
<li>Have a FAQ</li>
<li>Tips and Tricks Section.</li>
<li>Have short videos about "How to..."</li>
</ol>
http://stackoverflow.com/questions/1764522/google-site-search-how-do-i-get-rid-of-branding/1764565#17645650Answer by Shoban for Google Site Search - How do I get rid of branding?Shoban2009-11-19T16:23:19Z2009-11-19T16:23:19Z<p>If you're a GSS customer, you can remove the Google branding from your CSBE either by using XML or by making the following change to your code if you're using the iframe:</p>
<p>from</p>
<pre><code><input type="hidden" name="cof" value="<<OLD VALUE>>" />
</code></pre>
<p>to</p>
<pre><code><input type="hidden" name="cof" value="<<OLD VALUE>>;NB:1" />
</code></pre>
<p>Make sure you've selected one of the non-Javascript branding options in the Look and feel section of your control panel.</p>
<p>If you're using the overlay display option, after getting the code for the results page, try these steps: </p>
<ol>
<li>Remove the first script tag. It should be on the sixth line of the code snippet after the form element. </li>
<li><p>Inside the style tag (it should be on line 15 or 16 of the code snippet below the div for the results), insert the following rule: </p>
<p>.gsc-branding-text, .gsc-branding-img { display: none; height: 0; }</p></li>
</ol>
<p><a href="http://www.google.com/support/forum/p/customsearch/thread?tid=61559cbc35f41911&hl=en" rel="nofollow">Source</a></p>
http://stackoverflow.com/questions/1764278/build-a-google-suggest-box-and-respond-to-keyboard-events-without-jquery/1764352#17643520Answer by Shoban for Build a Google Suggest box and respond to keyboard events without jQueryShoban2009-11-19T15:59:06Z2009-11-19T15:59:06Z<p>Not exactly what you are looking for but might be of interest. <a href="http://www.marcofolio.net/webdesign/a%5Ffancy%5Fapple.com-style%5Fsearch%5Fsuggestion.html" rel="nofollow">A fancy Apple.com-style search suggestion using jQuery</a>.</p>
http://stackoverflow.com/questions/1761885/problem-with-copy-in-windows-7-and-my-c-program/1761914#17619141Answer by Shoban for Problem with copy in Windows 7 and my C# programShoban2009-11-19T09:11:50Z2009-11-19T09:11:50Z<p>In addition to what others said try using <a href="http://dotnetperls.com/environment-specialfolder" rel="nofollow">Special Folders</a>. and learn a little bit about <a href="http://www.codeproject.com/KB/vista-security/MakingAppsUACAware.aspx?msg=2623884" rel="nofollow">Making Your Application UAC Aware</a></p>
http://stackoverflow.com/questions/1761574/open-folder-dialog-in-silverlight/1761603#17616032Answer by Shoban for Open folder dialog in Silverlight?Shoban2009-11-19T07:51:41Z2009-11-19T07:51:41Z<p>From MSDN.</p>
<blockquote>
<p>Silverlight does not have a browse
folder dialog box and you cannot use
the OpenFileDialog to just select a
folder.</p>
</blockquote>
http://stackoverflow.com/questions/1761444/how-to-detect-os-of-win7-home-premium-win7-professional-win7-enterprise-or-win7/1761463#17614631Answer by Shoban for How to detect OS of Win7 Home Premium, Win7 Professional, Win7 Enterprise or Win7 ultimate?Shoban2009-11-19T07:17:16Z2009-11-19T07:22:18Z<p><a href="http://www.codeguru.com/cpp/misc/misc/system/article.php/c8973/" rel="nofollow">Determine Windows Version and Edition</a></p>
<p>Check this post <a href="http://netcode.ru/dotnet/?lang=&katID=30&skatID=277&artID=7667" rel="nofollow">Detect OS version</a> and see if it helps. This is for XP but it should help you little bit. </p>
<p>Check this one too <a href="http://andrewensley.com/2009/06/c-detect-windows-os-part-1/" rel="nofollow">http://andrewensley.com/2009/06/c-detect-windows-os-part-1/</a> and <a href="http://www.csharp411.com/determine-windows-version-and-edition-with-c/" rel="nofollow">this one is for Vista</a>.</p>
http://stackoverflow.com/questions/1756841/form-js-error-in-moss-20070form.js error in MOSS 2007Shoban2009-11-18T15:36:30Z2009-11-19T04:31:37Z
<p>All of a sudden our development sharepoint publishing stopped working. I am not able to add any new items to Lists. Following are screenshots in different browser when trying to add a new item.</p>
<p><strong>Internet Explorer 7</strong> :
JavaScript error occurs soon after I hover over the rich text editor. There are no required fields but still editor says I have to fill in all required fields and the form does not submit.
<img src="http://www.codegeeks.net/wp-content/uploads/2009/11/1.JPG" alt="alt text"></p>
<p><strong>Firefox</strong> : Rich text editor is not shown. Data gets added to the list without any issues but this is not what I want.</p>
<p><img src="http://www.codegeeks.net/wp-content/uploads/2009/11/2.JPG" alt="alt text"></p>
<p><strong>Internet explore 8</strong> : Same as IE7.
<img src="http://www.codegeeks.net/wp-content/uploads/2009/11/error.JPG" alt="alt text"></p>
<p>I tried clearing the cache, Restarting the server and iis, Cleared Temp folder for asp.net but nothing helped. It doesn't look like a JavaScript error to me. Any idea why this happens?</p>
<p>Our MOSS2007 Standard edition runs on Windows Server 2003 server.</p>
http://stackoverflow.com/questions/1756841/form-js-error-in-moss-2007/1760885#17608850Answer by Shoban for form.js error in MOSS 2007Shoban2009-11-19T04:31:37Z2009-11-19T04:31:37Z<p>Finally this is resolved ;-)</p>
<p>We had a user control which had a <code><form></code> tag. So nested form tags caused the issue.</p>
http://stackoverflow.com/questions/1747861/visual-studio-2008-html-project-documentation/1747919#17479191Answer by Shoban for Visual studio 2008 html project documentationShoban2009-11-17T10:30:11Z2009-11-17T10:30:11Z<p>Check this link : <a href="http://msdn.microsoft.com/en-us/magazine/cc302121.aspx" rel="nofollow">C# XML Comments Let You Build Documentation Directly From Your Visual Studio .NET Source Files</a></p>
<p>Example of how the documentation will look with style
<img src="http://i.msdn.microsoft.com/Bb986142.xmlcfig08%28en-us,MSDN.10%29.gif" alt="alt text"></p>
http://stackoverflow.com/questions/1746644/does-visual-studio-2008-work-well-with-windows-7-pro-64bit/1746651#17466512Answer by Shoban for Does Visual Studio 2008 work well with Windows 7 pro 64bit Shoban2009-11-17T04:47:37Z2009-11-17T04:47:37Z<p>I am using VS 2008 in Windows 7 64 bit from September 2009. So far no issues. Just remember Win 7 64 bit required min of 2GB RAM and 32 Bit requires 1GB of RAM.</p>
http://stackoverflow.com/questions/1743834/table-doesnt-exist-error-when-installing-vbulletin/1743862#17438622Answer by Shoban for Table Doesn't Exist error when installing VbulletinShoban2009-11-16T18:07:17Z2009-11-16T18:07:17Z<p>Have not used vbulletin before but looks like the table <code>my_db.user</code> is mising. Is this table is created by vbulletin then try running the setup again. If it is a custom table then make sure your connection string are correct and the table exists.</p>
http://stackoverflow.com/questions/1743793/what-is-preventing-my-net-2-0-application-from-running-on-a-64-bit-platform/1743821#17438211Answer by Shoban for What is preventing my .NET 2.0 application from running on a 64-bit platform?Shoban2009-11-16T18:00:51Z2009-11-16T18:00:51Z<p>Some useful info for you here as well : <a href="http://visualstudiohacks.com/articles/visual-studio-net-platform-target-explained/" rel="nofollow">Visual Studio .NET Platform Target Explained</a></p>
http://stackoverflow.com/questions/1739256/how-do-i-strip-all-the-html-out-of-database-records-than-create-an-xml-file/1739282#17392821Answer by Shoban for How do I strip all the html out of database records, than create an xml file?Shoban2009-11-15T23:30:13Z2009-11-15T23:30:13Z<p>Check this question : <a href="http://stackoverflow.com/questions/787932/using-c-regular-expressions-to-remove-html-tags">Using C# regular expressions to remove HTML tags</a>. What exactly did you mean by creating xml?</p>
http://stackoverflow.com/questions/1736531/use-an-installer-to-add-net-user-control-to-visual-studio-toolbox/1736687#17366870Answer by Shoban for Use an installer to add .NET User Control to Visual Studio ToolboxShoban2009-11-15T05:28:37Z2009-11-15T05:28:37Z<p>There is Toolbox controls installer. Check this tutorial from MSDN : Tutorial: <a href="http://msdn.microsoft.com/en-us/library/bb286995%28VS.80%29.aspx" rel="nofollow">Installing Controls By Using the Toolbox Controls Installer</a></p>
<blockquote>
<p>This tutorial explains how to use the
Toolbox Controls Installer (TCI). When
you have finished this tutorial, you
will have created full-featured
installers for both Windows Forms
controls and Web Forms controls that
you can install into the Visual Studio
Toolbox by using the Toolbox Controls
Installer (TCI).</p>
</blockquote>
http://stackoverflow.com/questions/1733552/windows-mobile-how-do-i-know-if-i-have-a-gps-installed/1733575#17335753Answer by Shoban for Windows Mobile: how do I know if I have a GPS installed?Shoban2009-11-14T07:13:54Z2009-11-14T07:13:54Z<p>You <a href="http://gps3.codeplex.com/" rel="nofollow">GPS.net</a> for developing GPS related applications and this framework has an option to detect GPS devices.</p>
http://stackoverflow.com/questions/1733514/how-to-access-sharepoint-data-using-c/1733549#17335490Answer by Shoban for How to access sharepoint data using C#?Shoban2009-11-14T06:58:45Z2009-11-14T06:58:45Z<p>You have to install <a href="http://blogs.msdn.com/pandrew/archive/2009/03/19/visual-studio-2008-extensions-for-sharepoint-vsewss-1-3-addresses-all-common-sharepoint-developer-requests.aspx" rel="nofollow">VS 2005 or VS 2008 extensions</a> for sharepoint. Intsllaing them on xp can be tricky and <a href="http://mkdot.net/blogs/zzl/archive/2008/06/18/install-vs-2005-2008-extensions-for-sharepoint-on-windows-xp-vista-os.aspx" rel="nofollow">this page</a> should hep you with that.</p>
http://stackoverflow.com/questions/1804351/any-harm-to-the-monitor-in-using-sendmessage-function/1804384#1804384Comment by Shoban on Any harm to the monitor in using SendMessage FunctionShoban2009-11-26T15:46:10Z2009-11-26T15:46:10ZThanks ......................http://stackoverflow.com/questions/1803131/server-side-audio-mixer-whats-available-can-csounds-do-thisComment by Shoban on Server side audio mixer. What's available? (Can cSounds do this?)Shoban2009-11-26T11:29:28Z2009-11-26T11:29:28ZWhat language? You wan to mix it when the user is online?http://stackoverflow.com/questions/1789671/windows-service-suddenly-doing-nothingComment by Shoban on Windows Service suddenly doing nothingShoban2009-11-24T12:15:59Z2009-11-24T12:15:59ZDid you try checking event logs?http://stackoverflow.com/questions/1789605/php-logon-logoff-design-questionComment by Shoban on PHP logon / logoff design questionShoban2009-11-24T11:58:07Z2009-11-24T11:58:07Z"I have not thought of when a user exits a php application an informal way." - a browser crashhttp://stackoverflow.com/questions/1788390/why-the-operator-overridding-is-not-permittedComment by Shoban on Why the operator overridding is not permittedShoban2009-11-24T07:21:36Z2009-11-24T07:21:36ZYou are .net guru(?) ;-)http://stackoverflow.com/questions/1782657/double-click-on-datagrid-view-to-open-email-messages/1782672#1782672Comment by Shoban on double click on datagrid view to open email messagesShoban2009-11-23T16:53:50Z2009-11-23T16:53:50ZBTW start accepting some answers(?)http://stackoverflow.com/questions/1782657/double-click-on-datagrid-view-to-open-email-messages/1782672#1782672Comment by Shoban on double click on datagrid view to open email messagesShoban2009-11-23T12:12:19Z2009-11-23T12:12:19ZGlad you solved it ;-)http://stackoverflow.com/questions/1782605/windows-authintication-in-cComment by Shoban on Windows Authintication in C#Shoban2009-11-23T11:45:38Z2009-11-23T11:45:38ZWe should stop answering these questions. When you answer them they repeat the same mistake.http://stackoverflow.com/questions/1782393/i-want-to-crawl-my-website-for-every-one-hour/1782434#1782434Comment by Shoban on I want to crawl my website for every one hour.Shoban2009-11-23T11:08:01Z2009-11-23T11:08:01ZYes that's y edited to say "Full control" :)http://stackoverflow.com/questions/1782393/i-want-to-crawl-my-website-for-every-one-hourComment by Shoban on I want to crawl my website for every one hour.Shoban2009-11-23T10:58:06Z2009-11-23T10:58:06Zasking a question differently doesnt help. <a href="http://stackoverflow.com/questions/1781926/how-crawler-caches-stackoverflow-site-on-hourly-basis-closed" rel="nofollow" title="how crawler caches stackoverflow site on hourly basis closed">stackoverflow.com/questions/1781926/…</a>http://stackoverflow.com/questions/1782162/form-submit-problem-using-javascript-in-internet-explorer-6Comment by Shoban on Form submit problem using JavaScript in Internet Explorer 6Shoban2009-11-23T10:06:46Z2009-11-23T10:06:46ZSeverfault??? Why? This is a programming related question.http://stackoverflow.com/questions/1781141/integrating-audio-player-which-support-both-mozilla-and-ieComment by Shoban on Integrating audio player which support both mozilla and IEShoban2009-11-23T04:52:51Z2009-11-23T04:52:51ZVoted to close.... just bcoz of 0 acceptance rate. 22 questions and 0 answers accepted.http://stackoverflow.com/questions/1774798/implementation-of-moodle-cmsComment by Shoban on Implementation of MOODLE CMSShoban2009-11-21T07:31:51Z2009-11-21T07:31:51ZThen try asking in superuser.comhttp://stackoverflow.com/questions/1768582/how-to-write-the-captcha/1768599#1768599Comment by Shoban on How to write the Captcha?Shoban2009-11-20T07:05:55Z2009-11-20T07:05:55Z....What error?http://stackoverflow.com/questions/1768582/how-to-write-the-captcha/1768694#1768694Comment by Shoban on How to write the Captcha?Shoban2009-11-20T06:32:35Z2009-11-20T06:32:35ZGood to see you here Anuraj ;-)