473,651 Members | 2,437 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

VB.net Project??

We currently do a ton of tracking and data collection of parents and
children that use our facilities, this includes registration, and a sign in
and out "FORM" each time they visit, plus additional tracking done by the
people on the floor. We'd like to automate as much of the paper work as
possible and save everyone a lot of trouble. The only problem is that we
currently have 10 different sites. So this is what I'd like to do.

When users enter our facility I'd like to have them electronically sign in
(right now I'm thinking of using key ring barcodes and a barcode reader) or
a last name and phone number search. Once the user is identified it would
list all of the children that they have registered in the past and give them
the option to specify which children are with them now.

I'm a VB 6 and ActiveX developer by trade but haven't programmed in about 8
months, I've been given the resources and time to pursue this project if I
want to teach myself something new so the question is can VB.net handle
this? I'd prefer to have the program run as a web application so that all
the sites are using the most current information and so that I don't have to
visit each site every time there is a problem with the "software" I've done
web based ActiveX's in the past but wasn't happy with the amount of tech
support that I needed to keep them running. I think a web style application
would be best. I'd appreciate your thoughts and comments.

Nov 20 '05 #1
4 2893

"R Doornbosch" <ro***********@ hotmail.com> wrote in message
news:vl******** ****@corp.super news.com...
We currently do a ton of tracking and data collection of parents and
children that use our facilities, this includes registration, and a sign in and out "FORM" each time they visit, plus additional tracking done by the
people on the floor. We'd like to automate as much of the paper work as
possible and save everyone a lot of trouble. The only problem is that we
currently have 10 different sites. So this is what I'd like to do.
You can do this Web or WinApp, doesn't matter, just depends on the
connectivity. The biggest thing will be you database connectivity and where
that is stored. I think thats your challenge right now.

The obviuos advantages of web over application is no distribution issues.
its just there, but a lot more work goes into concept development and design
than in a windows app.

So, if you want to make it, pretty, fun, easy to add new stuff... do the
web... if you want a stable/quick application with a familar UI, use a win
app... =)

Hope it helps.


