Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations wOOdy-Soft on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Recent content by snoopy6129

  1. snoopy6129

    Alternate App to Restore a Backup Set Created from Backup Exec 2010

    Found an answer to my own question. Got a response in Spiceworks to download and install a trial edition of Symantec Backup Exec. This will work since we just need to restore data.
  2. snoopy6129

    Alternate App to Restore a Backup Set Created from Backup Exec 2010

    We want to just restore data from a backup set created by Symantec Backup Exec 2010 on a computer that does not have this software. Short of purchasing Backup Exec, is there an alternative application (open-source or lower-cost) that recognizea this file format? We just to restore and do not...
  3. snoopy6129

    Possible to use SHA-3 for encrypting database data?

    Thank goombawaho. Yes, it makes sense. I appreciate your input. It helps me validate my concern..
  4. snoopy6129

    Possible to use SHA-3 for encrypting database data?

    We are working with a vendor that will be in custody of some of our business data (e.g., customer contact info, products purchased, payment info, and similar). To get a sense of how our data will be protected, I asked a few questions about data encryption and data backup. When I asked i asked if...
  5. snoopy6129

    Getting 'like' behavior in Select Match/Against

    Thank vacunita for the helpful tip. Your 'OR' idea works. Much appreciated it, thanks.
  6. snoopy6129

    Getting 'like' behavior in Select Match/Against

    I have built a product search feature for a website I am working on. The search feature works. But I would like to enhance it. Right now, for example, if someone where to enter the keyword duck in my 'product search engine', only records that has the exact spelling of duck are displayed. What I...
  7. snoopy6129

    Constant Restarts

    I know you mentioned its not a temperature issue, but try this anyways. Remove the side panel of the computer to expose the internal components and leave the computer on for a while. If it doesn't restart on you, then its likely the problem you are having is thermal related. Also try...
  8. snoopy6129

    360 rotation using a slider

    I'm gonna bring this thread back to life since I have the same need as HOGlette originally posted. I was using a software I brought that automatically generate 3D product shot from my images. It does a great job creating the final result but most visitors aren't able to view it. Not good...
  9. snoopy6129

    Need help in buying new computer

    I agree with Xemus, get the system with more memory. Also, definitely get a hard drive with a spindle speed of 7200RPM. Ones with 5400RPM will disappoint you. You'll be able to read/write faster to the drive with a 7200RPM spindle speed. And if, you have enough cash left, get a hard drive...
  10. snoopy6129

    WD Sata drives won't power up

    I'm guessing the issue maybe the power supply unit. Quite possibly the circuit breaker within the PS unit tripped. I actually just got my new WD 250GB SATA drive this week. Plugged it in to my system and it works great. Even though the drive supports Molex or SATA power connector, I connected...
  11. snoopy6129

    Empty reports - how to avoid error

    Have you tried inserting the following code in the On No Date event of your report? The report would close (without any popup messages) if there are no data and your VBA code will continue opening up your next report. Private Sub Report_NoData(Cancel As Integer) Cancel = -1 End Sub -Pete
  12. snoopy6129

    Unexpected HTML result from SendObject

    I've been used DoCmd.SendObject to generate emails in plain text. That's been working out great. Now, I'm trying to use DoCmd.SendObject to generate an HTML formatted email instead (for looks essentially). If I remember correctly, I've read in the past that DoCmd.SendObject can also generate...
  13. snoopy6129

    Adding string to a sql string

    I haven't a clue what went wrong... but I used $sql_ad = "SELECT * FROM Ad WHERE"; $sql_ad .= " StateIDKeyRef='$StateID'"; and it echoed SELECT * FROM Ad WHERE StateIDKeyRef='37' Worked out perfect, ran the statement and it queried perfectly. Thanks everyone for your help.
  14. snoopy6129

    Adding string to a sql string

    Hi All, I'm trying to add a string into an already existing string. I want to pretty much have the following string $sql_ad = "SELECT * FROM Ad WHERE"; $sql_ad = $sql_ad." StateIDKeyRef='$StateID'"; // sql_ad + "(another string)" to attain this...
  15. snoopy6129

    iif...then comparision giving baffling results

    Thank you SoloDroid and WhiteZiggy. Your tips worked out perfectly. That was all that was need for me to get my expression working. Thanks again. Pete

Part and Inventory Search

Back
Top