User Shoban - Stack Overflow most recent 30 from stackoverflow.com 2009-11-30T00:41:45Z http://stackoverflow.com/feeds/user/12178 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/897107/can-i-fetch-the-tweet-from-twitter-if-i-know-the-tweets-id/897138#897138 2 Answer by Shoban for Can I fetch the tweet from Twitter if I know the tweet's id? Shoban 2009-05-22T09:52:30Z 2009-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#1809393 0 Answer by Shoban for Get information of uploaded media in .NET Shoban 2009-11-27T15:37:42Z 2009-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-function 0 Any harm to the monitor in using SendMessage Function Shoban 2009-11-26T15:33:40Z 2009-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#1803204 1 Answer by Shoban for javascript - know if a link has already been opened. Shoban 2009-11-26T11:41:13Z 2009-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#1802389 1 Answer by Shoban for Creating a hotmail account from C# Shoban 2009-11-26T08:53:31Z 2009-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#1788406 0 Answer by Shoban for Is there an API for time zones based on IP address? Shoban 2009-11-24T07:19:20Z 2009-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-directories 3 Rename files in sub directories Shoban 2008-10-29T04:57:44Z 2009-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#1782672 1 Answer by Shoban for double click on datagrid view to open email messages Shoban 2009-11-23T11:51:06Z 2009-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#1782434 0 Answer by Shoban for I want to crawl my website for every one hour. Shoban 2009-11-23T11:04:08Z 2009-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#1782331 0 Answer by Shoban for Form submit problem using JavaScript in Internet Explorer 6 Shoban 2009-11-23T10:43:55Z 2009-11-23T10:43:55Z <p>I have edited your code a little bit.</p> <pre><code>&lt;script type="text/javascript" language="javascript"&gt; 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; } &lt;/script&gt; </code></pre> <p>and the HTML with some test <code>Image ID</code> and it works in IE6</p> <pre><code>&lt;form name="del_form" id="del_form" method="post" onSubmit="return(dodelete('2'));"&gt; &lt;input name="do" id="do" value="delete" /&gt; &lt;input name="image_id" id="image_id" /&gt; &lt;input type="submit" value="Submit"&gt; &lt;/form&gt; </code></pre> http://stackoverflow.com/questions/1778061/how-to-detect-different-user-settings-javascript-enabled-cookies-enabled/1778073#1778073 2 Answer by Shoban for How to detect different user settings? Javascript enabled, Cookies enabled Shoban 2009-11-22T07:11:59Z 2009-11-22T07:11:59Z <p>You can use the <code>&lt;noscript&gt;</code> tag to detect whether javascript is disabled or not. Well You cannot actually detect instead you can do something like</p> <pre><code>&lt;noscript&gt;Javascript is disabled. please enable Javascript&lt;/noscript&gt; </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#1771780 1 Answer by Shoban for How do you maintain technical contracts between development teams? Shoban 2009-11-20T16:53:42Z 2009-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#1769574 1 Answer by Shoban for What is the easiest way to write code in MS Word? Shoban 2009-11-20T10:23:16Z 2009-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#1768599 5 Answer by Shoban for How to write the Captcha? Shoban 2009-11-20T05:58:27Z 2009-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#1768322 0 Answer by Shoban for Looking for guidance on writing tutorials for users Shoban 2009-11-20T04:22:37Z 2009-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#1764565 0 Answer by Shoban for Google Site Search - How do I get rid of branding? Shoban 2009-11-19T16:23:19Z 2009-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>&lt;input type="hidden" name="cof" value="&lt;&lt;OLD VALUE&gt;&gt;" /&gt; </code></pre> <p>to</p> <pre><code>&lt;input type="hidden" name="cof" value="&lt;&lt;OLD VALUE&gt;&gt;;NB:1" /&gt; </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&amp;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#1764352 0 Answer by Shoban for Build a Google Suggest box and respond to keyboard events without jQuery Shoban 2009-11-19T15:59:06Z 2009-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#1761914 1 Answer by Shoban for Problem with copy in Windows 7 and my C# program Shoban 2009-11-19T09:11:50Z 2009-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#1761603 2 Answer by Shoban for Open folder dialog in Silverlight? Shoban 2009-11-19T07:51:41Z 2009-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#1761463 1 Answer by Shoban for How to detect OS of Win7 Home Premium, Win7 Professional, Win7 Enterprise or Win7 ultimate? Shoban 2009-11-19T07:17:16Z 2009-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=&amp;katID=30&amp;skatID=277&amp;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-2007 0 form.js error in MOSS 2007 Shoban 2009-11-18T15:36:30Z 2009-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#1760885 0 Answer by Shoban for form.js error in MOSS 2007 Shoban 2009-11-19T04:31:37Z 2009-11-19T04:31:37Z <p>Finally this is resolved ;-)</p> <p>We had a user control which had a <code>&lt;form&gt;</code> tag. So nested form tags caused the issue.</p> http://stackoverflow.com/questions/1747861/visual-studio-2008-html-project-documentation/1747919#1747919 1 Answer by Shoban for Visual studio 2008 html project documentation Shoban 2009-11-17T10:30:11Z 2009-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#1746651 2 Answer by Shoban for Does Visual Studio 2008 work well with Windows 7 pro 64bit Shoban 2009-11-17T04:47:37Z 2009-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#1743862 2 Answer by Shoban for Table Doesn't Exist error when installing Vbulletin Shoban 2009-11-16T18:07:17Z 2009-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#1743821 1 Answer by Shoban for What is preventing my .NET 2.0 application from running on a 64-bit platform? Shoban 2009-11-16T18:00:51Z 2009-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#1739282 1 Answer by Shoban for How do I strip all the html out of database records, than create an xml file? Shoban 2009-11-15T23:30:13Z 2009-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#1736687 0 Answer by Shoban for Use an installer to add .NET User Control to Visual Studio Toolbox Shoban 2009-11-15T05:28:37Z 2009-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#1733575 3 Answer by Shoban for Windows Mobile: how do I know if I have a GPS installed? Shoban 2009-11-14T07:13:54Z 2009-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#1733549 0 Answer by Shoban for How to access sharepoint data using C#? Shoban 2009-11-14T06:58:45Z 2009-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#1804384 Comment by Shoban on Any harm to the monitor in using SendMessage Function Shoban 2009-11-26T15:46:10Z 2009-11-26T15:46:10Z Thanks ...................... http://stackoverflow.com/questions/1803131/server-side-audio-mixer-whats-available-can-csounds-do-this Comment by Shoban on Server side audio mixer. What's available? (Can cSounds do this?) Shoban 2009-11-26T11:29:28Z 2009-11-26T11:29:28Z What language? You wan to mix it when the user is online? http://stackoverflow.com/questions/1789671/windows-service-suddenly-doing-nothing Comment by Shoban on Windows Service suddenly doing nothing Shoban 2009-11-24T12:15:59Z 2009-11-24T12:15:59Z Did you try checking event logs? http://stackoverflow.com/questions/1789605/php-logon-logoff-design-question Comment by Shoban on PHP logon / logoff design question Shoban 2009-11-24T11:58:07Z 2009-11-24T11:58:07Z &quot;I have not thought of when a user exits a php application an informal way.&quot; - a browser crash http://stackoverflow.com/questions/1788390/why-the-operator-overridding-is-not-permitted Comment by Shoban on Why the operator overridding is not permitted Shoban 2009-11-24T07:21:36Z 2009-11-24T07:21:36Z You are .net guru(?) ;-) http://stackoverflow.com/questions/1782657/double-click-on-datagrid-view-to-open-email-messages/1782672#1782672 Comment by Shoban on double click on datagrid view to open email messages Shoban 2009-11-23T16:53:50Z 2009-11-23T16:53:50Z BTW start accepting some answers(?) http://stackoverflow.com/questions/1782657/double-click-on-datagrid-view-to-open-email-messages/1782672#1782672 Comment by Shoban on double click on datagrid view to open email messages Shoban 2009-11-23T12:12:19Z 2009-11-23T12:12:19Z Glad you solved it ;-) http://stackoverflow.com/questions/1782605/windows-authintication-in-c Comment by Shoban on Windows Authintication in C# Shoban 2009-11-23T11:45:38Z 2009-11-23T11:45:38Z We 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#1782434 Comment by Shoban on I want to crawl my website for every one hour. Shoban 2009-11-23T11:08:01Z 2009-11-23T11:08:01Z Yes that's y edited to say &quot;Full control&quot; :) http://stackoverflow.com/questions/1782393/i-want-to-crawl-my-website-for-every-one-hour Comment by Shoban on I want to crawl my website for every one hour. Shoban 2009-11-23T10:58:06Z 2009-11-23T10:58:06Z asking 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/&hellip;</a> http://stackoverflow.com/questions/1782162/form-submit-problem-using-javascript-in-internet-explorer-6 Comment by Shoban on Form submit problem using JavaScript in Internet Explorer 6 Shoban 2009-11-23T10:06:46Z 2009-11-23T10:06:46Z Severfault??? Why? This is a programming related question. http://stackoverflow.com/questions/1781141/integrating-audio-player-which-support-both-mozilla-and-ie Comment by Shoban on Integrating audio player which support both mozilla and IE Shoban 2009-11-23T04:52:51Z 2009-11-23T04:52:51Z Voted to close.... just bcoz of 0 acceptance rate. 22 questions and 0 answers accepted. http://stackoverflow.com/questions/1774798/implementation-of-moodle-cms Comment by Shoban on Implementation of MOODLE CMS Shoban 2009-11-21T07:31:51Z 2009-11-21T07:31:51Z Then try asking in superuser.com http://stackoverflow.com/questions/1768582/how-to-write-the-captcha/1768599#1768599 Comment by Shoban on How to write the Captcha? Shoban 2009-11-20T07:05:55Z 2009-11-20T07:05:55Z ....What error? http://stackoverflow.com/questions/1768582/how-to-write-the-captcha/1768694#1768694 Comment by Shoban on How to write the Captcha? Shoban 2009-11-20T06:32:35Z 2009-11-20T06:32:35Z Good to see you here Anuraj ;-)