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 TouchToneTommy on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Search results for query: *

  • Users: clapper62
  • Content: Threads
  • Order by date
  1. clapper62

    decibel calculation

    Hello All I have this code Private Sub cmdCalcPowerDbGainLoss_Click() Dim PowerGainRatio As Double PowerGainRatio = Me.tboxOutputPower / Me.tboxInputPower Me.tboxDbGainLoss = Log(PowerGainRatio) * 0.43429 Me.tboxDbGainLoss = Me.tboxDbGainLoss * 10...
  2. clapper62

    set access form recordset to ADO recordset

    I'm trying to set an Access Forms recordset to an ADO recordset containing a list of tables in an Access .mdb database with the following code Set rst = objConnection.OpenSchema(adSchemaTables) rst.MoveLast rst.MoveFirst Debug.Print rst!TABLE_NAME Set...
  3. clapper62

    create a recordset object from a forms recordset

    I have a form with data I populated with a ADO recordset from SQL server what I would like to do now is create a recordset object from the data in the form something like this Dim rst As New adodb.Recordset Set rst = Me.Recordset Set rst = Nothing this code runs without error but I dont think...
  4. clapper62

    Bind ado recordset to access form

    I'm trying to list the tables from a sql server database in an access form I have a continuos form wih one field Named TABLE_NAME and it's recordsource set to TABLE_NAME with the following code Private Sub Form_Open(Cancel As Integer) Dim objConnection As ADODB.Connection Dim rst As New...
  5. clapper62

    Dell Optiplex GX520 With Windows XP Won't Boot

    The computer won't boot to Windows I get to the boot options menu but won't boot to safe mode or any of the other options just stops at a black screen Tried to boot from an XP install disk, it stops at the blue screen that says Windows Setup at Top and "Setup is starting Windows" at bottom...
  6. clapper62

    Quotation Marks In Test File

    I'm writing a program that gathers computer information using WMI I have a function that returns the installed OS Public Function GetOS() As String On Error Resume Next Dim strComputer As String Dim objWMIService As Object Dim objOperatingSystem As Object Dim...
  7. clapper62

    Public variables in database with multiple users

    I have an Access database with multiple users which has public variables declared in a module. My question is if 1 user on 1 workstation changes the value of the variable is that value changed for any other users on different workstations? "There is no pleasure in having nothing to do; the fun...
  8. clapper62

    Sendmessage / WM_SENDTEXT

    I'm trying to control a logon screen in another app from my program. It almost works but the WM_SENDTEXT only sends the 1st character of the strings "userid" and "password" I want to send Dim lRet As Long Dim strText As String Dim l_LoginWindow As Long l_LoginWindow =...
  9. clapper62

    Automate Save As

    I'm trying to automate the creation of a report called TimeSheet this code does create the pdf file as desired but it requires input from the user because the Save As dialog box pops up. Is there anyway to tell the Save As dialog box the file name and location to save through code? Dim...
  10. clapper62

    Automate Save As

    I'm trying to automate the creation of a report called TimeSheet this code does create the pdf file as desired but it requires input from the user because the Save As dialog box pops up. Is there anyway to tell the Save As dialog box the file name and location to save through code? Dim...
  11. clapper62

    Pavilion a1323w integrated graphics

    Hello, The integrated graphics on an HP Pavilion a1323w has failed. I tried an old PCI card I had lying around and the machine works. My question is if I want to replace the integrated video with an expansion card, what would be a comparable PCI video card or possibly a PCIe card...
  12. clapper62

    HP pavilion 502n Power Supply

    I have an HP pavilion 502n that will not power up. It has a microATX power supply in it. I have tried other known working supplies with no luck. My question is the power supply in the PC has a 3 wire connector that leads to the motherboard(2 black 1 green) and my swapped out power supplies...
  13. clapper62

    What can Subclassing do?

    Before I try to figure out how to "Subclass" or is "hook" the proper term, I'd like to know if it can do what I would like to do. I want to get a handle to a window (any window) not necessarily my program. Then I can get a handle to all the controls in that window .. command buttons, textboxes...
  14. clapper62

    Need help with SQL statement

    Someday maybe I'll get the hang of SQL statements until then could someone help me with this one I'm trying to select records between two dates and also where preparer = strPrep Dim dbs As Database Dim rst As DAO.Recordset strSQL = "SELECT * FROM saved_ships WHERE preparedate BETWEEN ' #...
  15. clapper62

    RootkitRevealer Scan

    Just Finished a hard cleanup of a friends computer. Everything seems ok now but ran RootkitRevealer and below are the results if the scan. HKLM\S-1-5-21-1715567821-1604221776-725345543-1003\RemoteAccess\InternetProfile 4/3/2006 12:03 AM 7 bytes Data mismatch between Windows API and raw hive...
  16. clapper62

    New Hardware Wizaed on startup

    I have Windows 98SE and the New Hardware Wizard keeps popping up on startup I hit cancel and go to the device manager and thier are no devices listed that need drivers. I don't have any new hardware what could be causing this? "There is no pleasure in having nothing to do; the fun is having...
  17. clapper62

    Rezise Datasheet columns

    Hello All, I have a form that opens in datasheet view. Whenever I double click on the line between 2 columns it will automatically adjust the width of the column. Is there any way through code to simulate this when the form loads so that all of my columns are resized to the right width. Thanks
  18. clapper62

    Max Parallel Ports

    Does anyone know how many parallel ports can be installed in a PC?
  19. clapper62

    General question about malware

    Something that has been bothering me while viewing many of these threads is that when someone says they have found a file "anything.exe" that they have identified as malware the first suggestion is to post a hijackthis log or run ewido or any of a multitude of malware scanners. Now what is...
  20. clapper62

    Get Adapter card information

    I'm trying to write a program that will automatically enter some system info into a database. I can get things like CPU speed, memory, OS but what I'm having trouble with is I'd like to get some info on the hardware installed on the computer, particularly the adapter cards like the info in...

Part and Inventory Search

Back
Top