When users enter our facility I'd like to have them electronically sign in
(right now I'm thinking of using key ring barcodes and a barcode reader) or a last name and phone number search. Once the user is identified it would
list all of the children that they have registered in the past and give them the option to specify which children are with them now.

I'm a VB 6 and ActiveX developer by trade but haven't programmed in about 8 months, I've been given the resources and time to pursue this project if I
want to teach myself something new so the question is can VB.net handle
this? I'd prefer to have the program run as a web application so that all
the sites are using the most current information and so that I don't have to visit each site every time there is a problem with the "software" I've done web based ActiveX's in the past but wasn't happy with the amount of tech
support that I needed to keep them running. I think a web style application would be best. I'd appreciate your thoughts and comments.

Nov 20 '05 #2
Cor
Hi,
I was not sure if I could answer your question, but I give it a try.
VB.net is a tremendous tool for Web Application.
If you are familiar with VB6 you maybe have seen the IIS web part from VB6.
That project was stopped. For me the principles of that are almost the same
as Asp.Net
Use the power of a real program as the backbone for your web applications.
But I think that VB.net with Asp.net has maybe 1000 times more possibilities
as VB6 IIS.

But remember that it is not a tool as Power Project with what you make a
webpage and after a while gives it a new theme and there is a new website.
When you use Asp.net it is basically to communicate in 1 to many directions
and visa versa.
Therefore I think that starting a project with crappie data architecture
will lead to nothing.

Is your data architecture ok, than you have to consider about your standard
client.
Keep always in mind that you are working with the net, and not everybody has
a 2Gb connection. There are people who have a 2Kb connection too.

Do you have only clients in your own offices then you can think on Window
applications like with VB6. You can communicate with a Window program over
the net with an asp.net Web server.

Why I write this, just to show you that it is not go and ready. A lot of
things have to be decided before you begin. It will be a long chain of
decisions.

I find the tools from Visual.Studio.N et terrific; I can do almost everything
with it.
Except making Window Pages in the way it is possible with tools as
FrontPage.
I think that when you use Visual.Studio.N et as your tool, you know at the
start what will be the end of your project.

Just some thoughts.
Cor


Nov 20 '05 #3
Cor
Stupid fool I am PowerProject has nothing too do with this.
"> But remember that it is not a tool as Power Project with what you make a
But remember that it is not a tool as FrontPage with what you make a

Sorry
Cor
Nov 20 '05 #4
Hi R,

My impression is that you are very familiar with Windows Apps and familiar with interacting with the Web, but are not a Web
designer as such.

Given that, I would tend towards a central Web Service with a Windows App for your clients. Like Chris says, there's a lot
involved in doing a complete Web App, especially if it's new territory.

The sign-in stuff could be entirely web-based as it is self-contained and reasonably simply. There's only so much going on with
sign-in and once it's done, it's done.

With the paper shuffling, however, it's a case of how long is a piece of string. And the answer is that it gets longer and
longer the more you tug on it. With your Windows experience you'll be more comfortable and capable with this, I would imagine.

Doing it this way - WinForms App, simple Web Service, simple Web App will give you experience in all three areas with the bulk
being where you are more familiar (and you'll find big enough differences there, going from VB6 to VB.NET!).

However you decide, have fun and good luck. You're welcome to bring queries here.*

All the best,
Fergus

* (but be ready to duck if the newsgroup police think you're in the wrong area)
Nov 20 '05 #5

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

Similar topics

0
1547
by: public heath vb developer | last post by:
We have a solution with 29 projects including a main menu and 28 dlls. One of the projects (Project B) was created by copying an existing project (Project A), making changes including the assembly name, root namespace, form name, and internal code. When the new project (Project B) was added to the solution and a reference to it was attempted to be added to the main menu project (Project MainMenu), the new project (Project B) reference did not...
2
4779
by: Rudy Ray Moore | last post by:
How can I modify the project build order of a multi-project workspace under "Visual Studio .net 2003 7.1 c++"? I tried to modify the .sln by hand to influence the build order, but it didn't seem to help. It looks like it's in reverse alphabetical order with upper case characters winning. Contents from my "Output" window: Build started: Project: Utility Build started: Project: USMTF Build started: Project: Tracking
1
1794
by: Jerad Rose | last post by:
Hello, I have searched all over for the answer to this, to no avail. I have a web project already set up and running on a remote server, that I created from my home computer. I am now trying to connect to it from my work computer, but cannot figure out how to set up the project. Here are the various methods I've already tried: 1) When I try Open > Project From Web, I type in the URL, and then it
11
7733
by: Dave | last post by:
I copied the project files from an ASP.NET project on one computer and want to create the project on another computer, There is no connection between the two computers so I simply copied the project files from the first computer onto a memory stick and then from the memory stick into my Visual Studio Projects folder on the second computer. But when I open Visual Studio on the second computer and try to create a project by pointing to...
4
2886
by: Brad | last post by:
I'm not one to rant or flame....so please excuse me while I do so for this once. I've now spent a bit of time working with VS2005 beta 2 to see how it functions for web development, especially how our current extensive number of .Net 1.1 web apps convert to it. After a week's time I dont's mind the converted app code that was broken and had to be changed, due to deprecation, new framework classes (some of which have names identical to...
7
1625
by: Mantorok | last post by:
Hi all We have an ASP.Net project (and the Solution) under source-control. Here is the example - I create the Solution, I create an ASP.Net project and then check it all in to source control, now, when another user pulls down the solution/project from source and then tries to open it the Solution says it can't find the project. The temporary solution we have so far which is far from convenient is to
6
2821
by: liu | last post by:
Hi all, in my vb.net solution, i have 3 project: 1. Main-this is the startup or the base of my window application. 2. Sales-this is the project that contains all the sales info 3. Product-this is the project contains all product info in my Sales project, i added the reference of the Product to Sales project because I need to shows the Product info in my Sales. in the other hand, i also need to show the Sales in my Product. now the
9
5435
by: Anubhav Jain | last post by:
Hi, I am having few .net source files(.cs or .vb) and I want to dynamically generate the corresponding .net project file(.csproj or .vbproj) for them without using visual studio.So that I could be able to generate and compile the project on the enviroments where Visual Studio.Net is not installed. Thanks and Regards, Anubhav Jain MTS Persistent Systems Pvt. Ltd. Ph:+91 712 2226900(Off) Extn: 2431 Mob : 094231 07471
3
2193
by: Jerad Rose | last post by:
This is regarding Visual Studio 2003 (framework 1.1). We have several projects/libraries. Of course, many of these reference each other. If we only had one solution, we would simply add all of the libraries that we wish to debug to the solution, and make project references to the other projects within the solution. All other library references would be file references, since they were not included in the solution. However, the...
29
2807
by: Tony Girgenti | last post by:
Hello. I'm developing and testing a web application using VS.NET 2003, VB, .NET Framework 1.1.4322, ASP.NET 1.1.4322 and IIS5.1 on a WIN XP Pro, SP2 computer. I'm using a web form. How do I move this project/solution from a local development xp pro computer which uses IIS/localhost, to another xp pro computer that is on a Windows 2003 server domain. I want to be able to use the Windows 2003 server IIS instead of localhost.
0
8349
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, people are often confused as to whether an ONU can Work As a Router. In this blog post, we’ll explore What is ONU, What Is Router, ONU & Router’s main usage, and What is the difference between ONU and Router. Let’s take a closer look ! Part I. Meaning of...
0
8275
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 effortlessly switch the default language on Windows 10 without reinstalling. I'll walk you through it. First, let's disable language synchronization. With a Microsoft account, language settings sync across devices. To prevent any complications,...
0
8695
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...
0
8576
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...
0
7296
agi2029
by: agi2029 | last post by:
Let's talk about the concept of autonomous AI software engineers and no-code agents. These AIs are designed to manage the entire lifecycle of a software development project—planning, coding, testing, and deployment—without human intervention. Imagine an AI that can take a project description, break it down, write the code, debug it, and then launch it, all on its own.... Now, this would greatly impact the work of software developers. The idea...
0
5609
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();...
1
2696
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
1
1906
muto222
by: muto222 | last post by:
How can i add a mobile payment intergratation into php mysql website.
2
1585
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.