From: Jeremy Bopp Date: 2010-10-20T22:38:41+09:00 Subject: Re: Messagebox on client side On 10/20/2010 7:33 AM, Amit Tomar wrote: > Hii all, > I used win32 api messagebox in ruby to generate a messagebox > but only server side am able to see is there any way to open it at > client side?? No, it is not possible. Your Ruby code is running on your server and therefore can only access the Win32 API on your server. It has no way to access the API on a client machine connecting to your server, and how would that work for a non-Windows client anyway? Do you need to use the Win32 API for this, or would a rough equivalent handled via javascript in the web browser of the client suffice? -Jeremy