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...
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...
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...
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...
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...
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.
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...
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 =...
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.