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. chadau

    Crystal 8 and SQL Server 2005

    Will version 8 of Crystal Reports work with SQL Server 2005? We will be upgrading soon from SQL Server 2000.
  2. chadau

    Crystal 8 and SQL Server 2005

    I appreciate the response. The reason we are not upgrading Crystal is because the company is in the midst of migrating from a Legacy system to SAP, and may not need these existing reports once it is implemented. If the business decides to keep some of the reports, we will look to upgrade to...
  3. chadau

    Crystal 8 and SQL Server 2005

    Will version 8 of Crystal Reports work with SQL Server 2005? We will be upgrading soon from SQL Server 2000.
  4. chadau

    Account Impersonation Dilema

    I have a Web app running on an Intranet server that impersonates a specific account in order to access the SQL Server database. The app has a link to a Word doc in a secure directory only allowing certain employees access. Problem is that the program is impersonating an account that does not...
  5. chadau

    Web Service Usage Best Practice

    I don't think they would ever need to run on seperate servers. Also, both solutions would involve connecting to a Legacy system and a SQL Server. Will performance be better by combining the solutions into one Web Service?
  6. chadau

    Web Service Usage Best Practice

    We have 2 seperate business problems to resolve that require the use of Web service technology. My question is, should we use 1 Web service or use 2 distinct Web services to facilitate a business solution? I am really looking to get advice on the best practice for this situation with my main...
  7. chadau

    Column Creation Date

    Is there a way to obtain a table's column creation date in SQL Server?
  8. chadau

    Execute Remote Uninstall

    I need to execute an uninstall.exe file that resides on remote network user pcs. Is there any way to accomplish this using SMS?
  9. chadau

    Problem Trying to Insert Results into a sqlCE DB

    I am attempting to do an INSERT RESULTS into a sqlCe database table, but receive exception stating that "There was an error parsing the query. [Token line number,Token line offset,,Token in error,,]". Code in question is shown below. CODE Friend Sub InsertAllScoringDetail(ByVal headerID As...
  10. chadau

    Mobile .NET Code Problems Involving sqlCe

    I am attempting to do an INSERT RESULTS into a sqlCe database table, but receive exception stating that "There was an error parsing the query. [Token line number,Token line offset,,Token in error,,]". Code in question is shown below. Friend Sub InsertAllScoringDetail(ByVal headerID As String...
  11. chadau

    Mobile Device App Version Info

    App is not recognized in .NET 1.1.
  12. chadau

    Mobile Device App Version Info

    How do I get the version information for a VB.NET Mobile Application?
  13. chadau

    Merge Replication Restriction

    We currently have 2 mobile devices using a custom .NET mobile application and SQLCE to successfully merge data with the SQL Server. Currently have one publication setup on the SQL Server with only one subscription that is being used by both mobile devices. Is there any way to prevent specific...
  14. chadau

    How to Retrieve SMTP Address From Outlook Mail Object

    I am using VB.NET and Outlook 2003. I need to retrieve the SMTP email address from the outlook mail object instead of the exchange address that is returned when reading the SenderEmailAddress property. Please help.
  15. chadau

    File Field Control Filtering

    DH, I couldn't accomplish this task through the control itself, but I was able to do it once the file was selected and the submit button was clicked.
  16. chadau

    Can't save Outlook email item as olRTF type

    I am using the Microsoft Outlook 11.0 Object Library. When the code is executed the SaveAs method of the MailItem object returns an error stating "The parameter is incorrect." It will only save if the type parameter is olTXT. This code worked in the past using Outlook 2000. Imports...
  17. chadau

    How to convert c# routine to vb

    public void Init(HttpApplication app) { // Register for pipeline events app.AcquireRequestState += new EventHandler(this.OnAcquireRequestState); }
  18. chadau

    How to convert c# routine to vb routine

    public void Init(HttpApplication app) { // Register for pipeline events app.AcquireRequestState += new EventHandler(this.OnAcquireRequestState); }
  19. chadau

    Can this SQL Statement Work?

    I have tried this but it doesn't seem to be working. ALTER PROCEDURE GetApprover @Cost money, @EmployeeNumber varchar(5) = NULL AS DECLARE @ManagerCost money DECLARE @MaxCost money SET @ManagerCost = (SELECT Cost FROM Approver WHERE EmployeeNum = @EmployeeNumber) SET @MaxCost = (SELECT TOP...
  20. chadau

    Custom Windows Service Issue

    I developed a custom windows service that needs to access the outlook object to resolve email addresses. Worked fine until I installed it on a Windows 2003 server. Now it locks up during the resolve process because of a security measure on Windows 2003 server. So I ran the resolve process in...

Part and Inventory Search

Back
Top