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 TouchToneTommy 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: *

  • Users: tk7834
  • Content: Threads
  • Order by date
  1. tk7834

    MS Word & email

    I'm making a template (in Word) and putting my email at the top of the template. I want my user to fill out the template, then click on the email link and send me an email with the word doc attached. It can either send automatically, or bring up a new blank email with the doc attached and my...
  2. tk7834

    Run Time issue

    I've created a .vbg with 2 .vbp's. I set a few breakpoints, and when running the code from VB, it does break at those points. My problem is I am unable to control anything in VB after it hits a breakpoint. I cannot hover over a variable to see a value or move my forms/classes/etc. windows...
  3. tk7834

    VB to Access

    I'm thinking this is a fairly easy question, but I have never done it before..... I'm making a simple VB app that can pull from and add values to an Access database. I've got the db set up, but what do I need to do in VB to get it hooked up? So far I've created a data from the toolbar on the...
  4. tk7834

    Timer issues...

    I'm working with a timer in VB 6 and I want to know how to reset it. So, let's say the timer is set at a 10 second interval. It gets fired, then at 5 seconds, the user does something. I want the timer to start the 10 seconds over at that point. Any ideas? Thanks!
  5. tk7834

    Custom drop down

    I've got a form with several combo boxes. One is a custom box. If I click in this custom box and hit down (as to scroll through the choices), my focus moves to the next field just like it does if I hit tab. Any idea what setting I need to use to get the down arrow key to scroll rather than...
  6. tk7834

    MS FLexGrid

    I'm looping through records in a flexgrid and need to be able to see if one is highlighted or not. If it's highlighted, I need to get the value out of one of the cells. I thought it was .SelectionMode, but it doesn't seem to be working. Thanks
  7. tk7834

    Adding a Row in a Flex Grid

    I'm using a Flex Grid and need to add a row every time my code executes through a loop. Any ideas? Thanks!
  8. tk7834

    DBGRID Control

    I'm trying to put DBGrid on a standard .exe form, but when I add the control (Project > Componenents > Add Microsoft Data Bound Grid Control 5.0) and then try to add it to the form, I get error: "License for this Information Not Found. You do not have an appropriate license to use this...
  9. tk7834

    Access/Excel with VB question

    I'm writing a program to allow a user to query by certain criteria and display all applicable records (about 5 fields per record). Once displayed, 1 of the 5 fields should be able to be updated where the other 4 are read-only. My problem is how to display the results and still be able to...
  10. tk7834

    List Box empty

    I'm doing a validation statement to be sure that a couple of text boxes and list boxes and not null before continuing. This is my code: If (txtitn.Text = vbNullString) And (lststate.ListIndex = False) And (txtowner.Text = vbNullString) And (lstteam.ListIndex = False) Then MsgBox ("You...

Part and Inventory Search

Back
Top