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: keithvp
  • Content: Threads
  • Order by date
  1. keithvp

    MS Web Browser Control

    Hello, I have designed an Access DB that collects data and and extracts it to a text file. I then coded the DB to FTP the text file. In order to make it easier for the user, I inserted a Web Browser Control on the form where the user selects the data. Originally, the WBC opened to the FTP site...
  2. keithvp

    Insert into SQL server table issue from VB

    I am working on a VB interface to a SQL server that will be used to track contract requirements. I am taking data from two tables and inserting it into another table that has been created. All of my SQL statements are correct. I have tested them in Query Analyzer. When I try to do the same...
  3. keithvp

    Script for system uptime

    Does anyone have a script that checks the system uptime of a Windows 2000 server? The script I have is only for XP and Windows.net.
  4. keithvp

    Using Script to DHCP enable DNS preferre

    I am using the script below to enable DHCP. However, it will not set the Preferred DNS server to DHCP enabled. I need to be able to switch between all static and all DHCP enabled. How do I add in the cabability to set the Preferred DNS as DHCP enabled after it has statically assigned IP...
  5. keithvp

    How to Statically assign preferred Dns Address

    Hello I am using a script from TechNet to statically assign an IP address for In/Out of office purposes. The script is below. However, I also need to statically assign the preferred and secondary dns servers. What is the vbscript reference to dns for me to assign those addresses? Thanks...
  6. keithvp

    min() function excluding 0

    Is there a function in Excel that will find the minimum value in a range while excluding any zeros as a value? Or has anyone tweaked the min function to do this?
  7. keithvp

    Using DIR() to Link Images from CD-Rom

    I have written a program that links images into a database to create ID cards for school pictures. It linked images. However, when an id did not exist on the CD, the next image in order on the CD was put in its place, i.e no 1.jpg on CD but 2.jpg does and is place in the record for 1. I tried...
  8. keithvp

    "OLE Server Does not support Linking" Error

    I am pulling images off a CD to link into a table. I am using the following code: Private Sub Command3_Click() On Error Resume Next Dim FilePath As String Dim FileExt As String Dim try As String Dim final As String FilePath = "e:\" FileExt =...
  9. keithvp

    Problem linking objects through event procedure

    Hi, I have a problem with my event procedure: Private Sub Command3_Click() On Error Resume next Dim FilePath As String Dim FileExt As String FilePath = "e:\" FileExt = ".jpg" Do While Not IsNull(Me!ID) Me!Pict.SourceDoc = FilePath & Me!ID &...
  10. keithvp

    Inserting multple OLE images into a table at once not individually

    I have several portrait images that I need to insert into a table OLE field.  How would I go about setting up Access to insert all of the images at once instead of having to insert each image into the OLE field one at a time?  I have too many images to do it...
  11. keithvp

    Inserting multple OLE images into a table at once not individually

    I have several portrait images that I need to insert into a table OLE field.  How would I go about setting up Access to insert all of the images at once instead of having to insert each image into the OLE field one at a time?  I have too many images to do it...

Part and Inventory Search

Back
Top