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 bkrike 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: *

  • Users: chadau
  • Content: Threads
  • Order by date
  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

    Will version 8 of Crystal Reports work with SQL Server 2005? We will be upgrading soon from SQL Server 2000.
  3. 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...
  4. 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...
  5. chadau

    Column Creation Date

    Is there a way to obtain a table's column creation date in SQL Server?
  6. 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?
  7. 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...
  8. 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...
  9. chadau

    Mobile Device App Version Info

    How do I get the version information for a VB.NET Mobile Application?
  10. 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...
  11. 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.
  12. 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...
  13. chadau

    How to convert c# routine to vb

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

    How to convert c# routine to vb routine

    public void Init(HttpApplication app) { // Register for pipeline events app.AcquireRequestState += new EventHandler(this.OnAcquireRequestState); }
  15. 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...
  16. 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...
  17. chadau

    How to Resolve an Email Address in .NET?

    I am using the .net Mail class to send emails because I need to be able to control the from address, but I need to be able to resolve recipient names. Any one have a solution for this?
  18. chadau

    How to Format the Body of Email Message?

    Is there any way of formatting the font in the body of a mail message in vb.net?
  19. chadau

    How to prevent back nav after session has been aborted?

    Using Forms Authentication. When user logs out and session is aborted the program displays a logout confirmation screen. The user can still use the browser back nav button to go back in history. I've seen on other sites where doing this will only bring me back to the site login screen. How...
  20. chadau

    Web user control event handling troubles

    I have a web user control that contains a Datalist control. I am binding data to the datalist. Everything works fine until I need to trap a button click event that is supposed to handle the Delete command for the Datalist control. I listed the code below in hopes that someone can point out...

Part and Inventory Search

Back
Top