Google Answers Logo
Researcher Ratings
 

Researcher Ratings for aceresearcher-ga

Average Answer Rating: 4.00 stars
Questions Answered: 382
Number of Refunds: 4

Showing Researcher Ratings 351-382 of 382 <<  Prev 50 Ratings
Subject: Changed meaning of the acronym RAID
Category: Computers > Hardware
Rating and comments by: poolecl-ga
5 stars
thank you
Subject: music
Category: Arts and Entertainment > Music
Rating and comments by: garydl4279-ga
This answer has not been rated.
Subject: Is there any unsorting algorithm ?
Category: Computers > Algorithms
Rating and comments by: njm-ga
This answer has not been rated.
Subject: Past Personal Physician to The President
Category: Miscellaneous
Rating and comments by: r2-ga
5 stars
Great job
Subject: Real estate contracts regarding selling your house
Category: Family and Home
Rating and comments by: gabby20-ga
This answer has not been rated.
Subject: Unenforceable laws
Category: Relationships and Society > Law
Rating and comments by: porkribs-ga
5 stars
Excellent answer! Thank you.
Subject: Software question for personal expenses and check writing.
Category: Business and Money
Rating and comments by: clicker5-ga
5 stars
Thank you, I am now on the correct path.
Subject: Document naming conventions/standards
Category: Business and Money
Rating and comments by: dhenss-ga
5 stars
Great answer.  Fast reply.  Thanks for the help.
Subject: fixing bad credit
Category: Business and Money > Finance
Rating and comments by: jut3235-ga
5 stars
thanks a million
Subject: HOW TO CONTACT A CERTAIN COMMERICAL BUSINESS
Category: Business and Money > Advertising and Marketing
Rating and comments by: skipper5-ga
This answer has not been rated.
Subject: Best US long distance calling card?
Category: Reference, Education and News > Consumer Information
Rating and comments by: dogbreath-ga
5 stars
Good answer - thanks.  CogniCall does exactly what I require.
Subject: Galician Men Taken POW and sent to labor camps in Siberia during WWI
Category: Reference, Education and News
Rating and comments by: jk123-ga
This answer has not been rated.
Subject: Organization
Category: Reference, Education and News > General Reference
Rating and comments by: kellyclose-ga
4 stars
This was a great answer - the remarks from 'professional' reviewers
were especially helpful and this was super fast. The "reader" reviews
were somewhat less useful (it's only one random person, after all) but
overall a good answer and well worth the $$$....
Subject: Commodity Futures Statements
Category: Business and Money > Accounting
Rating and comments by: buscar-ga
4 stars
Generally helpful. I now have to interpret to my particual statement.
Subject: E-Mail from Access 2000
Category: Computers > Software
Rating and comments by: kkeegler-ga
3 stars
Answer was a work-around solution.
The solution settled on requires a look at the code and is a little
long but the basic code follows. It also involves setting up 4 new
fields in the table and a Command Button on the form.

Good Luck and Thanks again.

        Private Sub cmdMakeHot_Click()
'this will make the ControlSource of the Email & Web Address textboxes
for "fldEmailText"
'and "fldWebText" change to "fldMailTo" and "fldURL"
Dim db As Database                           '
Dim rsCustomers As Recordset
Dim strSQL As String
Dim strConstruct As String



      'Make the textboxes HYPERLINK
If Me!cmdMakeHot.Caption = "Make  Text" Then        ' Does the button
say "Make Text"?
   
   Me!cmdMakeHot.Caption = "Make  Hot"            ' make the caption
say "Make Hot"
   Me!cmdMakeHot.ForeColor = 16744448             ' make the text blue
   Me!txtEmailAddress.ForeColor = 0             ' make the text black
   Me!txtWebAddress.ForeColor = 0             ' make the text black
   Me!txtEmailAddress.ControlSource = "fldEmailAddress"  ' Yes, the
make the control source the Text field
   Me!txtWebAddress.ControlSource = "fldWebAddress"       ' make the
control source the Text field
   Me!cmdMakeHot.ControlTipText = "Change Text field to Hyperlink to
initiate Email or Web Browser" ' Change the Tool Tip
Else  'Make the textboxes HOT                    ' No, the button says
"Make Hot", so

   Me!cmdMakeHot.Caption = "Make  Text"             ' make the caption
say "Make Text"
   Me!cmdMakeHot.ForeColor = 0                    ' make the text
black
   Me!txtEmailAddress.ForeColor = 16744448             ' make the text
blue
   Me!txtWebAddress.ForeColor = 16744448             ' make the text
blue
   Me!cmdMakeHot.ControlTipText = "Change Hyperlink field to Text for
editing" ' Change the Tool Tip
      'now put the addresses into the HOT fields
      Set db = CurrentDb                           ' set the database
object
      strSQL = "SELECT * FROM tblClientInformation WHERE
[tblClientInformation]![ClientCompanyName] = '" & Me!ClientCompanyName
& "';"
      Set rsCustomers = db.OpenRecordset(strSQL)   ' set the recordset
object
      
      'Do the Email first
      
      ' if the string begins with "#MailTo:" Then
      If Left(Me!txtEmailAddress, 8) = "#MailTo:" Then
         If Right(Me!txtEmailAddress, 1) = "#" Then
            strConstruct = Me!txtEmailAddress
         Else
            strConstruct = Me!txtEmailAddress & "#"
         End If
      
      ' if the string begins with "MailTo:" Then
      ElseIf Left(Me!txtEmailAddress, 7) = "MailTo:" Then ' if the
string begins with "MailTo:" Then
         If Right(Me!txtEmailAddress, 1) = "#" Then
            strConstruct = "#" & Me!txtEmailAddress
         Else
            strConstruct = "#" & Me!txtEmailAddress & "#"
         End If
      ' if the string does not begin with "#MailTo:" or "MailTo:" Then
      Else
         If Right(Me!txtEmailAddress, 1) = "#" Then
            strConstruct = "#MailTo:" & Me!txtEmailAddress
         Else
            strConstruct = "#MailTo:" & Me!txtEmailAddress & "#"
         End If
      End If
      
      rsCustomers.Edit
      rsCustomers!fldMailTo = Nz(strConstruct, "")
      rsCustomers.Update
      'CurrentDb.Execute ("UPDATE [Customer Locations] SET [Customer
Locations].[fldEmailAddress] = '" & Nz(Me!txtEmailAddress, "") & "'
WHERE [Customer Locations].[CustKey] = '" & ClientCompanyName & "';")
      'CurrentDb.Execute ("UPDATE [Customer Locations] SET [Customer
