473,395 Members | 2,151 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,395 software developers and data experts.

build vb.net forums

Hello!

does anybody know of any forum template in vb.net that I can work with. I
would like to build a forum, but all that templates I found is in C#. In
fact I'm finding alot of the cool stuff I want to do, there coded in C#. I'm
wondering if I should have taken up C#, but I thougt for a new programmer
vb.net would be the way to go.

So for a general question, how easy is it to program in C# as well as
VB.net. I'm still new to vb.net and programming all together, only a couple
of years. I would hate to confuse myself even further then I already am.
Would it be worth my while to try C#, or should i get better at vb.net?

And, where can I find a good template for a forum for vb.net.

TIA!

Rudy
Nov 19 '05 #1
5 1273
Hello Rudy,

C# and VB.NET are exactly the same language except in different syntax.
Anything that is written in VB.NET is easilly Ported to C# and vis-versa
with only minor syntax changes.

I find that many people perfer to work in C# because it's much like a cross
between Java and C++ and thus is easy for most programmers to pick up. The
only reason I would suggest switching is because it's really become the
standard for coding with the dot net framework and almost all examples are
written in C# and it makes it easyer to read the examples if you are fluent
with the C# syntax.

Cheers!

David Kyle

"Rudy" <Ru**@discussions.microsoft.com> wrote in message
news:A7**********************************@microsof t.com...
Hello!

does anybody know of any forum template in vb.net that I can work with. I
would like to build a forum, but all that templates I found is in C#. In
fact I'm finding alot of the cool stuff I want to do, there coded in C#.
I'm
wondering if I should have taken up C#, but I thougt for a new programmer
vb.net would be the way to go.

So for a general question, how easy is it to program in C# as well as
VB.net. I'm still new to vb.net and programming all together, only a
couple
of years. I would hate to confuse myself even further then I already am.
Would it be worth my while to try C#, or should i get better at vb.net?

And, where can I find a good template for a forum for vb.net.

TIA!

Rudy

Nov 19 '05 #2
If you switch to C# then you'll get frustrated when you find code samples
that are only in VB.NET.
The only way to win is to learn both. Really it's mostly minor syntactical
differences.
You don't have to learn both right away though. If you want to understand
VB.NET a little better before you embark on the journey of C# then I
wouldn't blame you.
VB.NET is a good, solid programming language and you made a good choice.

The Community Starter Kit contains forum code and it's available in C#, J#,
and VB.NET:
http://www.asp.net/StarterKits/Downl...ndex=0&tabid=1
http://www.asp.net/Default.aspx?tabindex=8&tabid=47

--
I hope this helps,
Steve C. Orr, MCSD, MVP
http://SteveOrr.net

"Rudy" <Ru**@discussions.microsoft.com> wrote in message
news:A7**********************************@microsof t.com...
Hello!

does anybody know of any forum template in vb.net that I can work with. I
would like to build a forum, but all that templates I found is in C#. In
fact I'm finding alot of the cool stuff I want to do, there coded in C#.
I'm
wondering if I should have taken up C#, but I thougt for a new programmer
vb.net would be the way to go.

So for a general question, how easy is it to program in C# as well as
VB.net. I'm still new to vb.net and programming all together, only a
couple
of years. I would hate to confuse myself even further then I already am.
Would it be worth my while to try C#, or should i get better at vb.net?

And, where can I find a good template for a forum for vb.net.

TIA!

Rudy

