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 =...
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...
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...
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...
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...
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.