473,779 Members | 2,083 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

Is it possible to create a modular project?

Can the following be done with vb.net?
Would c# do a better job?

I am thing of creating a very large project in vb.net (hundreds of
forms?).
I would like to have many project files each containing a managable
number of forms and dealing with a logical business function
(scheduling, purchasing, shipping,.....)
When the program runs, I want the user to "see" one integrated
program. I don't want a lot of forms poping up all over the place.
Ideally, only one form is presented to the user at a time (except for
dialog boxs).

I need to know if this is possible or I will terminate the porting of
our ERP system.

Thanks,
Gary...

-----------------------------------------------------------
Gary Kahrau - VP Technology
ka****@monair.c om (W)
gk*****@optonli ne.net (H)
Stellex Monitor Aerospace Corp.
-----------------------------------------------------------
Nov 21 '05 #1
4 1898
"Gary Kahrau" <gk*****@optonl ine.com> schrieb:
Can the following be done with vb.net?
Would c# do a better job?


Yes and no. In matters of features you need to develop such an application,
there is no difference between VB.NET and C#. If you are dealing with very
large projects, the VB.NET IDE might be slightly slower than the C# IDE
because the background compiler has to do its work to provide IntelliSense
information and to mark errors in the code you wrote.

--
M S Herfried K. Wagner
M V P <URL:http://dotnet.mvps.org/>
V B <URL:http://dotnet.mvps.org/dotnet/faqs/>

Nov 21 '05 #2
On Fri, 3 Dec 2004 00:48:53 +0100, "Herfried K. Wagner [MVP]"
<hi************ ***@gmx.at> wrote:
"Gary Kahrau" <gk*****@optonl ine.com> schrieb:
Can the following be done with vb.net?
Would c# do a better job?
Yes and no. In matters of features you need to develop such an application,
there is no difference between VB.NET and C#. If you are dealing with very
large projects, the VB.NET IDE might be slightly slower than the C# IDE
because the background compiler has to do its work to provide IntelliSense
information and to mark errors in the code you wrote.

