Skip to content
  • Categories
  • Recent
  • Tags
  • Popular
  • World
  • Users
  • Groups
Skins
  • Light
  • Cerulean
  • Cosmo
  • Flatly
  • Journal
  • Litera
  • Lumen
  • Lux
  • Materia
  • Minty
  • Morph
  • Pulse
  • Sandstone
  • Simplex
  • Sketchy
  • Spacelab
  • United
  • Yeti
  • Zephyr
  • Dark
  • Cyborg
  • Darkly
  • Quartz
  • Slate
  • Solar
  • Superhero
  • Vapor

  • Default (No Skin)
  • No Skin
Collapse
Code Project
  1. Home
  2. General Programming
  3. Visual Basic
  4. Application Not Working!!

Application Not Working!!

Scheduled Pinned Locked Moved Visual Basic
csharphelpvisual-studioquestion
10 Posts 5 Posters 0 Views 1 Watching
  • Oldest to Newest
  • Newest to Oldest
  • Most Votes
Reply
  • Reply as topic
Log in to reply
This topic has been deleted. Only users with topic management privileges can see it.
  • P Offline
    P Offline
    parth p
    wrote on last edited by
    #1

    Hi there, I am working on project using Visual Studio 2005 VB.NET. The problem is that when I try to run Application in non .NET platform (i.e. Windows XP but .net is not installed) it does not run(I know it won't)! Is there any way to develop non .net application in Visual Studio 2005??? It's urgent because I'm really stuck on this. Thanks ----------------------- Parth Patel

    C L 2 Replies Last reply
    0
    • P parth p

      Hi there, I am working on project using Visual Studio 2005 VB.NET. The problem is that when I try to run Application in non .NET platform (i.e. Windows XP but .net is not installed) it does not run(I know it won't)! Is there any way to develop non .net application in Visual Studio 2005??? It's urgent because I'm really stuck on this. Thanks ----------------------- Parth Patel

      C Offline
      C Offline
      Christian Graus
      wrote on last edited by
      #2

      killerp wrote:

      Is there any way to develop non .net application in Visual Studio 2005???

      Yes - use C++ and make sure you don't use C++/CLI ( use MFC instead )

      Christian Graus - Microsoft MVP - C++ "also I don't think "TranslateOneToTwoBillion OneHundredAndFortySevenMillion FourHundredAndEightyThreeThousand SixHundredAndFortySeven()" is a very good choice for a function name" - SpacixOne ( offering help to someone who really needed it ) ( spaces added for the benefit of people running at < 1280x1024 )

      P 1 Reply Last reply
      0
      • C Christian Graus

        killerp wrote:

        Is there any way to develop non .net application in Visual Studio 2005???

        Yes - use C++ and make sure you don't use C++/CLI ( use MFC instead )

        Christian Graus - Microsoft MVP - C++ "also I don't think "TranslateOneToTwoBillion OneHundredAndFortySevenMillion FourHundredAndEightyThreeThousand SixHundredAndFortySeven()" is a very good choice for a function name" - SpacixOne ( offering help to someone who really needed it ) ( spaces added for the benefit of people running at < 1280x1024 )

        P Offline
        P Offline
        parth p
        wrote on last edited by
        #3

        Thanks, Christian Graus But for me it would be just waste of time and everything if i develop this application again C++. This software is for school kids and the network do not have .NET installed on normal PCs and unfortunately as it has more than 150 workstations the Network Admin has refused to install it, which has just messed up everything... So before I go any further I just wanted to know if I can do it anyway around!!

        D J 2 Replies Last reply
        0
        • P parth p

          Thanks, Christian Graus But for me it would be just waste of time and everything if i develop this application again C++. This software is for school kids and the network do not have .NET installed on normal PCs and unfortunately as it has more than 150 workstations the Network Admin has refused to install it, which has just messed up everything... So before I go any further I just wanted to know if I can do it anyway around!!

          D Offline
          D Offline
          Dave Kreskowiak
          wrote on last edited by
          #4

          You could use one of the few products that compiles the required parts of the .NET Framework into your .EXE. But, they're very expensive to buy and there are no "free" versions. If money is an issue, you simply have no alternatives. Either they install the .NET Framework, or you start rewriting in C++.

          A guide to posting questions on CodeProject[^]
          Dave Kreskowiak Microsoft MVP Visual Developer - Visual Basic
               2006, 2007

          P 1 Reply Last reply
          0
          • P parth p

            Thanks, Christian Graus But for me it would be just waste of time and everything if i develop this application again C++. This software is for school kids and the network do not have .NET installed on normal PCs and unfortunately as it has more than 150 workstations the Network Admin has refused to install it, which has just messed up everything... So before I go any further I just wanted to know if I can do it anyway around!!

            J Offline
            J Offline
            J 0
            wrote on last edited by
            #5

            You could always create a setup package that will install the .NET Framework along with your app on those machines.

            D 1 Reply Last reply
            0
            • D Dave Kreskowiak

              You could use one of the few products that compiles the required parts of the .NET Framework into your .EXE. But, they're very expensive to buy and there are no "free" versions. If money is an issue, you simply have no alternatives. Either they install the .NET Framework, or you start rewriting in C++.

              A guide to posting questions on CodeProject[^]
              Dave Kreskowiak Microsoft MVP Visual Developer - Visual Basic
                   2006, 2007

              P Offline
              P Offline
              parth p
              wrote on last edited by
              #6

              Thanks for your reply. Do you know any software that will do what you said? Compile .NET code into EXE? Becuase I will then have to take decision.

              D 1 Reply Last reply
              0
              • J J 0

                You could always create a setup package that will install the .NET Framework along with your app on those machines.

                D Offline
                D Offline
                Dave Kreskowiak
                wrote on last edited by
                #7

                That decision is up to the people who own the machines, not the application. If they don't want to install the .NET Framework, you can't force them to do it.

                A guide to posting questions on CodeProject[^]
                Dave Kreskowiak Microsoft MVP Visual Developer - Visual Basic
                     2006, 2007

                1 Reply Last reply
                0
                • P parth p

                  Thanks for your reply. Do you know any software that will do what you said? Compile .NET code into EXE? Becuase I will then have to take decision.

                  D Offline
                  D Offline
                  Dave Kreskowiak
                  wrote on last edited by
                  #8

                  Sure, Salamander[^] is only about $1300.

                  A guide to posting questions on CodeProject[^]
                  Dave Kreskowiak Microsoft MVP Visual Developer - Visual Basic
                       2006, 2007

                  1 Reply Last reply
                  0
                  • P parth p

                    Hi there, I am working on project using Visual Studio 2005 VB.NET. The problem is that when I try to run Application in non .NET platform (i.e. Windows XP but .net is not installed) it does not run(I know it won't)! Is there any way to develop non .net application in Visual Studio 2005??? It's urgent because I'm really stuck on this. Thanks ----------------------- Parth Patel

                    L Offline
                    L Offline
                    Lost User
                    wrote on last edited by
                    #9

                    Parth, If you are a VB developer, you "could" always use VB 6.0. This would give you the ability to create an .exe that is not .NET framework dependent. However, it might be easier to simply sell the customer on installing the .NET framework since it won't impact their computer or installed programs and will provide them a migration path to Vista with your program.

                    Cheers, Karl My Blog | Mole's Home Page | How To Create Screen Capture Videos For Your Articles

                    Just a grain of sand on the worlds beaches.

                    P 1 Reply Last reply
                    0
                    • L Lost User

                      Parth, If you are a VB developer, you "could" always use VB 6.0. This would give you the ability to create an .exe that is not .NET framework dependent. However, it might be easier to simply sell the customer on installing the .NET framework since it won't impact their computer or installed programs and will provide them a migration path to Vista with your program.

                      Cheers, Karl My Blog | Mole's Home Page | How To Create Screen Capture Videos For Your Articles

                      Just a grain of sand on the worlds beaches.

                      P Offline
                      P Offline
                      parth p
                      wrote on last edited by
                      #10

                      Thank you all for your support & quick reply. I guess i am gonna make it again using C++ since it's nearly impossible to do what i wanted to.. Once again thank you all. :) :) :) :)

                      1 Reply Last reply
                      0
                      Reply
                      • Reply as topic
                      Log in to reply
                      • Oldest to Newest
                      • Newest to Oldest
                      • Most Votes


                      • Login

                      • Don't have an account? Register

                      • Login or register to search.
                      • First post
                        Last post
                      0
                      • Categories
                      • Recent
                      • Tags
                      • Popular
                      • World
                      • Users
                      • Groups