Locations].[fldMailTo] = '" & Nz(strConstruct, "") & "' WHERE
[Customer Locations].[CustKey] = '" & ClientCompanyName & "';")
      'Do the Web second      'rsCustomers!fldWebAddress
Me!txtWebAddress

      ' if the string begins with "#Http://" Then
      If Left(Me!txtWebAddress, 8) = "#Http://" Then
         If Right(Me!txtWebAddress, 1) = "#" Then
            strConstruct = Me!txtWebAddress
         Else
            strConstruct = Me!txtWebAddress & "#"
         End If
      
      ' if the string begins with "Http://" Then
      ElseIf Left(Me!txtWebAddress, 7) = "Http://" Then ' if the
string begins with "MailTo:" Then
         If Right(Me!txtWebAddress, 1) = "#" Then
            strConstruct = "#" & Me!txtWebAddress
         Else
            strConstruct = "#" & Me!txtWebAddress & "#"
         End If
      ' if the string does not begin with "#Http://" or "Http://" Then
      Else
         If Right(Me!txtWebAddress, 1) = "#" Then
            strConstruct = "#Http://" & Me!txtWebAddress
         Else
            strConstruct = "#Http://" & Me!txtWebAddress & "#"
         End If
      End If
      rsCustomers.Edit
      rsCustomers!fldURL = Nz(strConstruct, "")
      rsCustomers.Update
      
      rsCustomers.Close
      Set rsCustomers = Nothing
      Set db = Nothing
      'change the controlsource to look at the TEXT fields
      Stop
      Me!txtEmailAddress.ControlSource = "fldMailTo" ' make the