Yes and no. ?? Yjat is a little vague for me :-(


My main concern is making it modular.
Any ideas where I can get more information on this subject?
-----------------------------------------------------------
Gary Kahrau - VP Technology
ka****@monair.c om (W)
gk*****@optonli ne.net (H)
Stellex Monitor Aerospace Corp.
-----------------------------------------------------------
Nov 21 '05 #3
Gary,

When the decission point is making "modulair" than I can not see any
difference. When both are done well, than C# and VBNet make almost the same
Net DLL's.

If it is possible to make it modulair and how easy that is, is of course
another question.

Just my thought

Cor
"Gary Kahrau" <gk*****@optonl ine.com>
On Fri, 3 Dec 2004 00:48:53 +0100, "Herfried K. Wagner [MVP]"
<hi************ ***@gmx.at> wrote:
"Gary Kahrau" <gk*****@optonl ine.com> schrieb:
Can the following be done with vb.net?
Would c# do a better job?


Yes and no. In matters of features you need to develop such an
application ,
there is no difference between VB.NET and C#. If you are dealing with
very
large projects, the VB.NET IDE might be slightly slower than the C# IDE
because the background compiler has to do its work to provide IntelliSense
information and to mark errors in the code you wrote.

Yes and no. ?? Yjat is a little vague for me :-(


My main concern is making it modular.
Any ideas where I can get more information on this subject?
-----------------------------------------------------------
Gary Kahrau - VP Technology
ka****@monair.c om (W)
gk*****@optonli ne.net (H)
Stellex Monitor Aerospace Corp.
-----------------------------------------------------------

Nov 21 '05 #4
"Gary Kahrau" <gk*****@optonl ine.com> schrieb:
My main concern is making it modular.
Any ideas where I can get more information on this subject?


Visual Studio -- Introduction to Solutions, Projects, and Items
<URL:http://msdn.microsoft. com/library/en-us/vsintro7/html/vxconVisualStud ioSolutionsProj ects.asp>

--
M S Herfried K. Wagner
M V P <URL:http://dotnet.mvps.org/>
V B <URL:http://dotnet.mvps.org/dotnet/faqs/>

Nov 21 '05 #5

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

Similar topics

4
2656
by: surfdog58 | last post by:
Need to build complete deployment package for a multi-project enterprise soln consisting of 3 web apps, 20+ web services, 2 windows services, 61 component dll's and 4 databases. Everything except the databases are in one Build Solution. Project Output must be structured into unified Application Space with folders for webs and winservices in order to allow instancing on the middleware server. MyEnterpise/Instance1 Services/ Service1
1
1937
by: JayJay | last post by:
I hope I can explain this clearly. I have this database that calculates Bids for construction jobs. You log in, (login id and password) select a project, go into that project and create a "bid" where they can add items that will be needed for construction (2x4, 4x4, nails, etc). They have the ability to create multiple versions of the bid on each project. At this point everyone has access to every project, as this is necessary....
4
1707
by: Bruno van Dooren | last post by:
Hi, i have worked with visual studio for a long time, and would like to have a project template that represents a custom project that is used a lot. (Visual studio .NET 2003) the goal is that if i select 'Add new project', visual studio generates a custom project with the desired files and project settings. i have tried searching MSDN, but i can't find any documentation about this.
4
2310
by: Nick Goloborodko | last post by:
Hi, I'm in the process of conceptualizing a new ASP.NET application. I'm a relative newbie in ASP.NET / .NET in general, so any comments will be greatly appreciated. Basically i need to make my application as modular as possible, something along the lines of Mambo (PHP CMS System) Drupal (another PHP CMS) or something similar to these. What I'm thinking is to provide the following structure: core of the application includes essential...
26
4857
by: I_AM_DON_AND_YOU? | last post by:
This is the scenario: I have a VB.Net project comprising of a few Forms. On Form1 I have more than 20 buttons. There is a very lenghty code written in click event of each and every button. Right now I haven't used any sub procedure. I mean to say I am writing the code directly in the click event. So it's become very lengthy and therefore to figure out some problem or make any changes I have to scroll at lot. Also in addition to click...
20
6824
by: Tuvas | last post by:
I have made and recently posted a libary I made to do Modular Arithmetic and Prime numbers on my website at http://www.geocities.com/brp13/Python/index.html . I am currently in a crypotology class, and am working on building a RSA public key cryptology system for a class project. I am building the librarys just to get the experience to do so. However, I would ask if any of you know of any gaping security holes that can easily be seen from...
4
1690
by: Tony Johansson | last post by:
Hello! I have one solution file that consist of three project. One project that build the exe file called A One project that build a user control dll. Here we have a class called B One project that build a class library dll. Here we have a class called C We have one dependency and that is from the user control to the class library because in the constructor for class B in the user control we have a call to
23
3232
by: mosesdinakaran | last post by:
Hi All, I need a small clarification in submitting the forms, Ur suggestions please. In a page I have two form and also two submit butons. (ie)
2
3482
by: Canice | last post by:
I'm working on a web application where 90% of it is common 'product' code an the other 10% is customer specific. I want some method of separating the customer specific presentation, business and data access layers from the product code as I don't the main product code to be bloated with customer specific code. Ideally I'd like to have one solution for the product and one for each customer. However I haven't found a way to separate the...
0
10137
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 tapestry of website design and digital marketing. It's not merely about having a website; it's about crafting an immersive digital experience that captivates audiences and drives business growth. The Art of Business Website Design Your website is...
1
10074
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 Update option using the Control Panel or Settings app; it automatically checks for updates and installs any it finds, whether you like it or not. For most users, this new feature is actually very convenient. If you want to control the update process,...
0
9928
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 protocol has its own unique characteristics and advantages, but as a user who is planning to build a smart home system, I am a bit confused by the choice of these technologies. I'm particularly interested in Zigbee because I've heard it does some...
1
7483
isladogs
by: isladogs | last post by:
The next Access Europe User Group meeting will be on Wednesday 1 May 2024 starting at 18:00 UK time (6PM UTC+1) and finishing by 19:30 (7.30PM). In this session, we are pleased to welcome a new presenter, Adolph Dupré who will be discussing some powerful techniques for using class modules. He will explain when you may want to use classes instead of User Defined Types (UDT). For example, to manage the data in unbound forms. Adolph will...
0
6724
by: conductexam | last post by:
I have .net C# application in which I am extracting data from word file and save it in database particularly. To store word all data as it is I am converting the whole word file firstly in HTML and then checking html paragraph one by one. At the time of converting from word file to html my equations which are in the word document file was convert into image. Globals.ThisAddIn.Application.ActiveDocument.Select();...
0
5373
by: TSSRALBI | last post by:
Hello I'm a network technician in training and I need your help. I am currently learning how to create and manage the different types of VPNs and I have a question about LAN-to-LAN VPNs. The last exercise I practiced was to create a LAN-to-LAN VPN between two Pfsense firewalls, by using IPSEC protocols. I succeeded, with both firewalls in the same network. But I'm wondering if it's possible to do the same thing, with 2 Pfsense firewalls...
0
5503
by: adsilva | last post by:
A Windows Forms form does not have the event Unload, like VB6. What one acts like?
1
4037
by: 6302768590 | last post by:
Hai team i want code for transfer the data from one system to another through IP address by using C# our system has to for every 5mins then we have to update the data what the data is updated we have to send another system
3
2867
bsmnconsultancy
by: bsmnconsultancy | last post by:
In today's digital era, a well-designed website is crucial for businesses looking to succeed. Whether you're a small business owner or a large corporation in Toronto, having a strong online presence can significantly impact your brand's success. BSMN Consultancy, a leader in Website Development in Toronto offers valuable insights into creating effective websites that not only look great but also perform exceptionally well. In this comprehensive...

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.