Ameya Solutions’ netProfileManager

2
Categories: .NET, C#, News
Posted on: 26th February 2010 by: Andrei

This is a small network profile manager that I’ve developed at the request of a friend of mine. He’s pleased with it and encouraged me to publish it.

The application is called netProfileManager and it is written in C#.

netProfileManager Screenshot

netProfileManager Screenshot

The main goal of the software is to allow you to create profiles that store your network configurations. It supports IPv4 both static and DHCP configurations. It uses the netsh and ipconfig command line utilities.

Profiles can be launched by right clicking the application icon in the tray bar or from the main interface. The software is provided as is with no warranty whatsoever.

Don’t hesitate to contact me if you wish to report a bug or make a suggestion.

You can download it here: http://ameya.ro/downloads.php

I would love to hear some feedback from those who’ve already tested it.

Bookmark and Share

SQL list of countries

0
Categories: MySQL
Posted on: 1st February 2010 by: Andrei

I’ve always found myself needing an SQL list of all the countries in the world. After a little googling I found this on 27.org that has pretty much all the information needed for each country.

It also has an SQL file for US states if anyone is interested.

Direct link to file

Source article

Bookmark and Share

Simulating mouse movement and actions in C#

1
Categories: .NET, C#
Posted on: 2nd November 2009 by: Andrei

I’ve recently worked on a project that required my application to move the mouse and left click on some items.

Here’s a simple working solution that will handle mouse movement and left clicking.


using System.Runtime.InteropServices;

private const UInt32 MouseEventLeftDown = 0x0002;

private const UInt32 MouseEventLeftUp = 0x0004;

 [DllImport("user32.dll")]
 private static extern void mouse_event(UInt32 dwFlags, UInt32 dx, UInt32 dy, UInt32 dwData, IntPtr dwExtraInfo);

private void leftClick()
 {
 mouse_event(MouseEventLeftDown, 0, 0, 0, new System.IntPtr());
 mouse_event(MouseEventLeftUp, 0, 0, 0, new System.IntPtr());
 }

private void mouseMove()
 {
 Cursor.Position = new Point(Cursor.Position.X - 200, Cursor.Position.Y - 200);
 }

Bookmark and Share

Google Wave Invite

2
Categories: Random
Posted on: 15th October 2009 by: Andrei

Looking for a Google Wave invite if anyone has one to spare. I’d like to check it out.

Thank you.

Got one !

Bookmark and Share

MSDN Beginner

0
Categories: .NET, News
Posted on: 13th August 2009 by: Andrei

The Microsoft Developer Network has released a new site aimed at teaching kids and beginners how to program.

You can find more information here: http://msdn.com/beginner .

Bookmark and Share

Microsoft reveals official names for “Stirling” and “Geneva”

0
Categories: News
Posted on: 15th July 2009 by: Andrei

Stirling will be officially known as Forefront Protection Suite (FPS) and will include the products in the current suite, plus the Forefront Protection Manager (formerly known as the Stirling management console) and the Forefront Threat Management Gateway Web Security Service.

Geneva Server will be called Active Directory Federation Services and Geneva Framework will be Windows Identity Foundation.

via Ars Technica

Bookmark and Share

Ajax periodic refresh of page using jQuery

0
Categories: JavaScript, PHP
Posted on: 13th July 2009 by: Andrei
var refreshId = setInterval(function() {
     $('#some-content').load('/path/to/your.php');
}, 3000);
Bookmark and Share

The first ever Microsoft keynote at the JavaOnE conference

0
Categories: News
Posted on: 6th June 2009 by: Andrei

The keynote was about the collaboration between Microsoft and Sun on the project Apache Stonehenge.

Further reading:

Bookmark and Share

Windows Mobile 6.5 Developer Tool Kit available

0
Categories: .NET, Mobile, News
Posted on: 5th June 2009 by: Andrei

You can download it here but keep in mind that it requires the Windows Mobile 6 SDK which you can get here. It includes API’s for “touch gestures” and “physics”.

More details here.

Bookmark and Share

Performance testing of Dictionary, List and HashSet

0
Categories: .NET, C#
Posted on: 30th May 2009 by: Andrei

This is an interesting article. I won’t spoil the results.

Read all about it here: http://softscenario.blogspot.com/2009/05/performance-testing-of-dictionary-list.html

Bookmark and Share