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 TouchToneTommy 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. FarleySoftware

    Hiding controls conditionally in formview

    I'm working with a client who has a FormView on an ASP.NET (VB) page, displaying a single record pulled from SQL using a SQLDataSource on the page. Some of the data are address or phone fields that may be blank. If they're blank, there should be no white space/blank lines, and any accompanying...
  2. FarleySoftware

    Error related to caching

    I added caching to my local SQL Server 2005 database, and edited the web.config file as well as any .aspx pages accordingly. Everything worked fine. Then, after uploading to the live server, I now get an error: The 'MyDatabase:tblAppearances' SqlDependency attribute for OutputCache directive...
  3. FarleySoftware

    Odd error after adding profile to web.config

    I added a profile section to web.config, to hold a shopping cart item (as in Wrox Beginning ASP.NET 2.0). It's under <system.web>: <anonymousIdentification enabled="true"/> <profile enabled="true"> <properties> <add name="Cart" serializeAs="Binary"...
  4. FarleySoftware

    Crystal Reports set as prerequisite, but does not install

    I've got a deployment package set up in VS 2005 that has Crystal Reports set as a prerequisite. The install package does include the necessary files. However, CR doesn't install automatically when it's not present. Is there something that I'm overlooking? Are there any special conditions...
  5. FarleySoftware

    Crystal Reports connection to Access DB not releasing

    I have a CrystalReportViewer in a form, with data coming from an Access DB. The source report of the CrystalReportViewer is selected from a drop-down list Everything displays fine. However, once the form containing the CrystalReportViewer closes, the Access DB connection remains (.LDB file...
  6. FarleySoftware

    Browse dialog box as part of datagridview?

    I have a datagridview on a form, containing report names and their "friendly" names. Example: myreport.rpt in one column, "My Report" in another. To avoid problems with spelling etc, I'd like the report name column input to be controlled by a "browse for file" dialog. I'm accustomed to...
  7. FarleySoftware

    Requiring specific version of DLL

    Is there a way, as part of Visual Studio deployment, to check for a specific version of a DLL & halt installation if it's not a match? An app I'm developing is an add-on of sorts, and needs to check this. I determined how to get the version of the DLL (GetVersionInfo), but I'm not clear on...
  8. FarleySoftware

    ADO recordset filtering error

    I have an ADODB recordset that may contain multiple records. If it contains multiple records, I want to filter the results further, by selecting records where the TranslationDescription field ends with the string value strShift. Here's my code: Private Function GetTranslation(strCode As...
  9. FarleySoftware

    Problem with 3rd party DLL that requires DAO

    I'm stuck on an error message that appears in my Visual Studio VB.NET 2005 project. When I build the solution, I get the following error: Unable to find dependency 'DAO' (Signature='31BF3856AD364E35' Version='10.0.4504.0') of assembly '3rdparty.dll' (3rdparty.dll is not the file name of...

Part and Inventory Search

Back
Top