Browse by Tags

Tagged Content List
  • Wiki Page: Creating First Emgu CV Project

    This is the first project with emgu cv, it streams the webcam and shows in a imagebox and also processes the image and shows in another imagebox Introduction In the last post we read about Starting with Emgu CV , now here we will start our first Emgu CV project. Emgu CV is...
  • Wiki Page: Starting with Emgu CV

    This is a starters post which will guide how to configure the environment and visual studio to work with emgucv, emgu cv is a wrapper library for all the open cv functions. What is Emgu CV ? Before learning what is Emgu CV, one should know what is Open CV. Open CV It stands...
  • Wiki Page: Windows Forms Overview

    Table of Contents Getting Started With Windows Forms Community Resources Forums Blogs Wiki Articles Other Resources Software Downloads Other Languages Deutsch (de-DE) Windows Forms is a set of classes in the .NET Framework that enables developers to quickly create Windows client applications, using...
  • Wiki Page: Visão Geral do Windows Forms

    Table of Contents Iniciando com Windows Forms Recursos da Comunidade Blogs Artigos Wiki Outros Recursos Download de Softwares Outras Linguagens Deutsch (de-DE) English (en-US) Nota de migração: este artigo foi migrado para o Portal Wiki em Português. O conteúdo será atualizado aqui . Windows...
  • Wiki Page: Top 8 Features of the .NET Framework 4.0 & Visual Studio

    The top 8 features and sub-features of the .NET Framework 4.0 and are listed below: Web Development JavaScript Intellisense is supported in the Visual Studio Editor One Click Deployment For Applications RIA Support by providing Full fledged support for Silverlight Cloud Development...
  • Wiki Page: Visual Basic/C# Workaround: WebBrowser DBLClick Word

    Table of Contents What is this article about? Workaround References What is this article about? Recently in the MSDN forums (link below) it was discovered that the WebBrowser control (IE 10 based) exhibits the following unexpected behavior while used on a UserControl: MSDN Forums - WebBrowser...
  • Wiki Page: C#

    C# is a type-safe, statically typed, object-oriented language that is simple yet powerful, allowing programmers to build a breadth of applications. Combined with the .NET Framework, Visual C# 2008/2010 enables the creation of Windows applications, Web services, database tools, components, controls...
  • Wiki Page: Virtual Execution System

    What is a Virtual Execution System The Virtual Execution System (VES) provides an environment for executing managed code. It provides direct support for a set of built-in data types, defines a hypothetical machine with an associated machine model and state, a set of control flow constructs...
  • Wiki Page: Visual Basic - Drive Searcher

    Table of Contents Finding files with Visual Basic Source Code Introducing the DriveSearcher Class SearchParameters FileFoundEventHandler StatusChangedEventHandler DriveSearcher Class Resources Finding files with Visual Basic A few times a month, I will see people asking in the forums...
  • Wiki Page: Small Basic Tutorial: Creating Your First Program

    Table of Contents Step 1: Set Up Small Basic Step 2: Familiarize yourself with Small Basic Step 3: Create your first program Small Basic is a .NET language created by Microsoft. It allows the beginner programmer to get started creating programs right away, and does not confuse the beginner with the...
  • Wiki Page: C#: Extension Methods in .NET

    Sometimes there is a need to add customized/ user defined methods to existing datatypes. If we write String s1 and then put a dot after s1, we get a list of methods pre-defined such as Aggregate<>, All<>, Average<> etc. With extension methods, we can write out our own method...
  • Wiki Page: Serializing WCF Contract with Object Property

    Table of Contents Introduction WCF Service The issue stems with how to handle contracts with object type properties: WCF Client Initial observations ​ Adding a new class ​ Introduction This sample project is posted in reply to the forum post: http://social.msdn.microsoft.com/Forums/en-US...
  • Wiki Page: Difference between Array and Array List

    The basic difference between an Array and ArrayList are : Arrays are of fixed size, where as ArrayList can grow dynamically in size. Array occupies memory in Stack where as ArrayList occupies Heap. Also, ArrayList are not type-safe, single arraylist can contain different datatypes. Let us go...
  • Wiki Page: Conectar no banco de dados

    Table of Contents Introdução Qual a melhor maneira de fazer uma conexão com o banco de dados? Qual é a vantagem de usar MVC falado anteriormente? Driver usando C# Introdução http://msdn.microsoft.com/pt-br/library/ee730343.aspx Hoje em dia muitos desenvolvedores não sabem como funciona...
  • Wiki Page: BizTalk Server 2010: .NET Helper Classes

    Table of Contents Introduction Helper Class .NET Samples See Also Introduction .NET classes can be used inside an orchestration. They can be divided into two distinct categories according to Optimizing Orchestration Performance recommendations: Helpers and services - These classes provide...
  • Wiki Page: Visual Basic Articles By Paul Ishak

    I will be using this as an index page to track my wiki articles. Pull Out Panel - Borderless Form - Visual Basic.Net Visual Basic - Accessing a method Via its declared name string. Visual Basic - Changing the speed of a wavefile LoOps! With Visual Basic.Net Conditional Branches With...
  • Wiki Page: Exam 98-372 - Microsoft .NET Fundamentals

    Table of Contents Overview Skills Measured Community Related Forum Posts Overview Language(s): English Audience(s): IT Professionals, Developers Technology: Microsoft .NET Framework 4 Type: Proctored Exam Audience Profile Candidates...
  • Wiki Page: Exam 70-519 - Pro: Designing and Developing Web Applications Using Microsoft .NET Framework 4

    Table of Contents Overview Skills Measured Preparation Materials Community Related Forum Posts Overview Language(s): English Audience(s): Developers Technology: Microsoft Visual Studio 2010 Type: Proctored Exam Exam Topcis Covered ...
  • Wiki Page: Exam 70-513 - TS: Windows Communication Foundation Development with Microsoft .NET Framework 4

    Table of Contents Overview Preparation Materials Preparation Materials Community Related Forum Posts Overview Language(s): English Audiences(s) : Developers Technology: Microsoft Visual Studio 2010 Type: Proctored Exam Exam Topics Covered...
  • Wiki Page: Named Pipes IO for Inter-process Communication

    Introduction Use the .NET 3.5 Named Pipes IO for Inter-process communication by implementing a pipe listener on a separate thread. The first sample is a WPF project. It can also be done just as easily in Windows forms. Description The sample demonstrates how to pass string data from clients...
  • Wiki Page: How to Communicate to the Arduino in Visual Basic .NET

    Communicating to the Arduino in the .NET platform is pretty much straightforward: The Arduino uses a virtual serial port to allow programs to be written onto it, but we can also use this port to get and send data to and from the Arduino. Materials: Arduino or Arduino Compatible Board (UNO...
  • Wiki Page: Working with NoSQL Databases

    Table of Contents How to get started with NoSQL? What NoSQL databases are present today? .NET APIs Cassandra CouchDB MongoDB Tokyo Cabinet Further Reading See Also Other Languages Deutsch (de-DE) Italian (it-IT) Português (pt-BR) How to get started with NoSQL? Since 2009 NoSQL databases becomes...
  • Wiki Page: Encontrar o valor no texto

    Hoje gostaria de informar e mostrar como encontrar um valor de uma string grande, isto é, “stringona” separada com algum caracter especial. Antigamente existia o Split e ainda existe, mas para este nosso caso não é apropriado. Para quem quiser ver mais sobre o Split no C#.NET, acesse o link abaixo...
  • Wiki Page: .NET Framework Overview

    Table of Contents .NET Wiki Pages See Also Other Languages Microsoft .NET is a wide collection of products and technologies with a dependence on the Microsoft .NET Framework. The .NET Framework allows you to: Apply common skills across a variety of devices, application types, and programming...
  • Wiki Page: Key-value stores (No SQL Databases)

    A key - value store is a sub-category of NoSQL Databases (to start working with NoSQL Databases or to know what they are, refer : Working with NoSQL Databases ) They allow the application to store its data in a schema-less way. The data, however can be stored in a user-defined data type or object...
Page 1 of 3 (62 items) 123
Can't find it? Write it!