Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations SkipVought on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Search results for query: *

  1. BigKahunna

    Select where all in a given list

    Cheers guys both of those look like they'd work. The actual queries pretty big and has a few more lookup tables. I'll give both of these a try for performance and post back. Top Work [thumbsup2]
  2. BigKahunna

    Select where all in a given list

    I have the following query. There are two tables in the DB, one with supplier details and one with supplier rates:- SELECT SupplierID, RatesTable.* FROM SupplierTable INNER JOIN RatesTable on SupplierTable.SupplierID = RatesTable.SupplierID WHERE RatesTable.RateTypeID IN (11, 14) At the...
  3. BigKahunna

    Multiple Horizontal Pages in Crystal Reports

    I am creating a report based on a single dataset in crystal report 10/.NET Webforms. As there are too many fields in the dataset to show on one A4 landscape sheet of paper I would like to be able to output the fields horizontally over two pages. It would then be possible to lay 2 printed A4...
  4. BigKahunna

    Error connecting to Foxpro in webservice

    Managed to solve the problem by setting iis to use an account with permission to view the folder and using the following code to change the thread user for the web service 'Grab the current Http context Dim context As HttpContext = HttpContext.Current 'Set up a Service Provider based on this...
  5. BigKahunna

    Error connecting to Foxpro in webservice

    At the moment the error occurs locally on the development machine. The only thing that is on another machine is the foxpro free table directory. Since the last post I have -Installed the latest version of the OLE DB drivers from the MSDN site, but to no avail. -Changed the local IIS account to...
  6. BigKahunna

    Error connecting to Foxpro in webservice

    I'm getting the following error when connecting to a visual foxpro database using a web service. The 'VFPOLEDB.1' provider is not registered on the local machine. The exact same code works fine in a windows forms application, so I know it's not an issue with the connection string. Any help...
  7. BigKahunna

    AxSHDocVw.AxWebBrowser and Parameters

    I am using the AxSHDocVw.AxWebBrowser on a windows form and wondered if anyone knew of an easy way to read parameters from the URL passed to the control. Are there any properties that I can use or do I have to just pull out a substring from the URL. Thanks in advance for any help on this one...
  8. BigKahunna

    Printing reports in Landscape using Crystal 8.5 Active X

    [color red]Problems printing reports in landscape using the crystal 8.5 active x control?[/color] Design the report in Landscape mode as normal. Rather than using the PrinterSelect method of the crystal control do the following. Use the microsoft common dialog printer control. Before...
  9. BigKahunna

    Copy SQL Server Objects Problem

    I need to keep the format of the tables that do exist in the destination database since this is a new (latest version) of the database structure. I suppose what I really want to do is use the copy data only option, but skip those tables that are in the source database but not the destination...
  10. BigKahunna

    Copy SQL Server Objects Problem

    I am trying to copy data from one database to another using a DTS package I created. All the steps in the package work until it gets to the final stage and runs the Copy SQL Server Objects module to copy data from one database to a new structure in another The problem that I am having is that...

Part and Inventory Search

Back
Top