CodeGuru Home VC++ / MFC / C++ .NET / C# Visual Basic VB Forums Developer.com
Results 1 to 2 of 2
  1. #1
    Join Date
    Sep 2000
    Posts
    22

    Making exe from class file

    can you make exe from class file?
    please help.


  2. #2
    Join Date
    Mar 2000
    Posts
    10

    Re: Making exe from class file

    Hi!
    Do you have to make an exe file? Because if you do, you'll loose the platform independant capability. But I read somewhere that there is something called as "jexegen" which can do so. However, the other way to get around the task is to create a batch file and you can have a short-cut to it...your batch file would be something like
    @echo off
    @start java classname
    This should do it.
    Pls rate this if it helps you.


Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  





Click Here to Expand Forum to Full Width

Featured