|
web
newsgroups
|
|||||||||||||||||||||||
|
|||||||||||||||||||||||
deploy window applicationHi, I want o deploy window app to another PC, which does not .Net 2.0
component. The window app has some .Net 2.0 support, so how to deplot the app to that PC? Thanks Let me first correct what you need (if I got it right)
You want to deploy Windows Application written for the .NET 2.0 framework You need to have the .NET 2.0 installed on the destination computer You may download it free from Microsoft and it easy to install To verify whether it is already installed go to:Control Panel/Administrative tool and if it is installed it will be listed there HTH, Samuel Shulman Show quoteHide quote "martin1" <mart***@discussions.microsoft.com> wrote in message news:672307EE-8B98-4473-AB78-6A91916455C8@microsoft.com... > Hi, I want o deploy window app to another PC, which does not .Net 2.0 > component. The window app has some .Net 2.0 support, so how to deplot the > app > to that PC? > > Thanks Thank you. Samuel,
So if .Net 2.0 install on destination PC, just copy app's .exe file from dev PC to destination PC, and then run the .exe file, is this correct? Show quoteHide quote "Samuel Shulman" wrote: > Let me first correct what you need (if I got it right) > > You want to deploy Windows Application written for the .NET 2.0 framework > > You need to have the .NET 2.0 installed on the destination computer > > You may download it free from Microsoft and it easy to install > > To verify whether it is already installed go to:Control Panel/Administrative > tool and if it is installed it will be listed there > > > HTH, > Samuel Shulman > > "martin1" <mart***@discussions.microsoft.com> wrote in message > news:672307EE-8B98-4473-AB78-6A91916455C8@microsoft.com... > > Hi, I want o deploy window app to another PC, which does not .Net 2.0 > > component. The window app has some .Net 2.0 support, so how to deplot the > > app > > to that PC? > > > > Thanks > > > Don't forget about all the .dll files that you may be using. In general all
you need to do is copy the Bin folder And assuming you are not using .dll files that require registration Cheers, Samuel Shulman Show quoteHide quote "martin1" <mart***@discussions.microsoft.com> wrote in message news:74E34F4D-B766-4B34-8DC9-BF75D23D260A@microsoft.com... > Thank you. Samuel, > > So if .Net 2.0 install on destination PC, just copy app's .exe file from > dev > PC to destination PC, and then run the .exe file, is this correct? > > "Samuel Shulman" wrote: > >> Let me first correct what you need (if I got it right) >> >> You want to deploy Windows Application written for the .NET 2.0 framework >> >> You need to have the .NET 2.0 installed on the destination computer >> >> You may download it free from Microsoft and it easy to install >> >> To verify whether it is already installed go to:Control >> Panel/Administrative >> tool and if it is installed it will be listed there >> >> >> HTH, >> Samuel Shulman >> >> "martin1" <mart***@discussions.microsoft.com> wrote in message >> news:672307EE-8B98-4473-AB78-6A91916455C8@microsoft.com... >> > Hi, I want o deploy window app to another PC, which does not .Net 2.0 >> > component. The window app has some .Net 2.0 support, so how to deplot >> > the >> > app >> > to that PC? >> > >> > Thanks >> >> >> no .dll file is used.
another question is the bin folder has 2 folders, one is debug, where is ..exe file,the another one is release and it is nothing there, so need copy only debug folder? Thanks Show quoteHide quote "Samuel Shulman" wrote: > Don't forget about all the .dll files that you may be using. In general all > you need to do is copy the Bin folder > > And assuming you are not using .dll files that require registration > > Cheers, > Samuel Shulman > > "martin1" <mart***@discussions.microsoft.com> wrote in message > news:74E34F4D-B766-4B34-8DC9-BF75D23D260A@microsoft.com... > > Thank you. Samuel, > > > > So if .Net 2.0 install on destination PC, just copy app's .exe file from > > dev > > PC to destination PC, and then run the .exe file, is this correct? > > > > "Samuel Shulman" wrote: > > > >> Let me first correct what you need (if I got it right) > >> > >> You want to deploy Windows Application written for the .NET 2.0 framework > >> > >> You need to have the .NET 2.0 installed on the destination computer > >> > >> You may download it free from Microsoft and it easy to install > >> > >> To verify whether it is already installed go to:Control > >> Panel/Administrative > >> tool and if it is installed it will be listed there > >> > >> > >> HTH, > >> Samuel Shulman > >> > >> "martin1" <mart***@discussions.microsoft.com> wrote in message > >> news:672307EE-8B98-4473-AB78-6A91916455C8@microsoft.com... > >> > Hi, I want o deploy window app to another PC, which does not .Net 2.0 > >> > component. The window app has some .Net 2.0 support, so how to deplot > >> > the > >> > app > >> > to that PC? > >> > > >> > Thanks > >> > >> > >> > > > First Debug and release are modes which you can choose how to compile the
program Normally debug is used for testing and release is used for the normal use of the program So the answer to your question is first change the Mode to Release then compile/build the program again and then you will find that this bin folder will have the program (.exe) and possibly some dlls (if you find them there you will need them) HTH, Samuel Shulman Show quoteHide quote "martin1" <mart***@discussions.microsoft.com> wrote in message news:7D8C1D35-3FE0-49EA-A1D9-0FE8042A86C3@microsoft.com... > no .dll file is used. > > another question is the bin folder has 2 folders, one is debug, where is > .exe file,the another one is release and it is nothing there, so need copy > only debug folder? Thanks > > "Samuel Shulman" wrote: > >> Don't forget about all the .dll files that you may be using. In general >> all >> you need to do is copy the Bin folder >> >> And assuming you are not using .dll files that require registration >> >> Cheers, >> Samuel Shulman >> >> "martin1" <mart***@discussions.microsoft.com> wrote in message >> news:74E34F4D-B766-4B34-8DC9-BF75D23D260A@microsoft.com... >> > Thank you. Samuel, >> > >> > So if .Net 2.0 install on destination PC, just copy app's .exe file >> > from >> > dev >> > PC to destination PC, and then run the .exe file, is this correct? >> > >> > "Samuel Shulman" wrote: >> > >> >> Let me first correct what you need (if I got it right) >> >> >> >> You want to deploy Windows Application written for the .NET 2.0 >> >> framework >> >> >> >> You need to have the .NET 2.0 installed on the destination computer >> >> >> >> You may download it free from Microsoft and it easy to install >> >> >> >> To verify whether it is already installed go to:Control >> >> Panel/Administrative >> >> tool and if it is installed it will be listed there >> >> >> >> >> >> HTH, >> >> Samuel Shulman >> >> >> >> "martin1" <mart***@discussions.microsoft.com> wrote in message >> >> news:672307EE-8B98-4473-AB78-6A91916455C8@microsoft.com... >> >> > Hi, I want o deploy window app to another PC, which does not .Net >> >> > 2.0 >> >> > component. The window app has some .Net 2.0 support, so how to >> >> > deplot >> >> > the >> >> > app >> >> > to that PC? >> >> > >> >> > Thanks >> >> >> >> >> >> >> >> >> Thank you, Samuel,
when I run Build and rebuild, the .exe file generates in the release folder. Another question is how to change mode to release? Show quoteHide quote "Samuel Shulman" wrote: > First Debug and release are modes which you can choose how to compile the > program > > Normally debug is used for testing and release is used for the normal use of > the program > > So the answer to your question is first change the Mode to Release then > compile/build the program again and then you will find that this bin folder > will have the program (.exe) and possibly some dlls (if you find them there > you will need them) > > > HTH, > Samuel Shulman > > > "martin1" <mart***@discussions.microsoft.com> wrote in message > news:7D8C1D35-3FE0-49EA-A1D9-0FE8042A86C3@microsoft.com... > > no .dll file is used. > > > > another question is the bin folder has 2 folders, one is debug, where is > > .exe file,the another one is release and it is nothing there, so need copy > > only debug folder? Thanks > > > > "Samuel Shulman" wrote: > > > >> Don't forget about all the .dll files that you may be using. In general > >> all > >> you need to do is copy the Bin folder > >> > >> And assuming you are not using .dll files that require registration > >> > >> Cheers, > >> Samuel Shulman > >> > >> "martin1" <mart***@discussions.microsoft.com> wrote in message > >> news:74E34F4D-B766-4B34-8DC9-BF75D23D260A@microsoft.com... > >> > Thank you. Samuel, > >> > > >> > So if .Net 2.0 install on destination PC, just copy app's .exe file > >> > from > >> > dev > >> > PC to destination PC, and then run the .exe file, is this correct? > >> > > >> > "Samuel Shulman" wrote: > >> > > >> >> Let me first correct what you need (if I got it right) > >> >> > >> >> You want to deploy Windows Application written for the .NET 2.0 > >> >> framework > >> >> > >> >> You need to have the .NET 2.0 installed on the destination computer > >> >> > >> >> You may download it free from Microsoft and it easy to install > >> >> > >> >> To verify whether it is already installed go to:Control > >> >> Panel/Administrative > >> >> tool and if it is installed it will be listed there > >> >> > >> >> > >> >> HTH, > >> >> Samuel Shulman > >> >> > >> >> "martin1" <mart***@discussions.microsoft.com> wrote in message > >> >> news:672307EE-8B98-4473-AB78-6A91916455C8@microsoft.com... > >> >> > Hi, I want o deploy window app to another PC, which does not .Net > >> >> > 2.0 > >> >> > component. The window app has some .Net 2.0 support, so how to > >> >> > deplot > >> >> > the > >> >> > app > >> >> > to that PC? > >> >> > > >> >> > Thanks > >> >> > >> >> > >> >> > >> > >> > >> > > > What VS version are you using
Is it .NET 2005 Show quoteHide quote "martin1" <mart***@discussions.microsoft.com> wrote in message news:996F9D17-3A72-42AE-ACD8-563C5A753595@microsoft.com... > Thank you, Samuel, > > when I run Build and rebuild, the .exe file generates in the release > folder. > Another question is how to change mode to release? > > "Samuel Shulman" wrote: > >> First Debug and release are modes which you can choose how to compile the >> program >> >> Normally debug is used for testing and release is used for the normal use >> of >> the program >> >> So the answer to your question is first change the Mode to Release then >> compile/build the program again and then you will find that this bin >> folder >> will have the program (.exe) and possibly some dlls (if you find them >> there >> you will need them) >> >> >> HTH, >> Samuel Shulman >> >> >> "martin1" <mart***@discussions.microsoft.com> wrote in message >> news:7D8C1D35-3FE0-49EA-A1D9-0FE8042A86C3@microsoft.com... >> > no .dll file is used. >> > >> > another question is the bin folder has 2 folders, one is debug, where >> > is >> > .exe file,the another one is release and it is nothing there, so need >> > copy >> > only debug folder? Thanks >> > >> > "Samuel Shulman" wrote: >> > >> >> Don't forget about all the .dll files that you may be using. In >> >> general >> >> all >> >> you need to do is copy the Bin folder >> >> >> >> And assuming you are not using .dll files that require registration >> >> >> >> Cheers, >> >> Samuel Shulman >> >> >> >> "martin1" <mart***@discussions.microsoft.com> wrote in message >> >> news:74E34F4D-B766-4B34-8DC9-BF75D23D260A@microsoft.com... >> >> > Thank you. Samuel, >> >> > >> >> > So if .Net 2.0 install on destination PC, just copy app's .exe file >> >> > from >> >> > dev >> >> > PC to destination PC, and then run the .exe file, is this correct? >> >> > >> >> > "Samuel Shulman" wrote: >> >> > >> >> >> Let me first correct what you need (if I got it right) >> >> >> >> >> >> You want to deploy Windows Application written for the .NET 2.0 >> >> >> framework >> >> >> >> >> >> You need to have the .NET 2.0 installed on the destination computer >> >> >> >> >> >> You may download it free from Microsoft and it easy to install >> >> >> >> >> >> To verify whether it is already installed go to:Control >> >> >> Panel/Administrative >> >> >> tool and if it is installed it will be listed there >> >> >> >> >> >> >> >> >> HTH, >> >> >> Samuel Shulman >> >> >> >> >> >> "martin1" <mart***@discussions.microsoft.com> wrote in message >> >> >> news:672307EE-8B98-4473-AB78-6A91916455C8@microsoft.com... >> >> >> > Hi, I want o deploy window app to another PC, which does not .Net >> >> >> > 2.0 >> >> >> > component. The window app has some .Net 2.0 support, so how to >> >> >> > deplot >> >> >> > the >> >> >> > app >> >> >> > to that PC? >> >> >> > >> >> >> > Thanks >> >> >> >> >> >> >> >> >> >> >> >> >> >> >> >> >> >> yes, it is .Net 2005
Show quoteHide quote "Samuel Shulman" wrote: > What VS version are you using > > Is it .NET 2005 > > > "martin1" <mart***@discussions.microsoft.com> wrote in message > news:996F9D17-3A72-42AE-ACD8-563C5A753595@microsoft.com... > > Thank you, Samuel, > > > > when I run Build and rebuild, the .exe file generates in the release > > folder. > > Another question is how to change mode to release? > > > > "Samuel Shulman" wrote: > > > >> First Debug and release are modes which you can choose how to compile the > >> program > >> > >> Normally debug is used for testing and release is used for the normal use > >> of > >> the program > >> > >> So the answer to your question is first change the Mode to Release then > >> compile/build the program again and then you will find that this bin > >> folder > >> will have the program (.exe) and possibly some dlls (if you find them > >> there > >> you will need them) > >> > >> > >> HTH, > >> Samuel Shulman > >> > >> > >> "martin1" <mart***@discussions.microsoft.com> wrote in message > >> news:7D8C1D35-3FE0-49EA-A1D9-0FE8042A86C3@microsoft.com... > >> > no .dll file is used. > >> > > >> > another question is the bin folder has 2 folders, one is debug, where > >> > is > >> > .exe file,the another one is release and it is nothing there, so need > >> > copy > >> > only debug folder? Thanks > >> > > >> > "Samuel Shulman" wrote: > >> > > >> >> Don't forget about all the .dll files that you may be using. In > >> >> general > >> >> all > >> >> you need to do is copy the Bin folder > >> >> > >> >> And assuming you are not using .dll files that require registration > >> >> > >> >> Cheers, > >> >> Samuel Shulman > >> >> > >> >> "martin1" <mart***@discussions.microsoft.com> wrote in message > >> >> news:74E34F4D-B766-4B34-8DC9-BF75D23D260A@microsoft.com... > >> >> > Thank you. Samuel, > >> >> > > >> >> > So if .Net 2.0 install on destination PC, just copy app's .exe file > >> >> > from > >> >> > dev > >> >> > PC to destination PC, and then run the .exe file, is this correct? > >> >> > > >> >> > "Samuel Shulman" wrote: > >> >> > > >> >> >> Let me first correct what you need (if I got it right) > >> >> >> > >> >> >> You want to deploy Windows Application written for the .NET 2.0 > >> >> >> framework > >> >> >> > >> >> >> You need to have the .NET 2.0 installed on the destination computer > >> >> >> > >> >> >> You may download it free from Microsoft and it easy to install > >> >> >> > >> >> >> To verify whether it is already installed go to:Control > >> >> >> Panel/Administrative > >> >> >> tool and if it is installed it will be listed there > >> >> >> > >> >> >> > >> >> >> HTH, > >> >> >> Samuel Shulman > >> >> >> > >> >> >> "martin1" <mart***@discussions.microsoft.com> wrote in message > >> >> >> news:672307EE-8B98-4473-AB78-6A91916455C8@microsoft.com... > >> >> >> > Hi, I want o deploy window app to another PC, which does not .Net > >> >> >> > 2.0 > >> >> >> > component. The window app has some .Net 2.0 support, so how to > >> >> >> > deplot > >> >> >> > the > >> >> >> > app > >> >> >> > to that PC? > >> >> >> > > >> >> >> > Thanks > >> >> >> > >> >> >> > >> >> >> > >> >> > >> >> > >> >> > >> > >> > >> > > > I was surprised that I couldn't find where to change it. I will post a
question and I suggest you should follow it Samuel Show quoteHide quote "martin1" <mart***@discussions.microsoft.com> wrote in message news:EFA81811-0359-41AD-AB49-E4D294B139E3@microsoft.com... > yes, it is .Net 2005 > > "Samuel Shulman" wrote: > >> What VS version are you using >> >> Is it .NET 2005 >> >> >> "martin1" <mart***@discussions.microsoft.com> wrote in message >> news:996F9D17-3A72-42AE-ACD8-563C5A753595@microsoft.com... >> > Thank you, Samuel, >> > >> > when I run Build and rebuild, the .exe file generates in the release >> > folder. >> > Another question is how to change mode to release? >> > >> > "Samuel Shulman" wrote: >> > >> >> First Debug and release are modes which you can choose how to compile >> >> the >> >> program >> >> >> >> Normally debug is used for testing and release is used for the normal >> >> use >> >> of >> >> the program >> >> >> >> So the answer to your question is first change the Mode to Release >> >> then >> >> compile/build the program again and then you will find that this bin >> >> folder >> >> will have the program (.exe) and possibly some dlls (if you find them >> >> there >> >> you will need them) >> >> >> >> >> >> HTH, >> >> Samuel Shulman >> >> >> >> >> >> "martin1" <mart***@discussions.microsoft.com> wrote in message >> >> news:7D8C1D35-3FE0-49EA-A1D9-0FE8042A86C3@microsoft.com... >> >> > no .dll file is used. >> >> > >> >> > another question is the bin folder has 2 folders, one is debug, >> >> > where >> >> > is >> >> > .exe file,the another one is release and it is nothing there, so >> >> > need >> >> > copy >> >> > only debug folder? Thanks >> >> > >> >> > "Samuel Shulman" wrote: >> >> > >> >> >> Don't forget about all the .dll files that you may be using. In >> >> >> general >> >> >> all >> >> >> you need to do is copy the Bin folder >> >> >> >> >> >> And assuming you are not using .dll files that require registration >> >> >> >> >> >> Cheers, >> >> >> Samuel Shulman >> >> >> >> >> >> "martin1" <mart***@discussions.microsoft.com> wrote in message >> >> >> news:74E34F4D-B766-4B34-8DC9-BF75D23D260A@microsoft.com... >> >> >> > Thank you. Samuel, >> >> >> > >> >> >> > So if .Net 2.0 install on destination PC, just copy app's .exe >> >> >> > file >> >> >> > from >> >> >> > dev >> >> >> > PC to destination PC, and then run the .exe file, is this >> >> >> > correct? >> >> >> > >> >> >> > "Samuel Shulman" wrote: >> >> >> > >> >> >> >> Let me first correct what you need (if I got it right) >> >> >> >> >> >> >> >> You want to deploy Windows Application written for the .NET 2.0 >> >> >> >> framework >> >> >> >> >> >> >> >> You need to have the .NET 2.0 installed on the destination >> >> >> >> computer >> >> >> >> >> >> >> >> You may download it free from Microsoft and it easy to install >> >> >> >> >> >> >> >> To verify whether it is already installed go to:Control >> >> >> >> Panel/Administrative >> >> >> >> tool and if it is installed it will be listed there >> >> >> >> >> >> >> >> >> >> >> >> HTH, >> >> >> >> Samuel Shulman >> >> >> >> >> >> >> >> "martin1" <mart***@discussions.microsoft.com> wrote in message >> >> >> >> news:672307EE-8B98-4473-AB78-6A91916455C8@microsoft.com... >> >> >> >> > Hi, I want o deploy window app to another PC, which does not >> >> >> >> > .Net >> >> >> >> > 2.0 >> >> >> >> > component. The window app has some .Net 2.0 support, so how to >> >> >> >> > deplot >> >> >> >> > the >> >> >> >> > app >> >> >> >> > to that PC? >> >> >> >> > >> >> >> >> > Thanks >> >> >> >> >> >> >> >> >> >> >> >> >> >> >> >> >> >> >> >> >> >> >> >> >> >> >> >> >> >> it is VB. NET 2005
Show quoteHide quote "Samuel Shulman" wrote: > I was surprised that I couldn't find where to change it. I will post a > question and I suggest you should follow it > > Samuel > > "martin1" <mart***@discussions.microsoft.com> wrote in message > news:EFA81811-0359-41AD-AB49-E4D294B139E3@microsoft.com... > > yes, it is .Net 2005 > > > > "Samuel Shulman" wrote: > > > >> What VS version are you using > >> > >> Is it .NET 2005 > >> > >> > >> "martin1" <mart***@discussions.microsoft.com> wrote in message > >> news:996F9D17-3A72-42AE-ACD8-563C5A753595@microsoft.com... > >> > Thank you, Samuel, > >> > > >> > when I run Build and rebuild, the .exe file generates in the release > >> > folder. > >> > Another question is how to change mode to release? > >> > > >> > "Samuel Shulman" wrote: > >> > > >> >> First Debug and release are modes which you can choose how to compile > >> >> the > >> >> program > >> >> > >> >> Normally debug is used for testing and release is used for the normal > >> >> use > >> >> of > >> >> the program > >> >> > >> >> So the answer to your question is first change the Mode to Release > >> >> then > >> >> compile/build the program again and then you will find that this bin > >> >> folder > >> >> will have the program (.exe) and possibly some dlls (if you find them > >> >> there > >> >> you will need them) > >> >> > >> >> > >> >> HTH, > >> >> Samuel Shulman > >> >> > >> >> > >> >> "martin1" <mart***@discussions.microsoft.com> wrote in message > >> >> news:7D8C1D35-3FE0-49EA-A1D9-0FE8042A86C3@microsoft.com... > >> >> > no .dll file is used. > >> >> > > >> >> > another question is the bin folder has 2 folders, one is debug, > >> >> > where > >> >> > is > >> >> > .exe file,the another one is release and it is nothing there, so > >> >> > need > >> >> > copy > >> >> > only debug folder? Thanks > >> >> > > >> >> > "Samuel Shulman" wrote: > >> >> > > >> >> >> Don't forget about all the .dll files that you may be using. In > >> >> >> general > >> >> >> all > >> >> >> you need to do is copy the Bin folder > >> >> >> > >> >> >> And assuming you are not using .dll files that require registration > >> >> >> > >> >> >> Cheers, > >> >> >> Samuel Shulman > >> >> >> > >> >> >> "martin1" <mart***@discussions.microsoft.com> wrote in message > >> >> >> news:74E34F4D-B766-4B34-8DC9-BF75D23D260A@microsoft.com... > >> >> >> > Thank you. Samuel, > >> >> >> > > >> >> >> > So if .Net 2.0 install on destination PC, just copy app's .exe > >> >> >> > file > >> >> >> > from > >> >> >> > dev > >> >> >> > PC to destination PC, and then run the .exe file, is this > >> >> >> > correct? > >> >> >> > > >> >> >> > "Samuel Shulman" wrote: > >> >> >> > > >> >> >> >> Let me first correct what you need (if I got it right) > >> >> >> >> > >> >> >> >> You want to deploy Windows Application written for the .NET 2.0 > >> >> >> >> framework > >> >> >> >> > >> >> >> >> You need to have the .NET 2.0 installed on the destination > >> >> >> >> computer > >> >> >> >> > >> >> >> >> You may download it free from Microsoft and it easy to install > >> >> >> >> > >> >> >> >> To verify whether it is already installed go to:Control > >> >> >> >> Panel/Administrative > >> >> >> >> tool and if it is installed it will be listed there > >> >> >> >> > >> >> >> >> > >> >> >> >> HTH, > >> >> >> >> Samuel Shulman > >> >> >> >> > >> >> >> >> "martin1" <mart***@discussions.microsoft.com> wrote in message > >> >> >> >> news:672307EE-8B98-4473-AB78-6A91916455C8@microsoft.com... > >> >> >> >> > Hi, I want o deploy window app to another PC, which does not > >> >> >> >> > .Net > >> >> >> >> > 2.0 > >> >> >> >> > component. The window app has some .Net 2.0 support, so how to > >> >> >> >> > deplot > >> >> >> >> > the > >> >> >> >> > app > >> >> >> >> > to that PC? > >> >> >> >> > > >> >> >> >> > Thanks > >> >> >> >> > >> >> >> >> > >> >> >> >> > >> >> >> > >> >> >> > >> >> >> > >> >> > >> >> > >> >> > >> > >> > >> > > > Based on the feeback that I got it is automatic so you don't need to chage
the mode All you can do (and I am not sure that make any difference) is go to Project/Properties/ Then select the Compile tab and change the 'Buils Output Path: ' Cheers, Samuel Shulman Show quoteHide quote "martin1" <mart***@discussions.microsoft.com> wrote in message news:D8886FBB-A691-4072-A315-7B112B7EEE97@microsoft.com... > it is VB. NET 2005 > > "Samuel Shulman" wrote: > >> I was surprised that I couldn't find where to change it. I will post a >> question and I suggest you should follow it >> >> Samuel >> >> "martin1" <mart***@discussions.microsoft.com> wrote in message >> news:EFA81811-0359-41AD-AB49-E4D294B139E3@microsoft.com... >> > yes, it is .Net 2005 >> > >> > "Samuel Shulman" wrote: >> > >> >> What VS version are you using >> >> >> >> Is it .NET 2005 >> >> >> >> >> >> "martin1" <mart***@discussions.microsoft.com> wrote in message >> >> news:996F9D17-3A72-42AE-ACD8-563C5A753595@microsoft.com... >> >> > Thank you, Samuel, >> >> > >> >> > when I run Build and rebuild, the .exe file generates in the release >> >> > folder. >> >> > Another question is how to change mode to release? >> >> > >> >> > "Samuel Shulman" wrote: >> >> > >> >> >> First Debug and release are modes which you can choose how to >> >> >> compile >> >> >> the >> >> >> program >> >> >> >> >> >> Normally debug is used for testing and release is used for the >> >> >> normal >> >> >> use >> >> >> of >> >> >> the program >> >> >> >> >> >> So the answer to your question is first change the Mode to Release >> >> >> then >> >> >> compile/build the program again and then you will find that this >> >> >> bin >> >> >> folder >> >> >> will have the program (.exe) and possibly some dlls (if you find >> >> >> them >> >> >> there >> >> >> you will need them) >> >> >> >> >> >> >> >> >> HTH, >> >> >> Samuel Shulman >> >> >> >> >> >> >> >> >> "martin1" <mart***@discussions.microsoft.com> wrote in message >> >> >> news:7D8C1D35-3FE0-49EA-A1D9-0FE8042A86C3@microsoft.com... >> >> >> > no .dll file is used. >> >> >> > >> >> >> > another question is the bin folder has 2 folders, one is debug, >> >> >> > where >> >> >> > is >> >> >> > .exe file,the another one is release and it is nothing there, so >> >> >> > need >> >> >> > copy >> >> >> > only debug folder? Thanks >> >> >> > >> >> >> > "Samuel Shulman" wrote: >> >> >> > >> >> >> >> Don't forget about all the .dll files that you may be using. In >> >> >> >> general >> >> >> >> all >> >> >> >> you need to do is copy the Bin folder >> >> >> >> >> >> >> >> And assuming you are not using .dll files that require >> >> >> >> registration >> >> >> >> >> >> >> >> Cheers, >> >> >> >> Samuel Shulman >> >> >> >> >> >> >> >> "martin1" <mart***@discussions.microsoft.com> wrote in message >> >> >> >> news:74E34F4D-B766-4B34-8DC9-BF75D23D260A@microsoft.com... >> >> >> >> > Thank you. Samuel, >> >> >> >> > >> >> >> >> > So if .Net 2.0 install on destination PC, just copy app's .exe >> >> >> >> > file >> >> >> >> > from >> >> >> >> > dev >> >> >> >> > PC to destination PC, and then run the .exe file, is this >> >> >> >> > correct? >> >> >> >> > >> >> >> >> > "Samuel Shulman" wrote: >> >> >> >> > >> >> >> >> >> Let me first correct what you need (if I got it right) >> >> >> >> >> >> >> >> >> >> You want to deploy Windows Application written for the .NET >> >> >> >> >> 2.0 >> >> >> >> >> framework >> >> >> >> >> >> >> >> >> >> You need to have the .NET 2.0 installed on the destination >> >> >> >> >> computer >> >> >> >> >> >> >> >> >> >> You may download it free from Microsoft and it easy to >> >> >> >> >> install >> >> >> >> >> >> >> >> >> >> To verify whether it is already installed go to:Control >> >> >> >> >> Panel/Administrative >> >> >> >> >> tool and if it is installed it will be listed there >> >> >> >> >> >> >> >> >> >> >> >> >> >> >> HTH, >> >> >> >> >> Samuel Shulman >> >> >> >> >> >> >> >> >> >> "martin1" <mart***@discussions.microsoft.com> wrote in >> >> >> >> >> message >> >> >> >> >> news:672307EE-8B98-4473-AB78-6A91916455C8@microsoft.com... >> >> >> >> >> > Hi, I want o deploy window app to another PC, which does >> >> >> >> >> > not >> >> >> >> >> > .Net >> >> >> >> >> > 2.0 >> >> >> >> >> > component. The window app has some .Net 2.0 support, so how >> >> >> >> >> > to >> >> >> >> >> > deplot >> >> >> >> >> > the >> >> >> >> >> > app >> >> >> >> >> > to that PC? >> >> >> >> >> > >> >> >> >> >> > Thanks >> >> >> >> >> >> >> >> >> >> >> >> >> >> >> >> >> >> >> >> >> >> >> >> >> >> >> >> >> >> >> >> >> >> >> >> >> >> >> >> >> >> >> >> >>
Diagnostics.Process & MSIEXEC problem...
handling money SQL and VB Validating all controls on "Save" How to Return Value from Module? exceptions/inner exceptions Getting the full path of a folder. Expose Count from System.Collections.CollectionBase in an inherited class Referencing a MDI Parent form from a Child Force Windows to "See" new files burned to a CD/DVD? SendMessage() |
|||||||||||||||||||||||