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 strongm 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. thmarmot

    VSNET IDE hangs when debugging

    After a few months, i ws not able to debug any VBNET applications. When the debugging starts, the IDE Freezes , the application is shelled and only visible in the task manager but does not use any CPU times. No Gui is displayed and the IDE is completely blocked. This is due to IIS which is...
  2. thmarmot

    VB.NET or C#

    It depends on the type of application that you build. for GUI or We b application ,use VB.NET when possible. it is more clear to develop or maintain code (even if more than one person develop the application). The code executed at run time VB.NET is the same as C# Maybe a only few things can...
  3. thmarmot

    Treeview help in loading nodes

    may be you need to instantiate your dummy node like this oDummyNode.text = "dummy" ParentNode.Nodes.Add(oDummyNode) thierry
  4. thmarmot

    How hard is it to upgrade from VB6 to VB.net (large application)

    VB .NET is completeley different and the upgraded application may not work imedialtely because many changes occured in the standard componenents ( itemdata disappears , change in treeview , ... ). it is a good test to try to migrate an application to convert the classes and modules but the...
  5. thmarmot

    Foriegn key just cant be made in my diagram!?

    Uusally ,some data stored in the FK field of the Table B refers to PK in table A that do not exist anymore. if you execute this statement , you will se imedialtely the wrong data SELECT FK from B where fk NOT in ( select pk from A ) it is easier to create the link before filling the tables...

Part and Inventory Search

Back
Top