Someone Please Help ! ! ! !

  • Thread starter Thread starter Warwick Hunt
  • Start date Start date
W

Warwick Hunt

I need to seach a text string for a specific combination of characters, then
depending upon the result I need to set the value of a different textbox to
something.

EG

If me!TextBox like LH then
Me!TextBox2 = Left
end if

TIA

Dave
 
If Me.InStr(TextBox,"LH")>0 Then

Hi, Al. I think you meant (with my preferred methods applied <g>):

If InStr(Me.TextBox.Value,"LH") Then ...

:-)
 
Definitely,
Me.InStr??
Ooops... I'll try to be more careful.
Thanks Bruce...
Al Campagna
Candia Computer Consulting
Candia, NH
 
You posted the same question under the topic "Character string" a few
days ago. You got one good answer, plus a request for more
information. You did not bother to answer that request. Now you
re-post the same question, under a hopelessly lame topic:
Plllllllleeeeeeeeeeaaasee helllllllllp meeeeeeeeeee!!!!

Warwick/Dave, here's a tip.
(1) Use a decent subject line.
(2) If someone replies to your question with a request for more
information, try providing that information. They may well know
exactly how to answer your problem, but they are considering an issue
tht you, yourself, have not considered. That is what they need the
extra information for.

Following those tips will probably maximize (rather than minimize)
your chance of getting further useful help on the newsgroups.

HTH,
TC
 
TC,

You'll find that if you read the postings that there was NO request for
additional information. Yes I did get one reply, but this was not relevant
(Although I am appreciative of the assistance and not critisism).

Dave
 
Back
Top