I think this has been raised before as a question although I did not find a satisfying answer; A child form created within the main form acts unexpectedly... ...
Sub SeekIt() dim SearchText as string SearchText = Edit13.Text dim SearchResult as string RichEdit21.focus SearchResult = RichEdit21.FindText(SearchText,2) End...
... Hi Patrick, in this case the problem isn't the ".FindText"-Method. Is simply a variable mismatch. See documentation: FindText Finds text in current...
Hi Jim, after playing around with the RICHEDIT2.FindText-Method, I get different results. E.g. Calling .FindText with a string variable crashes my application...
... First, a added a comment in this demo (in HotThing.zip), and it works as expected: ====formnest.bas ====formnest.bas create f1 As FORM caption="form 1" ...
... Hi, Alex. I've played with your code and it doesn't work re RICHEDIT2 .FindText method. However, HotIDE does work! So far I haven't pin-pointed the...
Hello, This email message is a notification to let you know that a file has been uploaded to the Files area of the hotbasic group. File :...
hotbasic@yahoogroups....
Mar 6, 2009 7:21 am
16431
Hi once again, you all. You know, I began my computer training back in '65, and have always been
most interested in the programming aspect of them. And that...
Okay, I;m not repenting the eamil I sent, but suddently realized I said that
a five position reel could have 1, 2, or 3 displayed positions if there is
an...
Hi I want to delete all cols and rows in a grid and refill with new data. I am sure that before grid.destroy followed by grid.recreate worked. Now the new grid...
Speaking of PRGs, all PCs pretty much utilize the same method. I mean
several methods are covered in mathematical books that cover this subject,
so why not go...
If all this discussion about PRGs puts you were you are concerned that you
really have no choice but to become master of the subject or face the
prospect that...
To edit, use simplegrid from the files section. It extends the standard grid to include in-cell editing. grid.clear, as I think someone has already said is all...
Just a clarification about simplegrid usage: Implementing a "sub ProcesCell" is only needed if you want to process the user's entry before validating it. If...
... <snip> Many .inc Custom Objects were written *before* certain convenience features were added to HB's Custom Object arsenal, including my own ShellEx.inc,...
Mar 13, 2009 Hi all Just wondered if complex variables are allowed in hb. defcmplx v1 ' ? v1= ' doesn't work but maybe my use is improper v1=(0.,0.) eg...
... Not yet as a native type -- although I've thought for some years now of adding that, but there has been no "demand", so to speak. As a prelude to a native...
... Ah, fond memories! My first job as a student at the Univ of Chicago was as a "data processor" in the basement of the Enrico Fermi Institute (across the...
Mar 13, 2009 Hi Jim Will check Handbook of Mathematics and Computational Science for some heads up on complex numbers and report results. I can also print out...
Right. I'll keep this one short. It just been a bit amazing how much of an
issue that random numbers have been over my career life, and it all seems to
go...
... Thanks. Actually, how complex math is done is not my issue (I wrote HB, in part, to do simulation programs for experiments in quantum physics which uses...
Sub SeekIt() dim TextToSearch as string dim TotalText as string dim Where as long TextToSearch = Edit13.Text TextToSearch = UCASE$(TextToSearch) TotalText =...