473,657 Members | 2,627 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

Microsoft Visual C#

Hi all,

I am looking at writing new software to replace an existing old DOS based
package our company uses for project cost estimating. I have downloaded and
started to learn the in's and out's of microsoft's visual c# but, as I get
more into it, I'm not sure whether it will be able to do all that I'm
looking for.

Basically what I need is:

1. To import a schedule of items from an Excel spreadsheet,
2. Using a database of resources, assign these to individual items in the
schedule and get a cost rate for that item,
3. Print reports that show the schedule items with associated resource costs
etc.

and a number of other functions.

I know this is a very broad question but, before I go and spend too much on
books etc, just wanted to see what kind of feedback I could get and whether
other packages would be more appropriate.

Regards

Donovin

Jul 11 '07 #1
4 1509
On Wed, 11 Jul 2007 16:17:47 +0200, "Donovin" <do*****@mweb.c o.za>
wrote:
>Hi all,

I am looking at writing new software to replace an existing old DOS based
package our company uses for project cost estimating. I have downloaded and
started to learn the in's and out's of microsoft's visual c# but, as I get
more into it, I'm not sure whether it will be able to do all that I'm
looking for.

Basically what I need is:

1. To import a schedule of items from an Excel spreadsheet,
2. Using a database of resources, assign these to individual items in the
schedule and get a cost rate for that item,
3. Print reports that show the schedule items with associated resource costs
etc.

and a number of other functions.

I know this is a very broad question but, before I go and spend too much on
books etc, just wanted to see what kind of feedback I could get and whether
other packages would be more appropriate.

Regards

Donovin

Hi Donovin

I wouldn't worry about the capabilities of c#, the requirments you
give are achievable in c# or other .Net languages.

What is it that has made you doubt whether you can do these things?

By the way, I'd browse the web or usenet for examples of what you are
looking for rather than splash out on books. There are thousands of
fantastic resources on the net.

cheers
Steve
Jul 11 '07 #2
Thanks for the info Steve,

Well, I have already started creating my project and have succesfully setup
the menus, forms and datasets that I need to start off with but, when I
started researching about importation of data from excel etc, I found very
little info. That got me a bit concerned because the package is no good to
me without the import from excel function.

Now, that I know this is possible, I can take it further.

regards,

Donovin

"steve.falz on@ noonbay.co.uk" <nospampleasewr ote in message
news:9o******** *************** *********@4ax.c om...
On Wed, 11 Jul 2007 16:17:47 +0200, "Donovin" <do*****@mweb.c o.za>
wrote:
>>Hi all,

I am looking at writing new software to replace an existing old DOS based
package our company uses for project cost estimating. I have downloaded
and
started to learn the in's and out's of microsoft's visual c# but, as I get
more into it, I'm not sure whether it will be able to do all that I'm
looking for.

Basically what I need is:

1. To import a schedule of items from an Excel spreadsheet,
2. Using a database of resources, assign these to individual items in the
schedule and get a cost rate for that item,
3. Print reports that show the schedule items with associated resource
costs
etc.

and a number of other functions.

I know this is a very broad question but, before I go and spend too much
on
books etc, just wanted to see what kind of feedback I could get and
whether
other packages would be more appropriate.

Regards

Donovin


Hi Donovin

I wouldn't worry about the capabilities of c#, the requirments you
give are achievable in c# or other .Net languages.

What is it that has made you doubt whether you can do these things?

By the way, I'd browse the web or usenet for examples of what you are
looking for rather than splash out on books. There are thousands of
fantastic resources on the net.

cheers
Steve
Jul 11 '07 #3

You can get to excel data through and IDataReader.

Here is a starter link:

http://aspalliance.com/958_CodeSnip_...idView_Control
Try to NOT use the Excel object model for just reading data. And in an
asp.net application, you should try to avoid the excel object model
completely.

You can also just load the excel data into a dataset, but I prefer an
IDataReader.

"Donovin" <do*****@mweb.c o.zawrote in message
news:84******** *************** ***********@mic rosoft.com...
Thanks for the info Steve,

Well, I have already started creating my project and have succesfully
setup
the menus, forms and datasets that I need to start off with but, when I
started researching about importation of data from excel etc, I found very
little info. That got me a bit concerned because the package is no good to
me without the import from excel function.

Now, that I know this is possible, I can take it further.

regards,

Donovin

"steve.falz on@ noonbay.co.uk" <nospampleasewr ote in message
news:9o******** *************** *********@4ax.c om...
On Wed, 11 Jul 2007 16:17:47 +0200, "Donovin" <do*****@mweb.c o.za>
wrote:
>Hi all,

I am looking at writing new software to replace an existing old DOS
based
>package our company uses for project cost estimating. I have downloaded
and
started to learn the in's and out's of microsoft's visual c# but, as I
get
>more into it, I'm not sure whether it will be able to do all that I'm
looking for.

Basically what I need is:

1. To import a schedule of items from an Excel spreadsheet,
2. Using a database of resources, assign these to individual items in
the
>schedule and get a cost rate for that item,
3. Print reports that show the schedule items with associated resource
costs
etc.

and a number of other functions.

I know this is a very broad question but, before I go and spend too much
on
books etc, just wanted to see what kind of feedback I could get and
whether
other packages would be more appropriate.

Regards

Donovin

Hi Donovin

I wouldn't worry about the capabilities of c#, the requirments you
give are achievable in c# or other .Net languages.

What is it that has made you doubt whether you can do these things?

By the way, I'd browse the web or usenet for examples of what you are
looking for rather than splash out on books. There are thousands of
fantastic resources on the net.

cheers
Steve

Jul 11 '07 #4
PS