control source HOT
      Me!txtWebAddress.ControlSource = "fldURL" ' make the control
source HOT
End If
'Me.Refresh


End Sub

Private Sub txtEmailAddress_Exit(Cancel As Integer)
    If Nz(Me!txtEmailAddress, "") <> "" Then Me!cmdMakeHot.Enabled =
True
    Me.Refresh
End Sub

Private Sub txtWebAddress_Exit(Cancel As Integer)
    If Nz(Me!txtWebAddress, "") <> "" Then Me!cmdMakeHot.Enabled =
True
    Me.Refresh
End Sub
Subject: Debit & Credit card proceedures
Category: Business and Money > Small Businesses
Rating and comments by: gill59-ga
5 stars
Thank you very much for your help and getting back to me so quickly
Subject: $3.33 + $0.00 buy 6-pack of floss tensioner, online???---5 stars guaranteed-
Category: Miscellaneous
Rating and comments by: googel-ga
5 stars
aceresearcher-ga is not inclined to help my business buy buying my
product, but he is willing to help by providing  good advice.
Thank you. (hope that $0.00 meant free shipping+handling)
Subject: Outsourced retail call center customer service for Bank
Category: Miscellaneous
Rating and comments by: damon0428-ga
1 stars
Too specific - I was looking for articles, all encompassing, about
banks at large and the future of them outsourcing their customer
service.
Subject: "Executive Travel Policy and Procedures"
Category: Business and Money
Rating and comments by: karlee-ga
5 stars
This was EXACTLY what I needed!!!  Thank you so very much.
Subject: looking for information about Dynu Systems Inc
Category: Computers
Rating and comments by: shamrock777-ga
This answer has not been rated.
Subject: Resident of NYS
Category: Miscellaneous
Rating and comments by: geneboy-ga
2 stars
Subject: Looking for consultant to audit electricity bill
Category: Business and Money > Consulting
Rating and comments by: mynameisdan-ga
5 stars
Quick and thorough. Highly recommended. Thanks!
Subject: Coke Vending Machines
Category: Miscellaneous
Rating and comments by: mowgly-ga
5 stars
Subject: stocks
Category: Business and Money
Rating and comments by: stench-ga
This answer has not been rated.
Subject: History of the Steam Yacht "Frontiersman"
Category: Miscellaneous
Rating and comments by: guscampbell-ga
This answer has not been rated.
Subject: phone search for artist
Category: Miscellaneous
Rating and comments by: fatjack-ga
5 stars
a quick response with the answers I needed---thanks
Subject: Mexico - Cuba
Category: Sports and Recreation > Travel
Rating and comments by: rafet-ga
This answer has not been rated.
Subject: Toshiba SD-3205 DVD Changer Problems
Category: Family and Home
Rating and comments by: bocksolibra-ga
This answer has not been rated.
Subject: Automatic schedule creation
Category: Miscellaneous
Rating and comments by: sjledet-ga
5 stars
Subject: Gas Price Gouging After Sept 11th
Category: Miscellaneous
Rating and comments by: explorer5-ga
This answer has not been rated.
Subject: purchasing Sweety Triumph BULBS
Category: Family and Home > Gardening
Rating and comments by: pigsinablanket-ga
3 stars
The answer got me half way there.
Subject: Transparent Glass Decorations of the Ocean
Category: Miscellaneous
Rating and comments by: ewang-ga
4 stars
While I would have liked to have found something a little cheaper, the
answer definitely fills the bill for what we were looking for. Thanks
to the researcher and Google Answers.
<<  Prev 50 Ratings

Google Home - Answers FAQ - Terms of Service - Privacy Policy