Brought from our old-site: http://salearningschool.com/displayArticle.php?table=Articles&articleID=1048&title=C#:%20Handling%20Multiple%20Keyboards%20and%20Multiple%20Microphones%20in%20the%20Same%20Software I was working for software that needed multiple keyboards support along with multiple microphones support; sure in C#, Visual Studio, and MS Access Database. Multiple keyboards Support: Detecting multiple keyboards/devices: GetRawInputDeviceList( IntPtr.Zero, ref deviceCount, (uint)dwSize ) returns the number of devices detected You can get a project that detects multiple …
Category: FromSitesTree.com
Apr 09
Attributes of a Web Method (.Net, XML Programming) #Root
Brought from: http://salearningschool.com/displayArticle.php?table=Articles&articleID=1118&title=Advanced%20XML%20Web%20Services%20Programming Attributes of a web method. Using attributes, you can define the behavior of the methods exposed. Syntax VB.net Public Function …. C# [WebMethod (BufferResponse=false)] public int HelloWorld(){ …… } We just used BufferResponse attribute in the method declaration above. Some other attributes: Attributes: BufferResponse: Should the response be buffered? CacheDuration: Number of …
Apr 09
Some random information regarding commenting your code #Root
Some random information regarding commenting your code Is commenting required? or suggested? Simply yes. Always comment your code. Note: Commenting is always useful only when it is done right. Bad commenting is worse than not commenting. What should you write in the comment? ————————————– Write why the section of the code is required. write-What does …
Apr 09
Web Analytics Software and Platforms #Root
https://www.webtrends.com/products-solutions/analytics/ https://www-01.ibm.com/software/info/coremetrics-software/ https://my.omniture.com/login/ http://www.google.com/analytics/#?modal_active=none From: http://sitestree.com/?p=3614 Categories:RootTags: Post Data:2016-07-05 18:18:24 Shop Online: https://www.ShopForSoul.com/ (Big Data, Cloud, Security, Machine Learning): Courses: http://Training.SitesTree.com In Bengali: http://Bangla.SaLearningSchool.com http://SitesTree.com 8112223 Canada Inc./JustEtc: http://JustEtc.net (Software/Web/Mobile/Big-Data/Machine Learning) Shop Online: https://www.ShopForSoul.com/ Medium: https://medium.com/@SayedAhmedCanada
Apr 08
GWT: Google Web Toolkit #Root
http:// code.google.com/webtoolkit/overview.html GWT: Product Overview: Links to installation and implementation guides GWT: Getting Started Guide From: http://sitestree.com/?p=3483 Categories:RootTags: Post Data:2016-07-09 20:28:32 Shop Online: https://www.ShopForSoul.com/ (Big Data, Cloud, Security, Machine Learning): Courses: http://Training.SitesTree.com In Bengali: http://Bangla.SaLearningSchool.com http://SitesTree.com 8112223 Canada Inc./JustEtc: http://JustEtc.net (Software/Web/Mobile/Big-Data/Machine Learning) Shop Online: https://www.ShopForSoul.com/ Medium: https://medium.com/@SayedAhmedCanada
Apr 08
Academic and Professional Advice for Bangladeshi Students #Root
Academic advice Graduate School Advice: by Ragib Hasan Assorted TOEFL Tips Article on TOEFL from Wikipedia Tips on writing a good Statement of Purpose Roadmap to Graduate Admission by Pulak Kumar Chowdhury Only good CGPA and Research Papers can ensure both Admission and Funding from a good University. by Prof. Humayun Kabir BUET Graduates in …
Apr 08
How to be/pass : CX-310-081: Sun Certified Web Component Developer #Root
Check the syllabus and the related tutorials at: Course Section Tutorial Chapters Section 1: The Servlet Technology Model Chapter 4, Java Servlet Technology Section 2: The Structure and Deployment of Web Applications Chapter 3, Getting Started with Web Applications Section 3: The Web Container Model Chapter 3, Getting Started with Web Applications Chapter 4, Java …
Apr 08
Good Coding Style in PHP + Other languages #Root
Style 1.1: Use proper indenting while ($x < $z) { if ($a == 1) { echo ‘A was equal to 1’; } else { if ($b == 2) { //do something } else { //do something else } } } 1.2 while ($x < $z) { if ($a == 1) { echo ‘A was …
Apr 08
Overview on .Net Solution Architecture #Root
Overview on .Net Solution Architecture Actually, I wrote this long back as you can see at: http://salearningschool.com/displayArticle.phptable=Articles&articleID=793&title=Overview%20on%20.Net%20Solution%20Architecture Microsoft Solution Framework is a combination/mix of both Waterfall model and Spiral model. It includes waterfall models milestone based planning and resulting predictability with the spiral model’s benefits of feedback and creativity Roles in the MSF Team Model: …
Apr 08
JavaScript DOM: Must knowledge to understand Ajax #Root
Understanding Javascript DOM is the first step to understand Ajax. DO M provides many methods to access and edit individual components of a web-page/document. The methods are called getters. < div id = ‘test’ > Hello < /div > getElementById method can reference to this div element. var testDiv = document.getElementById(“test”); CSS #test{} refers to …
