• Post Reply Bookmark Topic Watch Topic
  • New Topic
programming forums Java Mobile Certification Databases Caching Books Engineering Micro Controllers OS Languages Paradigms IDEs Build Tools Frameworks Application Servers Open Source This Site Careers Other Pie Elite all forums
this forum made possible by our volunteer staff, including ...
Marshals:
  • Campbell Ritchie
  • Jeanne Boyarsky
  • Ron McLeod
  • Paul Clapham
  • Liutauras Vilda
Sheriffs:
  • paul wheaton
  • Rob Spoor
  • Devaka Cooray
Saloon Keepers:
  • Stephan van Hulst
  • Tim Holloway
  • Carey Brown
  • Frits Walraven
  • Tim Moores
Bartenders:
  • Mikalai Zaikin

runtime native objects into browser

 
Greenhorn
Posts: 3
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
hi folks

pls help me in getting out of this below problem ............

i have a .exe file which is built using vb, which i want this exe file to be dynamically execuited into my browser

so i initialised a runtime object the code is below

Runtime runtime = Runtime.getRuntime();
runtime.exec("C:\\PIXTRAN\\DEMO\\SMPLVWN");

this above code is working fine and the file gets ececuited at runtime.

now i want this execuited file to be part(that is within the browser specified width and size) of the browser.



:roll: :roll:
 
Ranch Hand
Posts: 547
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
You want to display an executable inside your browser ?

This is not possible. A browser can handle HTML, some picture formats and various plugin stuff (e.g. Flash, Applets) but it is not to include arbitrary executables (no matter what language this executable is written in) in a page.


Pascal
 
siddayya math
Greenhorn
Posts: 3
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Thanku pascal for your reply i knew that this cannot be embedded into a browser but wath is confusing is that all other pdf , microsoft word etc all these applications can be embedded within a browser isnt....
 
Sheriff
Posts: 67746
173
Mac Mac OS X IntelliJ IDE jQuery TypeScript Java iOS
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Please reserve this forum for advanced Java questions.

Moved to the HTML forum.
 
Bear Bibeault
Sheriff
Posts: 67746
173
Mac Mac OS X IntelliJ IDE jQuery TypeScript Java iOS
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
"math siddayya math",

There aren't many rules that you need to worry about here on the Ranch, but one that we take very seriously regards the use of proper names. Please take a look at the JavaRanch Naming Policy and adjust your display name to match it.

In particular, your display name must be a first and a last name separated by a space character, and must not be obviously fictitious.

Thanks!
bear
JavaRanch Sheriff
[ November 23, 2006: Message edited by: Bear Bibeault ]
 
siddayya math
Greenhorn
Posts: 3
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
i apologise and have corrected it

thank u
 
reply
    Bookmark Topic Watch Topic
  • New Topic