hello everyone,
can u plz. specify steps how to convert s/w into exe
thankyou
Short, version-aware checklist that answers the usual ways to turn VB code into a distributable EXE (covers classic VB6, VB.NET and modern .NET).
As asked broadly and flagged missing details, and as noted the IDE route, here are the practical options and common pitfalls.
For VB.NET (Visual Studio / .vb files)
vbc /target:winexe /out:MyApp.exe MyApp.vb For VB6 (classic)
vb6.exe /make MyProject.vbp Packaging and distribution
dotnet publish -c Release -r win-x64 --self-contained true /p:PublishSingleFile=true If exact errors appear (missing entry point, missing DLL, wrong framework), include the error text and target VB/runtime version to get specific troubleshooting steps.
Jump to Post— abu taher 34you start this thread before. 1stly stop that thread. and then start it with more details.
you start this thread before. 1stly stop that thread. and then start it with more details.
Go To "File" then at the bottom part of the sub menu bar, you will see the name of your project there like this:
Example:
"Make Project1.exe..."
There click it then a dialog box will appear, and from there you can set some properties of your program (e.g. The version Info. Company Name, Author, etc.) and you can also use a type of compilation of your program(FOR Advanced Programmers Only). like using the "p-code" option or using the "native-code", or the other options.
If your dealing with databases or if you're going to distribute your program or application over the internet or if you're creating ActiveX controls that are embedded in an HTML page., I suggest that you use the "p-code" option because it is faster than the "native-code".
I'm not an advanced programmer, I just know it because I have read it from a book...^_^...Thanks and Good Luck!
We're a friendly, industry-focused community of developers, IT pros, digital marketers, and technology enthusiasts meeting, networking, learning, and sharing knowledge.