473,385 Members | 2,210 Online
Bytes | Software Development & Data Engineering Community
Post Job

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 473,385 software developers and data experts.

VS.Net for dummies

I just finished a class on Visual Studio dot Net. I am not a programmer. I
am still learning. I completed all of these projects but I am still in the
dark. I am still digesting all that I have learned. All of these projects
had lots of folders and other files created. I know if you click on the
..sln file the VS.NET programs runs. When I look at the Property Page of the
project in the Solution Explorer I can see the following:

Assembly name: ch22lab
Output Type: Windows Application
Startup object: Form1
Root namespace: Ch22lab

Information:
Project folder: c:\uofphoenix\ch22lab\
Project file: ch22lab.vbproj
Output name: ch22lab.exe

I don't see the above .exe file on my drive.

Why is the ch22lab.exe is not on my computer?
How do you make a .exe files?

I just consulted with a company for networking and saw that the System
Admin's were running a script file(excel spreadsheet) by using a *.vb file.
I am assuming this was a Visual Basic file. Right? They just double
clicked on the file to run it.

Is there another way to build a project into one file and run that one file?

Thanks for your help,

T

Jul 21 '05 #1
7 1909
Check in the bin directory of your project folder.

"Taishi" <ta********@hotmail.com> wrote in message
news:%2****************@TK2MSFTNGP10.phx.gbl...
I just finished a class on Visual Studio dot Net. I am not a programmer. I am still learning. I completed all of these projects but I am still in the dark. I am still digesting all that I have learned. All of these projects had lots of folders and other files created. I know if you click on the
.sln file the VS.NET programs runs. When I look at the Property Page of the project in the Solution Explorer I can see the following:

Assembly name: ch22lab
Output Type: Windows Application
Startup object: Form1
Root namespace: Ch22lab

Information:
Project folder: c:\uofphoenix\ch22lab\
Project file: ch22lab.vbproj
Output name: ch22lab.exe

I don't see the above .exe file on my drive.

Why is the ch22lab.exe is not on my computer?
How do you make a .exe files?

I just consulted with a company for networking and saw that the System
Admin's were running a script file(excel spreadsheet) by using a *.vb file. I am assuming this was a Visual Basic file. Right? They just double
clicked on the file to run it.

Is there another way to build a project into one file and run that one file?
Thanks for your help,

T

Jul 21 '05 #2
Hi Taishi,

Don't feel like a dummy - we all have questions; don't be afraid to ask.

Your .exe is created when you build the solution for the first time; it is
continually updated each time you rebuild or even when you run to test it
(as that launches a rebuild). The .exe is in the solution subdirectory
under a folder called bin - eg,
c:\vsapps\firstapp\bin\firstapp.exe.

HTH,

Bernie Yaeger

"Taishi" <ta********@hotmail.com> wrote in message
news:%2****************@TK2MSFTNGP10.phx.gbl...
I just finished a class on Visual Studio dot Net. I am not a programmer. I am still learning. I completed all of these projects but I am still in the dark. I am still digesting all that I have learned. All of these projects had lots of folders and other files created. I know if you click on the
.sln file the VS.NET programs runs. When I look at the Property Page of the project in the Solution Explorer I can see the following:

Assembly name: ch22lab
Output Type: Windows Application
Startup object: Form1
Root namespace: Ch22lab

Information:
Project folder: c:\uofphoenix\ch22lab\
Project file: ch22lab.vbproj
Output name: ch22lab.exe

I don't see the above .exe file on my drive.

Why is the ch22lab.exe is not on my computer?
How do you make a .exe files?

I just consulted with a company for networking and saw that the System
Admin's were running a script file(excel spreadsheet) by using a *.vb file. I am assuming this was a Visual Basic file. Right? They just double
clicked on the file to run it.

Is there another way to build a project into one file and run that one file?
Thanks for your help,

T

Jul 21 '05 #3
Taishi wrote:
I just finished a class on Visual Studio dot Net. I am not a
programmer. I am still learning. I completed all of these projects
but I am still in the dark. I am still digesting all that I have
learned. All of these projects had lots of folders and other files
created. I know if you click on the .sln file the VS.NET programs
runs. When I look at the Property Page of the project in the
Solution Explorer I can see the following:

Assembly name: ch22lab
Output Type: Windows Application
Startup object: Form1
Root namespace: Ch22lab

