Search results for query: *

  1. tradnbillies

    Namespace being Shadowed?

    I'm having a problem compiling a visual studio 2005 Web Application project due to some namespace issues, and have no idea where to go with this... I am working with code that was written by someone else, and runs fine "standalone" as a web app, but I am working to put the code into a solution...
  2. tradnbillies

    does my code work efficiently? & Q about New()?

    Is there a difference between: Dim myCommand As SqlCommand = New SqlCommand("myStoredProc", myConnection) Dim myCommand As New SqlCommand("myStoredProc", myConnection) Is there anything wrong with this code: Dim dbc As New dbConnect Function doSomething(var As String) As String...
  3. tradnbillies

    sql timeout error rollercoaster

    Hey, I feel that I will need a little explanation before I dive into details of my problem. I am currently interning at a company where I have been asked to build an ASP.NET application to track employees who will not be in the office for the day. The application uses your windows login...
Back
Top