Help getting started

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

Hello,

I am looking for a person in The Netherlands that is willing to help me
getting started with Vb.net. Please send a message to (e-mail address removed) if you can
help me getting started with the Microsoft Developement Enviroment.

Thanks,
 
Jack Duijf said:
I am looking for a person in The Netherlands that is willing to help me
getting started with Vb.net.

If you have any specific questions, feel free to ask them here :-).

General information about VB.NET can be found here:

<URL:http://msdn.microsoft.com/vbasic/>

For beginners' tasks, VB at the Movies may be helpful:

<URL:http://msdn.microsoft.com/vbasic/atthemovies/>

Quickstarts on various topics of the .NET Framework can be found here:

<URL:http://samples.gotdotnet.com/quickstart/>

For VB6 programmers, there are separate documents about the switch to
VB.NET:

VB.NET for VB Veterans
<URL:http://msdn.microsoft.com/library/e...tiontovisualbasic70forvisualbasicveterans.asp>
 
Jack,
help me getting started with the Microsoft Developement Enviroment.
What do you mean with that, it sound a little bit to the Office Develompment
Environment and not VisualStudio Net, what the visitors/actives in this
newsgroup mostly use?

Cor
 
"Herfried K. Wagner [MVP]"
If you have any specific questions, feel free to ask them here :-).

In Dutch?

(Don't worry I agree with your answer, however could not resist)

:-)

Cor
 
Hello All,

First of all, thank you for your kind reply's.
I have almost no experience with Vb-6 or .net development tool. Until now i
worked with Xbase++ (Alaska software), but due to bussines decisions i need
to switch to Vb.net. I do know the basics of events, threads and OOP. I just
need someone who can help me getting started. I have the feeling that if i
need to figure out myself, it wil take ages before i become familiar with the
IDE, and the way of programming in .NET.

I would like to design a nTear application using a existing Btrieve datase.
Some of the things i am looking for are:

- Library with all GUI controlls inherited form standard controls, and some
changed behaviour.
- Library with all Bussiness logic.
- Library with data extraction laier
- The user interface wil be first GUI, but later in the project it should
also run as a Internet application.
- Multi language, same app should run in Dutch, English, or French

If someone would like to assist me in a kind of a few "hands-on" sessions, i
am willing to offer a reasonable financial compensation.
Please contact me via (e-mail address removed)

Thank you.
 
Jack,

Some advices just hints and only my own opinion
I would like to design a nTear application using a existing Btrieve
datase.
Some of the things i am looking for are:

Free to use are the MS databases MS Access (not the office application only
the database) and MSDE. Those both are limited databases however very good
to learn VBNet. When you intent to use SQL server than start with MSDE
because that is a kind of mini SQLserver.
- Library with all GUI controlls inherited form standard controls, and
some
changed behaviour.

I would not start with that, standard are more than enough controls.
Creating usercontrols in the beginning is mostly playing and cost only tons
of time.

Beside those there are as well some in
http://www.gotdotnet.com/Community/Workspaces/workspace.aspx?id=167542e0-e435-4585-ae4f-c111fe60ed58
- Library with all Bussiness logic.

That is a next step, don't start with that. However try quick to learn the
concept of classes and objects. (What you learn by not putting everything in
line as code in your form). Have as well a look at the exception handling
for that. Try to avoid modules and shared classes to help you to learn it
quicker
- Library with data extraction laier

Try it first with the dataset concept which is an extraction from the
database.
- The user interface wil be first GUI, but later in the project it should
also run as a Internet application.

Almost impossible to achieve or you should use webservices. Than you have to
look how to handle your data. When you think about winforms and webpages for
everybody, forget it than, that is for those who readed something, however
they don't understand what is cleverly written.
- Multi language, same app should run in Dutch, English, or French
For the globalization is Net greath (The way numbers and dates are written).
For languages it is not as it could be. Use for the last not the standard
methods (RESX) however an XML file. The most easiest way is than to create a
dataset as file.
If someone would like to assist me in a kind of a few "hands-on" sessions,
i
am willing to offer a reasonable financial compensation.

You can always communicate with this newsgroup, there are a lot of people
(from which are more speaking Dutch) who are wanting to help. (Because there
are people coming here from all over the world, there is a high
understanding what you write, so don't bother to much about your English or
things like that.)

And to start.
Just open your IDE.
do New project select Windows Form Project (enter)
Drag a textbox on that form from the toolbox left (when you don't see it
view toolbox)
Drag a button on that form
Click on that form
Type in the lines where you see Button1_Click event
Textbox1.text = "Hello I am here"

Look at the top of the ide click on Debug and than Start

Your first program is made (or not and than there is an error)

I hope this helps,

Cor
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Similar Threads

Blue screen error message 1
Rundll Error 0
Class library( dll) 7
book recommendation request 0
Best vb.net book 2
Hi, Gruß aus Bayern 7
Help with C# to VB.Net Conversion 6
VS 2005 Debug Problem 2

Back
Top