
windows clients: views, reports, web browsers and printing
Hi,
I would like to know if to use CR.NET I need to find an ISP who supports it?
Is there any way to make reports in CR.NET without depend on my ISP?
Because, I made my reports but when I upload them, they failed and my ISP
told me they do not support CR.NET.
Can you give me some advice?
Thanks,
Erich.
Quote:
> You can print by making calls directly to the .NET Framework, but this
> requires you to do your own print layout and formatting. Reports are a
good
> way to print for something as complex as a purchase order--that way, the
> reporting engine does the heavy lifting for you. To create a new report in
> Visual Studio, just go the project menu, and choose "Add New Item" (about
> halfway down). Inside the Add New Item dialog, scroll down until you see
the
> "
Crystal Report" icon, and add a new report. You can also search for
> "Crystal Reports" in help.
> To get a browser window inside your Windows client, the AxWebBrowser
> control, the one called "Microsoft Web Browser" (shdocvw.dll) is the way
to
> go. You just put one on your form, and then
> AxWebBrowser1.Navigate("mywebsite.com") will load up the specified URL.
> Hope that helps...
> Steven
> VB .NET team
> --
> This posting is provided "AS IS" with no warranties, and confers no
rights.
> > I want to build a simple windows client that takes user input from
> > windows forms and stores them in a database. That info will populate
> > some forms/reports (such as purchase orders, invoices, etc...)
> > intended for printing. I read somewhere that "reports" are what you
> > should use for printing, but I can't seem to find any information on
> > how to build/use them.
> > Does this involve HTML/ASP and some kind of browser component? or
> > something different. I'm also interested in using a browser window
> > but have only found the axWebBrowser control - is this the only
> > way/best way to display a website within my windows client?