Actually got autoexpect to work on windows
Filed under: Uncategorized | Tagged: Autoexpect windows | 2 Comments »
Actually got autoexpect to work on windows
Filed under: Uncategorized | Tagged: Autoexpect windows | 2 Comments »
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 [...]
Filed under: Uncategorized | Tagged: Adage ERP, AutoIt, Coolearth | Leave a Comment »
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.
Filed under: vmware | Tagged: Failed to initialize: not well-formed (invalid token) | Leave a Comment »
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 [...]
Filed under: Applied IT | Leave a Comment »
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 [...]
Filed under: Applied IT | 3 Comments »
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 [...]
Filed under: Applied IT, Information Management, kronos | Leave a Comment »
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 [...]
Filed under: Applied IT | Leave a Comment »
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 [...]
Filed under: Applied IT | Leave a Comment »
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.
Filed under: Applied IT | Tagged: keeps asking for credentials, OWA, ssl | Leave a Comment »