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 Chris Miller 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. vbcnew55

    Build Treeview from Database...

    how i have done it is by using a recursive table setup. node ID parent node ID node name [more fields, if needed] and as a result, you will have to use recursion to read from the table to programmatically build the tree structure. i don't have my code with me, but essentially you should...
  2. vbcnew55

    Incorrect Elapsed Time

    Hi, Just wanted to get back to you; yep that was what I was looking for...going to read up some more on the string builder class. thanks again.
  3. vbcnew55

    Incorrect Elapsed Time

    Thanks for the reply. I'll try it out, and post a response tonight.
  4. vbcnew55

    Incorrect Elapsed Time

    I'm trying to measure how long it takes to run code. So I added the stopwatch object in the code, started it, and debug printed the elapsed time. The elapsed time is incorrect. Can somebody tell me what I did wrong here? Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As...
  5. vbcnew55

    How Best To Handle Sequential Calls

    Found what I was looking for.... http://www.tek-tips.com/viewthread.cfm?qid=1302985 http://www.codeproject.com/KB/architecture/exceptionbestpractices.aspx
  6. vbcnew55

    How Best To Handle Sequential Calls

    Hi, I was not sure what to use as a search term to find the answer to my question so I created this thread. I would like to know how you structure your code when you need to do several things. I typically write Functions instead of Subs because I want to know that a preceding call was...
  7. vbcnew55

    Go To A Report Page

    Hi, Can someone help by telling me what the code is to move to a particular page number on an Access Report? Using code, I have variables that capture the start page of each sub report. Now what I want to do is add functionality to go directly to that page number within the report. There's a...

Part and Inventory Search

Back
Top