Search results for query: *

  • Users: ser
  • Order by date
  1. S

    Crystal Reports error after website installation

    Hi there I have written a website in dot net and included in the site are some reports written with the crystal designer that comes with VS.Net 2003. However, when I install the application on the target machine, using an installation package created from the dot net Web Setup Project...
  2. S

    Using ExecuteScalar in VB .NET

    Execute Scalar Two things: First, you are not specifying the user name and password in your connection string, but I am assuming you add these when you run the app. Also, remove the spaces around the equals sign, so "server = localhost;uid=;password=;database=testdb" becomes...
  3. S

    Get NTFS Folder Permissions

    Have a look at LDAP (Lightweight Directory Access Protocol) - I don't have any details on me but if you do a google search you should find lots of stuff to get you started. Cheers Simon
  4. S

    Web Service Enhancements - Encryption

    I have been experimenting using WSE for VS.Net 2003, and have successfully encrypted SOAP requests from the client, and decrypted them in the Web Service. I can also encrypt the reply from the Web Service. The problem is, when using a Windows client (written in VB.Net), I cannot decrypt the...
  5. S

    Oracle Stored Procedures

    Try this Don't include the parameters in the command text, just the procedure name, eg: // this will not work cmd = New OleDbCommand("library_updates.add_books", con) cmd.Parameters.Add("@a_isbn", OleDbType.VarChar, 13).Value = txtISBN.Text...
Back
Top