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!

Recent content by goatsaregreat

  1. goatsaregreat

    VB6 and VB .NET?

    wait a sec... Since when was anything broadcast on NPR worth snot? I've heard NOTHING on NPR that would make me believe anything. Just a bunch of PR. They should have named it "National Public Relations". :-P Gag. So chill with the flaming. Maybe the info was wrong, and...
  2. goatsaregreat

    Better Grid for VB6

    once again, search the forum. I know this has been discussed before. its always best to search first...
  3. goatsaregreat

    Janus Grids??

    thanks, Thanks, THANKS. I always say, "you can't have enough feedback". ;-) Anyway, I have done other projects with other grids, including true grid, and always seemed to have to fight with data controls, and what one grid did, the other didn't, and vise versa. I just wanted to...
  4. goatsaregreat

    Janus Grids??

    Thanks alot. What exactly did you mean, "I can't is to highlight a set of cells with the mouse"? What set of cells? You mean a whole column? row? Thanks for the feedback. I am having fair to good success experimenting w/the trial version. I like what I see so far. TIA for your...
  5. goatsaregreat

    Janus Grids??

    I have been contemplating using Janus GridEx 2000 in one of my fairly major database apps, but didn't want to buy the license w/o asking to see if any of you have any experience with this product. I like what I see from the trial version, and I like the user interface, but didn't know if any of...
  6. goatsaregreat

    How do you refresh a data report?

    I had that prob. too, and I used, DE.requery. Seemed to work for me ok. l8r
  7. goatsaregreat

    Drawing In VB

    if you find out anything, let us know here, please. I would like to know this also. Thanks.
  8. goatsaregreat

    Send an email from VB

    I've done it using the MAPI controls. Not too hard, but maybe not the best way. But it can be done.
  9. goatsaregreat

    inserting into textbox from button event

    do you have the following lines in the "declarations" section? I cannot reproduce the problems you are having. If you could paste your code on here, I'll look at it. Otherwise, if you put your email address on here, I'll attach a copy of my program and send it to you, if you think...
  10. goatsaregreat

    inserting into textbox from button event

    the way I checked my code was to set a breakpoint in the code, and step through--hovering the mouse over the variables. VB will show you what value is stored in them.
  11. goatsaregreat

    inserting into textbox from button event

    let me see if I understand your problem. You want to type some text into a text box. Then you want to highlight some or all of the text in the box? Then you want to click the command button and affect the text in the box? The code I gave you worked on my machine. When I highlighted some or...
  12. goatsaregreat

    inserting into textbox from button event

    forgot to tell you... all you need to run the above code is a form with a textbox and a command button
  13. goatsaregreat

    inserting into textbox from button event

    Here you go. I think this may be what you are looking for. Please let me know if it is. Private num As Integer Private strt As Integer Private Sub Command1_Click() Text1.SetFocus Text1.SelStart = strt Text1.SelLength = num End Sub Private Sub Text1_LostFocus() strt = Text1.SelStart num =...
  14. goatsaregreat

    inserting into textbox from button event

    set the first line of code in the button event to textboxname.setfocus
  15. goatsaregreat

    Hate to ask but...

    yes, I used to program VB6.0 Prof. Ed. on a machine w/ Win 95!!!! Pathetic, huh?

Part and Inventory Search

Back
Top