Actually getting autoexpect to work on Windows solved

Actually got autoexpect to work on windows

Automating Software Testing Adage ERP, Coolearth Warehouse Management, VeggieTests

So I have been working on an easy VB.net app for submitting QC tests to adage through the TEE interface. As mentioned in this post http://michaelellerbeck.com/2008/04/03/how-to-setup-adage-to-allow-qc_testresults/ Well I wanted to setup an automated test that would basically go from a shop order released to production (In Adage ERP, the lot creation (In Coolearth WMS), and [...]

[VpxdMain] Failed to initialize: not well-formed (invalid token) VMWARE

This is caused by ESX 3.5 Update 2 not being compatible with the Virtual Center. You will need to upgrade to VirtualCenter 2.5 Update 2.

VB.net ramblings

How to capture a Control + Something First enable key preview on your form then use the key down event Private Sub Form1_KeyDown(ByVal sender As Object, ByVal e As System.Windows.Forms.KeyEv entArgs) Handles Me.KeyDown If e.Modifiers = Keys.Control Then If e.KeyCode = Keys.Enter Then MessageBox.Show(“Ctrl + Enter”) End If End If End Sub How to click [...]

Went to remote wipe an iphone today….

Basically, if you have never applied a security policy to the phone, then it will ask the person who stole it if they want it to be wiped…. That is very strange. These two posts explain it http://blogs.technet.com/sbs/archive/2007/01/11/remote-wiping-a-device-with-no-user-input.aspx http://www.mountainvistatech.com/2009/02/05/block-and-delete-but-no-wipe-option-in-microsoft-mobile-admin/ You get the options to Block, and Delete, but no option to wipe. ATM I can’t [...]

Business Process Reengineering gone wrong

In the same vein as my previous post Going Paperless all wrong I see the trend of BPR going all wrong, and usually hand in hand with some sort of paperless initiative. For a simple example lets analyze a vacation request sheet. I will arbitrarily set the paper based process at automation Level 1. This [...]

Creating a User in Adage ERP, using this user for TEE

So in Adage, under Systems Administration Go to, Database User Name. This is where you setup the link between an NT username and the Database user name and password. So create that link first. Then open up Users, I just copied a previous user and then select the above created User Name for the OS [...]

Using Pinvoke with Char*

So I had a c++ .dll that I wanted to use in my vb.net program. I was told that this was the header extern “C” __declspec(dllimport)void  getPassword(char *inputString, char *outputString); After much reading/researching/testing I finally got this to work. Imports System.Runtime.InteropServices Imports System.Text <DllImport(“c:\\Password.dll”)> _ Public Shared Sub getPassword(ByVal inputString As StringBuilder, ByVal outputString As [...]

OWA keeps asking for credentials microsoft exchange 2003

I don’t know why it kept asking the user for credentials, it was only doing it on a cellular modem connection wifi would work just fine. When I had the user start using a https:// connection it became rock solid. So the solution use SSL. Weird.

Follow

Get every new post delivered to your Inbox.

Join 201 other followers