Link to home
Start Free TrialLog in
Avatar of askolits
askolits

asked on

Looking for a program to detect office 64bit

I use VBA to detect if 'Office 64 bit' is installed by using the code in the below link.
But I need this in an executable file so I can give it to users to run on their system.

I have an old copy of VB express that I use on occasion to create exe files to do simple things like this, but having issues. But VB Express is really old and would rather have it in something like vb.net.

Anyone have anything like this. Or can someone create it for me?

Here is the VBA code I use and it works without any issues.
http://officeone.mvps.org/vba/bitness.html

Thanks,

John
Avatar of Kimputer
Kimputer

Use this code to adjust to what you need (c# code):

private void button1_Click(object sender, EventArgs e)
{
	openFileDialog1.ShowDialog();
	Stream fs = openFileDialog1.OpenFile();

	BinaryReader br = new BinaryReader(fs);

	UInt16 mz = br.ReadUInt16();
	if (mz == 0x5a4d) // check if it's a valid image ("MZ")
	{
		fs.Position = 60; // this location contains the offset for the PE header
		UInt32 peoffset = br.ReadUInt32();

		fs.Position = peoffset + 4; // contains the architecture
		UInt16 machine = br.ReadUInt16();

		if (machine == 0x8664) // IMAGE_FILE_MACHINE_AMD64
			textBox1.Text = "AMD64";
		else if (machine == 0x014c) // IMAGE_FILE_MACHINE_I386
			textBox1.Text = "i386";
		else if (machine == 0x0200) // IMAGE_FILE_MACHINE_IA64
			textBox1.Text = "IA64";
		else
			textBox1.Text = "Unknown";
	}
	else
		textBox1.Text = "Invalid image";

	br.Close();
}

Open in new window


Probably use a scan function to find the office files too (only word or excel should be sufficient).

If you already know the systems are all 64 bits, you could easily check if the office files are in the folder "Program Files" or in "Program Files (x86)". The latter is of course 32 bits.
Avatar of askolits

ASKER

I am going to assume that I can just plug this into my VB Express program and it would work?
Well, even though I would consider myself a very experienced VBA programmer, when it comes to VB,? Uhmmm... not so good.
I know it's very similar and have been able to hack out some code now and then, but I'll need a bit more help here.

For example, to use OpenDialog1, do I need a particular library reference added?
Also. not really familiar with the curly bracket "{ }" symbols. I put that in VB and it has no idea what that is.
Also, the event function created when I add a button is:

Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button1.Click

which doesn't resemble your code.
ASKER CERTIFIED SOLUTION
Avatar of Kimputer
Kimputer

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
OK.

I got it to work. Although it seems odd that the responses in your code are , AMD64, i386 and IA64?
Does that mean the program is using those types of processing architectures? Or something like that?
Basically, AMD64 is ALWAYS 64 bits.
i386 is ALWAYS 32 bits.
IA64 you probably won't see around (unless you delve into special server software), it's written for the Intel Itanium CPU.
Just rename the string to whatever you want, just 32 or 64 bits is accurate enough.
Well, it works for me.
Thanks for your help and quick responses.
Thanks!!