Accessing SQL Server remotely and generate report [closed] - c#

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, visit the help center.
Closed 11 years ago.
Actually I am bit of confused right now and need some guidance. I have been offer a project to create web portal to generate report. Scenario is something like this,
Client has a business and he need to check the report of hourly sale. What should I do, should I put the SQL Server online or is there any other way to excess server database remotely. I have no experience in creating web portal, how should I start doing it.
Can anyone guide me in proper manner? I have experience in C#.NET using Visual Studio 2010.
Thanks.

This suggestion is without completely understanding your situation but...
There is an open source package called nopcommerce which has an inventory system, sales and other canned reports and a basic CMS built in.
It also includes all source code in C# and works with SQL Server.
It's generic enough to use for most retail scenarios and going this route will save you TONS of time trying to start from scratch.
I would think you could just download, install and customize and get 95% of everything you need from it.

Related

Learn flow of a project to maintain [closed]

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, visit the help center.
Closed 10 years ago.
I joined as a Fresher(trainee) in Software Company for Windows Store development. I don't know much about C#. My company is newly started Windows Store development. they don't have Dot net development before., that's why my company got an Senior dot net employee to complete the project,When ever he complete the project he left away from the company.
My problem is I have to maintain the project after him. My question how to manage a C# project. How to maintain project if there is any issues. I just want to learn the project flow & analyze my project to debug the project errors in future. But i am struggling how to start to analyze the project
Don't neglect or close this question. I am not asking about my personal issue.
Please answer me how can i start to learn & build my project regarding flow.
I can accept any suggestions & Any help regarding this is appreciated.
If you want to learn windows store apps then This and This links will help you in beginner level
Its important to learn XAML or any tool which creates XAML for you like expression blend.Since maintenance changes will be more on UI side.

how to print data from a DB in c# via Winform Application? [closed]

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, visit the help center.
Closed 10 years ago.
I am looking for a simple way to print data from a Sql DB using my Winform Application
but I want to able to customize it. Like adding titles and being able to decide where each thing will be on the printed page. I found a lot of questions like mine, but didn't get/understand the answers. I am looking for the most simple way that it can be done.
Thanks for all the help.
in Visual Studio 2010 you have access to both Crystal Reports and the Microsoft Reporting tools, I'd recommend that you start there.
There are plenty of tutorials on the web for Crystal reports. Here is one on codeguru:
http://www.codeguru.com/csharp/csharp/cs_graphics/chartsandgraphing/article.php/c10483/Beginners-Guide-to-Crystal-Reports-Part-I-Winforms.htm
and here is one for the Microsoft Reporting tools, right here on stackoverflow:
A Tutorial For Microsoft Report In WinForm Applications
It appears the VS2012 doesn't come with Crystal reports, but it may be available. There are other report libraries available on VS2012 NuGet

Generate floor map from Active Directory [closed]

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, visit the help center.
Closed 10 years ago.
This is probably not possible, but I would like to create an interactive floor map where the offices are static but the person name keeps changing. The information must come from Active Directory, and the map must be displayed on SharePoint.
Is this possible? What do you suggest the best approach to solve the problem?
Do we need to develop a full SharePoint webpart? Is there something in the market?
Any input is truly welcomed.
Thanks You.
I've seen something similar with reporting services before but not using active directory as a data source, if you can dump AD to a database or access it similarly reporting services wouldn't be a terrible option. You would just set a jpg of a blank map as a background and place a 'table' with values on each individual desk/office, it was quite time consuming but it ended up working fairly well. And I'm sure MS has some sort of integration between reporting services and sharepoint.

From mdb Access application to windows application C# [closed]

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, visit the help center.
Closed 10 years ago.
I've to recode a small access mdb application using c#. What' the best way to re-use and store data now stored in access tables?
The easiest way is to just leave it in the Access (JET) MDB format. A C# application can work against that format just fine.
The decision which database to use ultimately depends mostly on your project requirements. The fact that you are using C# isn't really a major consideration in which one you pick.
You can use the Upsizing Wizard from Microsoft to migrate the database to SQL Server. If your number of connected users, and database sizing are small enough you can use SQL Server Express free from Microsoft.

c# how do i programmatically create a replica [closed]

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, visit the help center.
Closed 11 years ago.
I am developing winform app that runs in two differen pc's
I want to create a replica and get the changes over the internet
How can i do that?
& how can I create replica and sync it using C#?
any ideas will be appreciated
I assume that you are talking about replicating changes in one ms-access "database" such that two instances stay in sync, As such, you'd be better off abandoning ms-access and upscaling to a single centralised database.
this sounds like a bad idea all around.
The common patterns apply;
use GUID id's,
send offline datasets,
cross fingers and look for a job that allows you to use other free tools, suited for the job http://www.microsoft.com/sqlserver/en/us/editions/express.aspx
Avoid conflict resolution (don't edit the same entities on both ends)
Edit
PS. after visiting hamsaweb.net; if you need this to be web deployable on a shared host:
How to deploy SQL CE 4 CTP to shared hosting?

Categories