"Donovin" <do*****@mweb.c o.zawrote in message
news:84******** *************** ***********@mic rosoft.com...
Thanks for the info Steve,

Well, I have already started creating my project and have succesfully
setup the menus, forms and datasets that I need to start off with but,
when I started researching about importation of data from excel etc, I
found very little info. That got me a bit concerned because the package is
no good to me without the import from excel function.
If the Excel spreadsheet is full of row based data then you can import it
using a datareader. I have never done this as for under $200 you can buy a
library that will read and write Excel files from tmssoftware.com . It is
called FlexCel and I found it to be excellent value.

PS
>
Now, that I know this is possible, I can take it further.

regards,

Donovin

"steve.falz on@ noonbay.co.uk" <nospampleasewr ote in message
news:9o******** *************** *********@4ax.c om...
>On Wed, 11 Jul 2007 16:17:47 +0200, "Donovin" <do*****@mweb.c o.za>
wrote:
>>>Hi all,

I am looking at writing new software to replace an existing old DOS based
package our company uses for project cost estimating. I have downloaded
and
started to learn the in's and out's of microsoft's visual c# but, as I
get
more into it, I'm not sure whether it will be able to do all that I'm
looking for.

Basically what I need is:

1. To import a schedule of items from an Excel spreadsheet,
2. Using a database of resources, assign these to individual items in the
schedule and get a cost rate for that item,
3. Print reports that show the schedule items with associated resource
costs
etc.

and a number of other functions.

I know this is a very broad question but, before I go and spend too much
on
books etc, just wanted to see what kind of feedback I could get and
whether
other packages would be more appropriate.

Regards

Donovin


Hi Donovin

I wouldn't worry about the capabilities of c#, the requirments you
give are achievable in c# or other .Net languages.

What is it that has made you doubt whether you can do these things?

By the way, I'd browse the web or usenet for examples of what you are
looking for rather than splash out on books. There are thousands of
fantastic resources on the net.

cheers
Steve

Jul 11 '07 #5

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

Similar topics

0
6117
by: Tom Lee | last post by:
Hi, I'm new to .NET 2003 compiler. When I tried to compile my program using DEBUG mode, I got the following errors in the C:\Program Files\Microsoft Visual Studio .NET 2003\Vc7 \include\xdebug file as folows. I need help to resolve them ASAP: cl /c /nologo /MDd /W3 /Od /GR /GM /Zi /GX /D "_DEBUG" /D " WIN32" /D "_W INDOWS" /D "_WINDLL" /D "_AFXDLL" /D "_MBCS" /D "_USRDLL" /
1
2962
by: Novice | last post by:
Hi all, I am a C++ and Java developer with over 3 years of industry experience. I've written low level C++ code, in addition to web clients that use web services. I've just recently installed the Visual Studio .net Professional trial version 2003. I have been reading up various documents that discuss - "What is Microsoft .Net" and have found some enlightening information. I'm trying to write a paper on security and software...
1
3912
by: Novice | last post by:
Hi all, I'm afraid this is the second posting of this information as I didn't get a response on the previous post. I will try to shorten my message (i.e. be more concise) in the hopes that it will make it easier for someone (i.e. a Microsoft person) to digest the information and respond to it. I am a C++ and Java developer with over 3 years of industry experience. I've written low level C++ code, in addition to web clients that use web...
99
6075
by: Jim Hubbard | last post by:
It seems that Microsoft not only does not need the classic Visual Basic developer army (the largest army of developers the world has ever seen), but now they don't need ANY Windows developer at a small or mid-sized business. http://groups-beta.google.com/group/microsoft.public.msdn.general/browse_thread/thread/9d7e8f9a00c1c7da/459ca99eb0e7c328?q=%22Proposed+MSDN+subscription+changes%22&rnum=1#459ca99eb0e7c328 Damn! To be that...
2
2100
by: Steve | last post by:
Having only recently migrated across from VB6 to VB.NET I'm still unsure whether or not I should be making (heavy) use of the Microsoft.VisualBasic namespace in new applications. I've read a lot of posts in the (VB).Net newsgroups and seen just about all of the For and Against arguments i.e. not using it = not coding in VB.NET, not using it = good OO. I'm also aware of the difference between this namespace and the compatibility namespace....
182
7491
by: Jim Hubbard | last post by:
http://www.eweek.com/article2/0,1759,1774642,00.asp
0
3337
by: fiona | last post by:
Innovasys Ltd., a leader in help authoring and documentation tools, today announced the inclusion of a tailored version of the Innovasys HelpStudio help authoring product, HelpStudio Lite, in the Microsoft Visual Studio 2005 Software Development Kit. By providing a full help authoring environment within the Visual Studio 2005 SDK, Innovasys is providing developers building components and products that integrate with Visual Studio 2005 a...
23
2465
by: =?Utf-8?B?TWlrZTE5NDI=?= | last post by:
This is an example that is supposed to work in VB http://support.microsoft.com/kb/175512/en-us After spending a couple of hours downloading and installing VB Express 2008 after someone told me it was easy, the thing doesn't work any better. These two instruction lines are not functional 3. Place a Common Dialog control on the form. 4. From the Insert menu, select Module to add a single code module to the project. There is no Common...
0
8392
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
8825
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, it seems that the internal comparison operator "<=>" tries to promote arguments from unsigned to signed. This is as boiled down as I can make it. Here is my compilation command: g++-12 -std=c++20 -Wnarrowing bit_field.cpp Here is the code in...
0
8732
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
8503
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
8605
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
5632
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
4151
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...
2
1953
muto222
by: muto222 | last post by:
How can i add a mobile payment intergratation into php mysql website.
2
1611
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.