Nov 19 '05 #3
The only thing I'll add to what the others posted is this.
I learned VB.NET first, wrote a small but non trivial application in VB.NET,
then ported it to C# after reviewing the syntax differences. Most of the
"conversion" to C# simply involved adding semicolons at the end of many
lines of code. This is because calls to base class libraries are really not
different between the languages... and much of what you will use in your
code is the base class libraries (don't try to learn them all, there are too
many: just learn how they are organized and how to navigate the
documentation - it's actually quite useful).

HTH
"Rudy" <Ru**@discussions.microsoft.com> wrote in message
news:A7**********************************@microsof t.com...
Hello!

does anybody know of any forum template in vb.net that I can work with. I
would like to build a forum, but all that templates I found is in C#. In
fact I'm finding alot of the cool stuff I want to do, there coded in C#.
I'm
wondering if I should have taken up C#, but I thougt for a new programmer
vb.net would be the way to go.

So for a general question, how easy is it to program in C# as well as
VB.net. I'm still new to vb.net and programming all together, only a
couple
of years. I would hate to confuse myself even further then I already am.
Would it be worth my while to try C#, or should i get better at vb.net?

And, where can I find a good template for a forum for vb.net.

TIA!

Rudy

Nov 19 '05 #4
Thank you all!
C# maybe isn't that scarry. There is a sample application I found, only a
few forms that's in C#. Maybe I'll take a shot and transfer it to VB. I also
downloaded the community web pages, it's perfect. I just have to figure out
how to only implement the forum pages, the rest of the site I don't need.
Thanks again for all your input!

Rudy

"Gordon Smith" wrote:
The only thing I'll add to what the others posted is this.
I learned VB.NET first, wrote a small but non trivial application in VB.NET,
then ported it to C# after reviewing the syntax differences. Most of the
"conversion" to C# simply involved adding semicolons at the end of many
lines of code. This is because calls to base class libraries are really not
different between the languages... and much of what you will use in your
code is the base class libraries (don't try to learn them all, there are too
many: just learn how they are organized and how to navigate the
documentation - it's actually quite useful).

HTH
"Rudy" <Ru**@discussions.microsoft.com> wrote in message
news:A7**********************************@microsof t.com...
Hello!

does anybody know of any forum template in vb.net that I can work with. I
would like to build a forum, but all that templates I found is in C#. In
fact I'm finding alot of the cool stuff I want to do, there coded in C#.
I'm
wondering if I should have taken up C#, but I thougt for a new programmer
vb.net would be the way to go.

So for a general question, how easy is it to program in C# as well as
VB.net. I'm still new to vb.net and programming all together, only a
couple
of years. I would hate to confuse myself even further then I already am.
Would it be worth my while to try C#, or should i get better at vb.net?

And, where can I find a good template for a forum for vb.net.

TIA!

Rudy


Nov 19 '05 #5
Save yourself a lot of effort.

Use :
http://www.kamalpatel.net/ConvertCSharp2VB.aspx
or
http://authors.aspalliance.com/aldot...translate.aspx
or
http://csharpconverter.claritycon.com/Default.aspx
or
SharpDevelop
http://www.icsharpcode.net/OpenSource/SD/Download/

to convert the brunt of your code from C# to VB.NET.


Juan T. Llibre
ASP.NET MVP
http://asp.net.do/foros/
Foros de ASP.NET en Español
Ven, y hablemos de ASP.NET...
======================

"Rudy" <Ru**@discussions.microsoft.com> wrote in message
news:08**********************************@microsof t.com...
Thank you all!
C# maybe isn't that scarry. There is a sample application I found, only a
few forms that's in C#. Maybe I'll take a shot and transfer it to VB. I
also
downloaded the community web pages, it's perfect. I just have to figure
out
how to only implement the forum pages, the rest of the site I don't need.
Thanks again for all your input!

Rudy

"Gordon Smith" wrote:
The only thing I'll add to what the others posted is this.
I learned VB.NET first, wrote a small but non trivial application in
VB.NET,
then ported it to C# after reviewing the syntax differences. Most of the
"conversion" to C# simply involved adding semicolons at the end of many
lines of code. This is because calls to base class libraries are really
not
different between the languages... and much of what you will use in your
code is the base class libraries (don't try to learn them all, there are
too
many: just learn how they are organized and how to navigate the
documentation - it's actually quite useful).

HTH
"Rudy" <Ru**@discussions.microsoft.com> wrote in message
news:A7**********************************@microsof t.com...
> Hello!
>
> does anybody know of any forum template in vb.net that I can work with.
> I
> would like to build a forum, but all that templates I found is in C#.
> In
> fact I'm finding alot of the cool stuff I want to do, there coded in
> C#.
> I'm
> wondering if I should have taken up C#, but I thougt for a new
> programmer
> vb.net would be the way to go.
>
> So for a general question, how easy is it to program in C# as well as
> VB.net. I'm still new to vb.net and programming all together, only a
> couple
> of years. I would hate to confuse myself even further then I already
> am.
> Would it be worth my while to try C#, or should i get better at vb.net?
>
> And, where can I find a good template for a forum for vb.net.
>
> TIA!
>
> Rudy



Nov 19 '05 #6

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

Similar topics

0
by: blockhead | last post by:
We are looking for someone to either complete a php forum program or create one for us. There isn't really anything that is available that suits our needs and we have specific wants. If you are...
1
by: NMA | last post by:
I have a Visual Studio 6 project that was building correctly. I took a day off of that project to install .NET 03 for another project, then returned to my VS6 project the next day. Without any...
0
by: Umut Tezduyar | last post by:
I have created a System.Web.UI.Control that you can build your N- deep pages very quickly. N-deep means that, you can add unlimited pages, unlimited sub pages, unlimited sub sub pages... to your...
4
by: Agnes | last post by:
I create two project A, & B . A included several baseforms like search, print,etc For project B , some form will inherits the forms in prjA . In project B, I try to add the referece of prjA and I...
4
by: andy6 via DotNetMonster.com | last post by:
I am in VS2005 Configuration Manager and have selected from the Active Solution Configuration "release". The deployment project and a supporting c# dll project both switch to release, however the...
5
by: kath | last post by:
Hi everybody, I am planning to build a web portal, which is mainly a discussion forum for our corporate environment. I want to implement it with Python. Because this project is very new to me...
13
by: 7stud | last post by:
test1.py: -------------------- import shelve s = shelve.open("/Users/me/2testing/dir1/aaa.txt") s = "red" s.close() --------output:------ $ python test1.py
4
by: =?Utf-8?B?S2V2aW5NdXJwaHlSSkxH?= | last post by:
I'm trying to migrate a solution from .NET 1.1 to 2.0 (Visual Studio 2003 to VS 2005), and I'm getting a ton of "warning C4945" messages. I am not using MSBuild, I'm just doing a build from within...
2
by: mohammedsiddig | last post by:
HI how are you . how i can build forums using php ?
3
by: barcrofter | last post by:
This seems like a silly question -- How can I read the actual publish version build data??. When I use: With My.Application.Info Version.Text = "Version: " _ + Format(.Version.Major +...
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:
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: Hystou | last post by:
There are some requirements for setting up RAID: 1. The motherboard and BIOS support RAID configuration. 2. The motherboard has 2 or more available SATA protocol SSD/HDD slots (including MSATA, M.2...
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
by: Hystou | last post by:
Most computers default to English, but sometimes we require a different language, especially when relocating. Forgot to request a specific language before your computer shipped? No problem! You can...
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...
0
by: Hystou | last post by:
Overview: Windows 11 and 10 have less user interface control over operating system update behaviour than previous versions of Windows. In Windows 11 and 10, there is no way to turn off the Windows...
0
tracyyun
by: tracyyun | last post by:
Dear forum friends, With the development of smart home technology, a variety of wireless communication protocols have appeared on the market, such as Zigbee, Z-Wave, Wi-Fi, Bluetooth, etc. Each...

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.