Information:
Project folder: c:\uofphoenix\ch22lab\
Project file: ch22lab.vbproj
Output name: ch22lab.exe

I don't see the above .exe file on my drive.


Some types of projects build a .dll instead. Also you need to fully and
successfully build a project before an assembly ( .exe or .dll ) is
generated.
Jul 21 '05 #4
Thanks for all of the responses. I found the .exe in the bin.

All I'm doing when I create my Project is clicking on the Right Arrow
looking object next to debug. This runs the program.

How do you just compile in the IDE?

Many Thanks,
T
"Herfried K. Wagner [MVP]" <hi***************@gmx.at> wrote in message
news:u$**************@TK2MSFTNGP11.phx.gbl...
* "Taishi" <ta********@hotmail.com> scripsit:
I just finished a class on Visual Studio dot Net. I am not a programmer. I am still learning. I completed all of these projects but I am still in the dark. I am still digesting all that I have learned. All of these projects had lots of folders and other files created. I know if you click on the
.sln file the VS.NET programs runs. When I look at the Property Page of the project in the Solution Explorer I can see the following:

Assembly name: ch22lab
Output Type: Windows Application
Startup object: Form1
Root namespace: Ch22lab

Information:
Project folder: c:\uofphoenix\ch22lab\
Project file: ch22lab.vbproj
Output name: ch22lab.exe

I don't see the above .exe file on my drive.

Why is the ch22lab.exe is not on my computer?
How do you make a .exe files?

I just consulted with a company for networking and saw that the System
Admin's were running a script file(excel spreadsheet) by using a *.vb file. I am assuming this was a Visual Basic file. Right? They just double
clicked on the file to run it.
Have a look at the items in the "Build" menu of the IDE. The executable
files will be created in the 'bin' subfolder of the project.
Is there another way to build a project into one file and run that one

file?
You can use the command line compiler ("vbc.exe"), but that's not as
comfortable as using the IDE.

--
Herfried K. Wagner [MVP]
<http://www.mvps.org/dotnet>

Jul 21 '05 #5
Hi Taishi,

Build or rebuild off the build menu.

HTH,

Bernie Yaeger

"Taishi" <ta********@hotmail.com> wrote in message
news:Ot**************@tk2msftngp13.phx.gbl...
Thanks for all of the responses. I found the .exe in the bin.

All I'm doing when I create my Project is clicking on the Right Arrow
looking object next to debug. This runs the program.

How do you just compile in the IDE?

Many Thanks,
T
"Herfried K. Wagner [MVP]" <hi***************@gmx.at> wrote in message
news:u$**************@TK2MSFTNGP11.phx.gbl...
* "Taishi" <ta********@hotmail.com> scripsit:
I just finished a class on Visual Studio dot Net. I am not a programmer. I am still learning. I completed all of these projects but I am still in
the
dark. I am still digesting all that I have learned. All of these projects had lots of folders and other files created. I know if you click on
the .sln file the VS.NET programs runs. When I look at the Property Page
of the project in the Solution Explorer I can see the following:

Assembly name: ch22lab
Output Type: Windows Application
Startup object: Form1
Root namespace: Ch22lab

Information:
Project folder: c:\uofphoenix\ch22lab\
Project file: ch22lab.vbproj
Output name: ch22lab.exe

I don't see the above .exe file on my drive.

Why is the ch22lab.exe is not on my computer?
How do you make a .exe files?

I just consulted with a company for networking and saw that the System
Admin's were running a script file(excel spreadsheet) by using a *.vb file. I am assuming this was a Visual Basic file. Right? They just double
clicked on the file to run it.


Have a look at the items in the "Build" menu of the IDE. The executable
files will be created in the 'bin' subfolder of the project.
Is there another way to build a project into one file and run that one

file?

You can use the command line compiler ("vbc.exe"), but that's not as
comfortable as using the IDE.

--
Herfried K. Wagner [MVP]
<http://www.mvps.org/dotnet>


Jul 21 '05 #6
Taishi,

Have you tried the book Visual Basic .NET Step by Step by Michael Halvorson,
ISBN 0-7356-1905-0 ?
It comes in versions 2002 and 2003, get the one that fits your software. A
CD with source code and fully searchable e-book comes with the book. Very
readable and accurate. You can sample it at Amazon.com.

