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 Mike Lewis 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. Dataman9

    Detecting remote user

    Hi, I need to determine if the user is running the program (installed on the server) but is using Terminal Services to log onto the server. Since the software is licensed per user, and the license key is machine based, I don't want multiple users accessing the program using Terminal Services...
  2. Dataman9

    Detecting remote user

    I'm looking for a method to determine from a VB6 application if the current user is connected using Terminal Services. Thanks for any pointers.
  3. Dataman9

    laod another form?

    Forms are classes, so first create an instance to the form you want to open and then use the Show or ShowDialog method on the object: Dim frmDialog As New frmInsertProject() frmDialog.ShowDialog()
  4. Dataman9

    Display HTML in a Windows form

    I also found that by right clicking on the toolbox and selecting Customize Toolbox a COM object can be added to the project. This will allow dropping the control on a form. Thanks for the posts. Gary
  5. Dataman9

    Display HTML in a Windows form

    Does anyone know of a method to display HTML in a Windows form using VB.NET? I was looking for something like the WebBrowser COM control but could not find anything similiar in .NET. Thanks for any help.
  6. Dataman9

    Recursive data structure example or help

    This XML newbie is looking for some advice on how ot work with bill-of-material type data structures in XML, where a part element is a parent another another part element, etc: <Part> (assembly) <Part> (sub-assembly) <Part> (component) I'm thinking that the schema would consist of a Part...

Part and Inventory Search

Back
Top