Skip to main content

Posts

Office 2007 RibbonX resources

Custom UI Editor : Custom UI Editor for Open XML file format. XML Notepad 2007 provides a simple intuitive user interface for browsing and editing XML documents. 2007 Office System: XML Schema Reference RibbonX Resources blog by Savraj Dhanjal. Customizing the 2007 Office Fluent Ribbon for Developers ( Part 1 of 3) Customizing the 2007 Office Fluent Ribbon for Developers ( Part 2 of 3) Customizing the 2007 Office Fluent Ribbon for Developers ( Part 3 of 3) 2007 Office System Document: UI Style Guide for Solutions and Add Ins VSTO version 3.0 How To Create Office COM Add-Ins by Using VBA and Office Developer ~ts

Minimal Debian Lenny install on VirtualBox

Pre-requisite: - internet connection - Virtual Box installed on host machine. This exercise will be using Vista as host. As of this writing, Debian Lenny is still at testing stage. For this exercise we will use RC1, visit http://www.debian.org/releases/testing/ for the netinstall iso. Once download is done, create a new virtual machine using Virtual Box, use the following configuration: 512 MB Memory, 120 GB HD, use Intel PRO/1000T server for the network card. For the VirtualBox networking I am using host network configuration. Once VirtualBox guest configuration is set, start the guest machine and then mount the CD-ROM image. In installer boot menu, select Graphical Install. For "Chose the Language" screen, select English or your language of choice. For the country, select whichever you are currently in. In my case, I will be using Philippines. In "Keymap to use" select "American English" or whichever is much appropriate for your system. After this s

Minimal Ubuntu Gnome Intrepid install on Virtual Box

Pre-requisite: - internet connection - Virtual Box installed on host machine. This exercise will be using Vista as host. Download server edition of Ubuntu Intrepid 8.10 from the nearest mirror. Once done, create a new virtual machine using Virtual Box, use the following configuration: 512 MB Memory, 120 GB HD, enable PAE, use Intel PRO/1000T server network. Start virtual machine of the CD-ROM. During the install sequence, select F4. Select the option which mentions about virtual machine installation. Use the default options, reboot and login to the newly install minimal system. Update the system and install aptitude, say: username@hostname:/# apt-get update username@hostname:/# apt-get safe-upgrade username@hostname:/# apt-get install aptitude Then install minimal Gnome, thus say do: username@hostname:/# aptitude install xorg gnome-core gdm gdm-themes My first install of gnome-core didn't work well. Doing username@hostname:/# apt-get update username@hostname:/# apt-get sa

COM hooking research

This post is gonna be a work in progress. What I am trying to embark on is the possibility of inserting hooks to a running COM server to perform automated testing. I have seen applications tried to do this, like TestPartner, but it is crashing my application under test. Summary of available tools that may have a working COM server hooks: TestPartner   - they have ComSpy but this is crashing my application under test. COMslicer  - from the help file. COMslicer is a utility that displays information about COM/DCOM components’ activity. It reports all methods and properties called by a client of a COM component and shows values for input/output parameters. COMslicer also reports creation and destroying of COM objects as well as raising events by COM objects. It keeps track of reference counting and interfaces queried by a client. COMslicer works on Windows 98/Me/ NT4/2K. But it seems to me that the development of this tools has halted. A quick visit to their website does not event menti

Google maps on BlackBerry

Google have mobilized their Google Maps and should now be available in BlackBerry. Actually this has been available in BB eons ago (at least when talking about how fast things change in the Net). Unfortunately, not all cities have as good coverage as in the US. But it is still a nice to have application in your BB device, anyway if you stay in non-English region and you happen to not understand the local language or in some cases Google shows language that is not really the local language (like maybe your internet gateway is located somewhere else) then you can still force to view the English language, thus say: http://m.google.com/maps?hl=en ~ts