Archive

Posts Tagged ‘RIA’

WMI and CSharp (C#): Enumerate all Namespaces from Root

March 3rd, 2009

I like to understand WMI (Windows Management Instrumentation) as a database, main concepts are:
Namespaces: Databases
Classes: Tables
Properties: Columns
Instances: Lines
Values: Fields
With this in mind, we can start enumerating all the namespaces we can access locally.

using System;
using System.Collections.Generic;
using System.Text;
using System.Management;

namespace WmiNamespace
{
class Program
{
static [...]

Source:WMI and CSharp (C#): Enumerate all Namespaces from Root

admin Swf , ,

WMI and CSharp (C#)Enumerate all the instances (and properties) from a class via WQL

March 3rd, 2009

In the two previous posts (Enumerate all classes from a namespace and Enumerate all Namespaces from Root) we gather enough information to enumerate namespaces and classes. In this post we are going to see how to enumerate all the instances from a class via WQL.

using System;
using System.Collections.Generic;
using System.Text;
using System.Management;

namespace WmiNamespace
{
class Program
[...]

Source:WMI and CSharp (C#)Enumerate all the instances (and properties) from a class via WQL

admin Swf , ,

Microsoft - ZDC -

March 3rd, 2009

I’m a bit late for propagating the news, so you may have already heard that Microsoft has opened the Zurich Development Center (December 2008).

 

 
We are working on bits for Office Communication Server.
The work enviromement is really great, we got very confortable offices with a fitness room and a game room (ping-pong, dart, table soccer, shuffle [...]

Source:Microsoft - ZDC -

admin Swf , ,

Testing a Textfield in 10 points

March 3rd, 2009

I’ll post some tips about testing during the time I learn. So if you have any comments or tips to add, feel free to comment!
Here a 10 values I submit to test a textfield:

An empty value ()
Zero (0)
A string made of whitespace (   )
String containing spaces (foo bar)
Name containing special chars (????)
Chars with accents ( [...]

Source:Testing a Textfield in 10 points

admin Swf , ,

My First Two Weeks At Microsoft

March 3rd, 2009

Just a quick post about my first weeks at Microsoft…
I have now been at Microsoft Unified Communication for two weeks and my first impression is really positive. The team spririt is great, people are always open to help, respectful and very friendly. Most important they love to party and they party hard :) Microsoft is [...]

Source:My First Two Weeks At Microsoft

admin Swf , ,

Happy New Year!

March 3rd, 2009

I wish you all the best for 2009!!!
Good health, happiness and success : )
Ahmet

Source:Happy New Year!

admin Swf , ,

WMI and CSharp (C#): Enumerate all classes from a namespace

March 3rd, 2009

Now that we know how to enumerate all the namespace from root, let’s have a look on how to enumerate all the classes from a namespace.

using System;
using System.Collections.Generic;
using System.Text;
using System.Management;

namespace WmiNamespace
{
class Program
{
static void Main(string[] args)
[...]

Source:WMI and CSharp (C#): Enumerate all classes from a namespace

admin Swf , ,