Search results

  1. Eljefegeneo

    Solved Copying telephone numbes

    No, I am getting a number from a web page and copying it, then pasting it to the forms telephone number field. I was hoping that there would be a simple anser for this, but perhaps I need to have an unbound field, to which I copy the formatted telephone number then when I do something like...
  2. Eljefegeneo

    Solved Copying telephone numbes

    I have been trying to figure out a way to copy a telephone number that is usually in the format (800)-555-1212 into a form. The form is formatted for telephone numbers so the input mask is (???)-???-????. Right now when I copy the number to the telephone control it only pastes the area code...
  3. Eljefegeneo

    First word in string

    Finally figured out that this will parse the first word of a string and not throw the error message. Org: IIf(InStr([Organization]," "),Left([Organization],InStr([Organization]," ")-1),[Organization]) Going to see if MajP's suggestion applies to me. But not tonight.
  4. Eljefegeneo

    First word in string

    Trimming won't work. Trying to see if there is for example, Bob's Burger Barn and Bob's Burgers or Bob's Barn.
  5. Eljefegeneo

    First word in string

    I want to compare two large lists where the Organization name is the same. Unfortunately the names may not be exactly the same thus I am attempting to parse the first word in each list against the other. Thus I thought if I could get the first word in a string that I could at least determine if...
  6. Eljefegeneo

    Late binding

    Thank you for all your replies and suggestions. The only reason that I thought about this is that sooner or later I will give up my assistance to the users of the DBs and didn't want to burden them with unnecessary coding. Like me, early binding was easy to figure out. You just added the...
  7. Eljefegeneo

    Late binding

    Yes, that is why I had to use late binding foe a while. Now testing all the code to make sure all,is ok 2hen I added b@ck the old references.
  8. Eljefegeneo

    Late binding

    Thank you
  9. Eljefegeneo

    Late binding

    When all the computers at work were upgraded to Windows 10 and Office 365 and I still had my old machine with Office 2010 at home where I do my coding, I had to start using late binding because of some issues with Office 2010 programs; not all of the computers at work were changed over to the...
  10. Eljefegeneo

    Solved Find next sequential number

    Got it! Alt least if does what I want it to do. Dim dbs As Object Dim rst As Object Dim lngPK As Long Dim booValueFound As Boolean 'booValueFound = False lngPK = Me.NumberID Set dbs = CurrentDb 'Set rst = dbs.OpenRecordset("qryNewNamesSequential") Set rst = dbs.OpenRecordset("tblNewNames")...
  11. Eljefegeneo

    Solved Find next sequential number

    I think I almost have it except for one glaring error. The following will open the next sequential record that exists but unfortunately doesn't stop there. It gets hung up and seems to be in an endless loop. (Both the table and the query result in the same thing – either one will give me the...
  12. Eljefegeneo

    Solved Find next sequential number

    I have the following code to search for a record based on its record number. What I want to do is modify the code so that if a certain number is not found I want to open the next sequential record. I.e. if record number 80 is not found, then open the next record in sequence which may be 85. (I...
  13. Eljefegeneo

    Search By Letter Picker

    Thank you. I knew it was something simple but I was brain dead for a while.
  14. Eljefegeneo

    Search By Letter Picker

    I tried to modify the code found on BaldyWeb that opens a record set and includes all the records. So far I have gotten to this but nothing happens. I definitely have records where the Organization name begins with B. If I could get this to work then I could use a letter picker to change the B...
  15. Eljefegeneo

    Gmail problem

    Thank you. However when I debug, the term Private Const throws this error message: "Compile Error, Invalid Attribute in Sub or Function"
  16. Eljefegeneo

    Gmail problem

    I am getting the error message, Compile Error, Variable not Defined as follows: (shown in red) config.fields(cdoSendUsingMethod).Value = cdoSendUsingPort config.fields(cdoSMTPServer).Value = "smtp.gmail.com" config.fields(cdoSMTPServerPort).Value = 465 config.fields(cdoSMTPUseSSL).Value =...
  17. Eljefegeneo

    Are there gremlins in my computer?

    Forgot to include this.
  18. Eljefegeneo

    Are there gremlins in my computer?

    My wife has been after me to get a new bridge for our Koi pond/stream and today I ordered one from Wayfair. About an hour later she told me that she found a bridge that would fit nicely and I should order it. It appeared as an unsolicited ad on her Face Book feed. It was the same exact bridge...
  19. Eljefegeneo

    Gmail problem

    No, mine slightly different. I tried this but as I am using late binding many lines of the above code say that I have not defined. These are: config.fields(cdoSendUsingMethod).Value = cdoSendUsingPort config.fields(cdoSMTPServer).Value = "smtp.gmail.com"...
  20. Eljefegeneo

    Gmail problem

    OK, I will look at the App password thing again, but it looked too complicated for me.
Back
Top Bottom