How to call excel macro from java

since excel macro is vb code, since we can make a vb script file called from java and it calls excel macro

Example:
make a script file as content is

Dim objXL
Set objXL = CreateObject("Excel.Application")
With objXL
.Workbooks.Open ("File_Path")
.Application.Run "Macro_Name"
.Application.Quit
End With
Set objXL = Nothing

How to install a J2ME aplication on a mobile device

There are lots of ways to install MIDlets on a mobile phone. You can use the InfraRed, Bluetooth, Serial or OTA to install jar/jad files.

Serial, Infrared and Bluetooth

To download jad/jar files from PC and transfer to your device can be done via serial cable or infra-red link or bluetooth.

OTA Provisioning

The term Application Management Software (AMS) is generally used to describe the software components that take on the responsibility of locating MIDlet suites, how MIDlet suites will be installed on a cell phone or a PDA, and what facilities are to be provided to allow the user to select and launch an installed MIDlet or to remove MIDlet suites from the device.

With OTA provisioning, MIDlet suites are placed on web servers and provided a hypertext links to them. A user activates the links to download the MIDlets to a cell phone via a WAP or Internet microbrowser.

Solution of Python is installed but not executing

PROBLEM:-

python is installed(ActivePython)but fail to start when executing.and error is like this,

On failing startup PythonWin (2.6.1.1) gives the following info:

Problem signature:
Problem Event Name: APPCRASH
Application Name: Pythonwin.exe
Application Version: 0.0.0.0
Application Timestamp: 4939a87d
Fault Module Name: mfc90.dll
Fault Module Version: 9.0.21022.8
Fault Module Timestamp: 47316016
Exception Code: c0000005
Exception Offset: 0004453f
OS Version: 6.0.6001.2.1.0.256.4
Locale ID: 1035
Additional Information 1: 2795
Additional Information 2: e7b3c8fd00d80656b5c44506742e8ab9
Additional Information 3: 92f4
Additional Information 4: 877b55c7ae806e613e04d568a662cda7
For every new user account the behaviour is similar, at first program runs ok but not after browsing the PythonPath.

Simple uninstalling+installing does not remove the problem, but if one deletes the Python-related registry entries for current user after uninstall, PythonWin starts again.