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 strongm 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. 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?
  16. goatsaregreat

    Center text in a text box

    same here, Phr3t. ;-)
  17. goatsaregreat

    2 point question--combo boxes

    I have a combo box that I want to include all records in a database. That way the user can input his/her own data. Anyway, is there a property or anything to do this? I know that I can code it, but that brings me to point #2. This is the code I am using to set my recordset. dim db as...
  18. goatsaregreat

    Simple Question

    I am trying to create Error Handling code that will jump a line if a certain error occurs. Here is the problem. I have to delete a table from a DB on exiting a form. The problem is, that I need to have that table deleted and created multiple times during the life of the form. I have no...
  19. goatsaregreat

    SQL keyword LIKE??

    I am doing a query of a fairly large DB. Each record in the DB has a unique "job #". Every year has its own prefix. what I am trying to do is to query out all the records for one year. I am picking the year with a combo box. Here is the query I am using. I cannot get the...
  20. goatsaregreat

    Refreshing DataEnvironment???

    I have a DE that is bound to a table that is created at run-time. I have a grid on a separate form that is supposed to show the results of a query. It is within that query that I create the table. However, the DE does not seem to refresh itself. I have tried loading it by code, I've tried the...

Part and Inventory Search

Back
Top