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 wOOdy-Soft on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Recent content by iArchitect

  1. iArchitect

    Error Opening Project

    Review the Frontpage server extensions on the machines in question. You may need to repair them for you project. Good Luck!
  2. iArchitect

    optional parameters

    C# does not allow optional parameters as in vb.net. You're only choice is to use overloading.
  3. iArchitect

    Updating a date field without the "time"

    To retrieve you results in the mm/dd/yyyy format, try the following two things: 1. Create a function in SQL Server using the following code: --start of code CREATE FUNCTION dbo.DateOnly(@Date datetime) RETURNS varchar(12) AS BEGIN RETURN CONVERT(varchar(12), @Date, 101) END --end of code 2...

Part and Inventory Search

Back
Top