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

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 1502
On Wed, 11 Jul 2007 16:17:47 +0200, "Donovin" <do*****@mweb.co.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.falzon@ noonbay.co.uk" <nospampleasewrote in message
news:9o********************************@4ax.com...
On Wed, 11 Jul 2007 16:17:47 +0200, "Donovin" <do*****@mweb.co.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.co.zawrote in message
news:84**********************************@microsof t.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.falzon@ noonbay.co.uk" <nospampleasewrote in message
news:9o********************************@4ax.com...
On Wed, 11 Jul 2007 16:17:47 +0200, "Donovin" <do*****@mweb.co.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.co.zawrote in message
news:84**********************************@microsof t.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.falzon@ noonbay.co.uk" <nospampleasewrote in message
news:9o********************************@4ax.com...
>On Wed, 11 Jul 2007 16:17:47 +0200, "Donovin" <do*****@mweb.co.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
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...
1
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...
1
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...
99
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...
2
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...
182
by: Jim Hubbard | last post by:
http://www.eweek.com/article2/0,1759,1774642,00.asp
0
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...
23
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...
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
BarryA
by: BarryA | last post by:
What are the essential steps and strategies outlined in the Data Structures and Algorithms (DSA) roadmap for aspiring data scientists? How can individuals effectively utilize this roadmap to progress...
1
by: nemocccc | last post by:
hello, everyone, I want to develop a software for my android phone for daily needs, any suggestions?
1
by: Sonnysonu | last post by:
This is the data of csv file 1 2 3 1 2 3 1 2 3 1 2 3 2 3 2 3 3 the lengths should be different i have to store the data by column-wise with in the specific length. suppose the i have to...
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
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
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.