I have it, read it and give it 5 stars.

Merry Christmas, J e r
Jul 21 '05 #7
No. The book I have is from my class called Programming in in Visual
Basic.Net. I has electronic copy of the text. It doesn't say much about
How to compile.

I might give that book a try. I'm just trying to make use of the assigned
text for class and get some advise from the forum.

Happy Holidays..

"J e r" <mi*****@localnet.com> wrote in message
news:vu************@corp.supernews.com...
Taishi,

Have you tried the book Visual Basic .NET Step by Step by Michael Halvorson, ISBN 0-7356-1905-0 ?
It comes in versions 2002 and 2003, get the one that fits your software. A
CD with source code and fully searchable e-book comes with the book. Very
readable and accurate. You can sample it at Amazon.com.

I have it, read it and give it 5 stars.

Merry Christmas, J e r

Jul 21 '05 #8

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

60
by: K. G. Suarez | last post by:
Hello everyone. I am new to programming and my uncle gave me a copy of "C For Dummies 2nd Edition". I am up to chapter 9 right now. He probably saw me struggling with "The C Programming...
10
by: Roy Lawson | last post by:
Can anyone explain the difference between RowStateFilter and RowFilter properties of the DataView objects in simple terms? I am going through a Transcender practice exam and just when I think I...
3
by: maigork | last post by:
C All-In-One Desk Reference For Dummies.pdf if it exist can anyone tell me where i can dovnload it? Thank you verry much!!!!
2
by: Carlo Stonebanks | last post by:
I have the infamous GoF Design Patterns boo - it's been sittin gon my shelf for years. I have a huge reading list and find this book a rather dry read and am always putting it off. I have...
2
by: Shelly | last post by:
I know C, C++ and Java. I have been using "procedural" PHP. I get the list of classes for PHP, but I need a "PHP OOP for Dummies" on how to implement these. Any pointers to a tutotial? Shelly
0
by: Spam Catcher | last post by:
Is there a "For Dummies" guide to the Component UI Application Blocks (CAB)? CAB seems to do what I need for a new application I'm building... but the documentation provided with the Quickstart...
0
by: paul james | last post by:
Hello There Im in the asp.net 2.0 for dummies by Bill Hatfield. Its harder than i thought but I wont quit till i get it . But on page161 chapter 11 listing 11-6 I type it in but can not get it to...
5
by: salmobytes | last post by:
I'm working on a mini-micro CMS that amounts to a semi-automatic page-generation system that allows authorized users to manipulate an administrative menu. Once installed, the system is...
0
by: Daryl | last post by:
New to programming C++? How to learn it good and fast? See this : http://freebooks2007.blogspot.com Have C++ books for dummies, and even more like expert, can see it too.. Check it out! ...
0
by: taylorcarr | last post by:
A Canon printer is a smart device known for being advanced, efficient, and reliable. It is designed for home, office, and hybrid workspace use and can also be used for a variety of purposes. However,...
0
by: Charles Arthur | last post by:
How do i turn on java script on a villaon, callus and itel keypad mobile phone
0
by: ryjfgjl | last post by:
If we have dozens or hundreds of excel to import into the database, if we use the excel import function provided by database editors such as navicat, it will be extremely tedious and time-consuming...
0
by: ryjfgjl | last post by:
In our work, we often receive Excel tables with data in the same format. If we want to analyze these data, it can be difficult to analyze them because the data is spread across multiple Excel files...
0
by: emmanuelkatto | last post by:
Hi All, I am Emmanuel katto from Uganda. I want to ask what challenges you've faced while migrating a website to cloud. Please let me know. Thanks! Emmanuel
1
by: nemocccc | last post by:
hello, everyone, I want to develop a software for my android phone for daily needs, any suggestions?
0
marktang
by: marktang | last post by:
ONU (Optical Network Unit) is one of the key components for providing high-speed Internet services. Its primary function is to act as an endpoint device located at the user's premises. However,...
0
Oralloy
by: Oralloy | last post by:
Hello folks, I am unable to find appropriate documentation on the type promotion of bit-fields when using the generalised comparison operator "<=>". The problem is that using the GNU compilers,...
0
jinu1996
by: jinu1996 | last post by:
In today's digital age, having a compelling online presence is paramount for businesses aiming to thrive in a competitive landscape. At the heart of this digital strategy lies an intricately woven...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.