Search results for query: *

  1. PelleH

    Strings properties

    Hi, Like this perhaps: Dim Reader AsNew StreamReader(New FileStream("c:\MyFile.txt", FileMode.Open)) Dim Text AsString = Reader.ReadToEnd MessageBox.Show(Text.Length.ToString) Reader.Close()
  2. PelleH

    "ADO error: CREATE PROCEDURE promission denied in database 'Northwind'."

    Hi, Add your userid to the db_owner och db_ddladmin role in the Northwind database. /pelle
  3. PelleH

    date format in web form

    Hi, This can be done with the regular expressions validator control. Here is a pattern you can use: http://www.regular-expressions.info/regexbuddy/dateddmmyyyy.html /Pelle
  4. PelleH

    Login failed for user

    Hi, There are many things that could cause this: 1. No or wrong user id/password provided in the connection string 2. You use integrated security in the connectionstring but the server is set up to use sql-server security only Post the string you use to connect to the database here. /Pelle
  5. PelleH

    Crystal Reports Logon Failed

    Hi, Look at this: http://www.experts-exchange.com/Web/Q_20722809.html /Pelle
  6. PelleH

    stored procedure datetime question.

    Hi, Check out the DATEPART function in sql server books online. /Pelle
  7. PelleH

    Select from 2 tables in a DataSet

    Hi, I think you could solve this in your sql-query instead. Post your t-sql statments here, and we´ll see. /Pelle
  8. PelleH

    Trying a simple update to Access 2000...

    Hi, If you do ds.AcceptChanges() before calling the update method changed rows in the dataset will be marked as unchanged and not included for update. /Pelle
Back
Top