![]() |
|
help with vb - Printable Version +- Sinisterly (https://sinister.ly) +-- Forum: Coding (https://sinister.ly/Forum-Coding) +--- Forum: Visual Basic & .NET Framework (https://sinister.ly/Forum-Visual-Basic-NET-Framework) +--- Thread: help with vb (/Thread-help-with-vb) Pages:
1
2
|
help with vb - TheSkillfularrow - 05-28-2012 After using jacob's bomber i fall in love with vb and began to learn it. I made a calc now i want to compile it to .exe. What should i do? Please help. RE: help with vb - HrDe - 05-28-2012 All the Best to u for ur new love. RE: help with vb - Coder-san - 05-28-2012 (05-28-2012, 11:02 PM)TheSkillfularrow Wrote: After using jacob's bomber i fall in love with vb and began to learn it. I made a calc now i want to compile it to .exe. What should i do? Please help. It gets compiled everytime you run it. Just look in your project folder -> "projectname"\bin\Debug RE: help with vb - TheSkillfularrow - 05-28-2012 thankyou both of you. I made a program. Please have a look => http://www.4shared.com/file/_uHtvTG_/BMI_Calculator.html RE: help with vb - ArkPhaze - 05-29-2012 You should be building it in the Release configuration though, not using the Debug compiled exe... RE: help with vb - Jacob - 05-29-2012 (05-29-2012, 03:58 AM)PhazeShift Wrote: You should be building it in the Release configuration though, not using the Debug compiled exe... I always do the final build and release the debug compiled exe.. RE: help with vb - Jacob - 05-29-2012 (05-29-2012, 03:58 AM)PhazeShift Wrote: You should be building it in the Release configuration though, not using the Debug compiled exe... I always do the final build and release the debug compiled exe.. RE: help with vb - ArkPhaze - 05-30-2012 (05-29-2012, 06:14 AM)Jacob Wrote:(05-29-2012, 03:58 AM)PhazeShift Wrote: You should be building it in the Release configuration though, not using the Debug compiled exe... Few reasons why you should probably not do that, but lets give the first piece of evidence > Compare the filesize between a default Release config binary, and a Debug config binary RE: help with vb - ArkPhaze - 05-30-2012 (05-29-2012, 06:14 AM)Jacob Wrote:(05-29-2012, 03:58 AM)PhazeShift Wrote: You should be building it in the Release configuration though, not using the Debug compiled exe... Few reasons why you should probably not do that, but lets give the first piece of evidence > Compare the filesize between a default Release config binary, and a Debug config binary RE: help with vb - Jacob - 05-30-2012 @phazeshift I will do that when I get on and such. Thanks for the advice (: |