Search results for query: *

  1. T

    Update a listview from another form

    Problem Solved So I figured out how to solve my problem and figured I would post the answer here just in case anyone else runs into a simular problem. As it turns out the solution was pretty simple... I first had to create an instance of my search form in the inventory form with events like...
  2. T

    Problem with Textbox

    I am no expert, but I would say that you need to create your own Handler and add a click event to the tab control and raise the event when the user clicks on the tab and set a global variable to true if they save the information. Test for that glabal var before you proceed to the next tab.
  3. T

    Resolution Check

    What does it say your resolution is when it is 1024x768
  4. T

    Update a listview from another form

    Hi all, I am writing a touch screen application and I have hit a snag that I can not figure out. The gest of the application is that a user can use a bar code scanner to scan items into and out of inventory and I have one peice that will allow the user to search via part number, Description...
  5. T

    Creating an SMTP Connection

    I have seen in other third party .NET email apps that most of them have a connection state or at least a way to simply test the connection. I have no plans on spending any money to get this done, so I guess my solution will be to alert the user that I was either able to send them a test email...
  6. T

    Creating an SMTP Connection

    Thanks for the pointer. I am VS 2003 with .NET 1.1 so I was able to find and import the System.web.dll as a reference to my project to get to MailMessage. I was able to send a test email from my app with out any problems, but my question now is... How do I test the connection to the SMTP...
  7. T

    Creating an SMTP Connection

    Is there some built in way to connect and send email via an SMTP Connection in VB.NET without having to install some third party dll? I thought CDONTS was a possiblity but I can't seem to find any examples anywhere on how to do it. Can some one please point me in the right direction? ~Trent~
  8. T

    Show/Hide Multiple Groupboxes in a single form

    So here is teh method I am trying to use taht doesn't seem to be working Private FormItems As New Form1 Public Sub ShowHideGroupBox(ByVal GroupBoxToShow As GroupBox) For Each C As Control In FormItems.Controls If TypeOf C Is GroupBox Then If C.Name = GroupBoxToShow.ToString Then...
  9. T

    Show/Hide Multiple Groupboxes in a single form

    I am somewhat new to the VB.NET platform so please bare with me if I don't know all the lingo to ask the questions properly. I have a single form with 5 groupboxes all stacked on top of each other. I set their visability with Menu clicks. When A user clicks on a menu Item I set that groupbox...
Back
Top