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 Wanet Telecoms Ltd 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: *

  1. kneejnick

    Counting Instances of a Character in a String

    that is faster isn't it?
  2. kneejnick

    Exception thrown by the target of an invocation

    you gave a very generic description... hard to say
  3. kneejnick

    DataSet and XML

    Both the DataRow and DataTable classes also have AcceptChanges methods. Invoking AcceptChanges on the DataSet causes AcceptChanges to be called on each table in a DataSet. Consequently, calling AcceptChanges on each DataTable causes each DataRow object's AcceptChanges method to be called. In...
  4. kneejnick

    Using Remote Servers in Visual Studio.NET

    VS .NET doesn't have that feature
  5. kneejnick

    How can I avoid a “SqlNullValueException: Data is Null” Exception?

    No conversions are performed, therefore the data retrieved must already be a double-precision floating point number. Call IsDBNull to check for null values before calling this method. that's what VS .NET says ...
  6. kneejnick

    Procedure 'pt3' expects parameter '@ptype', which was not supplied

    how about trying da.SelectCommand.Parameters[0].Value=str; ???
  7. kneejnick

    Access mdb file hacking

    switch to MySQL :)
  8. kneejnick

    Session is not available in Application_Error?

    Thanks Marty, There is no problem to log Server.GetLastError() in Application_Error, all info is there, the problem is that MS claims you could save it in a Session variable!
  9. kneejnick

    Session is not available in Application_Error?

    I agree, did you see any MS docs on it? my web.config had: <sessionState mode="InProc" /> <customErrors defaultRedirect="Error.aspx" mode="On" />
  10. kneejnick

    Session is not available in Application_Error?

    This article http://msdn.microsoft.com/library/default.asp?url=/library/en-us/vbcon/html/vbtskDisplayingSafeErrorMessages.asp from MS shows how to save Server.GetLastError().Message in a Session variable... Did any body actually try doing that? The Session variable was empty in my tests...

Part and Inventory Search

Back
Top