Search results for query: *

  1. T

    Extracting info from an XML file

    Hey garcom try this XPath tool. VisualXPath http://weblogs.asp.net/nleghari/articles/visualxpath.aspx
  2. T

    CodeDOM

    Anybody using CodeDOM? Found any other interesting uses for it besides generating DAL?
  3. T

    check .net framework is installed

    No problem. Happy Coding!
  4. T

    check .net framework is installed

    Don't know if this will help but here's a method to check which Framework version is installed. Option Explicit On Option Strict On Imports System Imports Microsoft.Win32 Imports Microsoft.VisualBasic Module Module1 Private Declare Auto Function GetSystemMetrics Lib "user32" (ByVal...
  5. T

    MS Access Exceptions in VB.net

    Okay, as I understand this here is an example of where you can 'Trap' your error during a fictional 'Update' procedure. During the update procedure if something weird happens then it will resolve here within this function call. From that point I can choose to deal with the error. Here I...
  6. T

    check .net framework is installed

    This should probably accomplished using BEST Practices and done during app installation.
  7. T

    Converting this from VB6 to VBnet?

    At what point does this 'fail' exactly? On the surface everything looks fine to me.
  8. T

    MS Access Exceptions in VB.net

    Depends on how you are accessing your data. Are you using JET 4.0? Are you using automation?
Back
Top