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 strongm 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: *

  1. JohnBoy2005

    Connect to database using ip address or drive letter

    I'm trying to connect to a database on another server using the following code: conn.Open ("Provider= Microsoft.ACE.OLEDB.12.0;Data Source="\\10.48.224.5\c$\database\test.accdb") I'm getting errors. Permissions are fine. Is it possible to do. Cheers
  2. JohnBoy2005

    Advice Please

    I've been developing VB6/Access applications for years. Never had a problem. I'm now starting to develop programs for my school that are starting to hold large amounts of data. Do i need to start thinking about moving away from access and going to Microsoft SQL Server or MySQL. Also, is there...
  3. JohnBoy2005

    Creating Images for Deployment using WDS

    I'm have searched high and low for the tools to create a windows xp image (wim) to deploy using WDS 2003 server. I am told to use the WAIK, but I can only find ones for Vista and 7. Any ideas where I can xp image creators. Cheers John
  4. JohnBoy2005

    Listing Content

    I'm calling a database and producing a recordset which may have over 100 items in it. Inside of showing all 100 items on the page, I would like to create and "Next 10" "Last Page" etc.... Any pointers would be much appreciated. Cheers John
  5. JohnBoy2005

    ComboBox Setting Value

    How can I set the text value of a combo box, based on its itemdata value e.g. 'initial populate of combo box Dim rstSubject As Recordset Set rstSubject = dbs.OpenRecordset("SELECT * FROM tblSubjects ORDER BY Subject ASC") rstSubject.MoveLast rstSubject.MoveFirst Do Until rstSubject.EOF...
  6. JohnBoy2005

    Protecting Content/Downloading

    I've got dvd content for my students I need to protect. The files are large so they will not push through adodb.stream. Is there a way of hiding content behind "wwwroot" level and forcing a "Save Target As" Cheers John
  7. JohnBoy2005

    Making Connection To Server using WMI

    I'm trying to connect to my webserver using an asp\vbscript script strComputer = "webserver" Set objSWbemLocator = CreateObject("WbemScripting.SWbemLocator") Set objSWbemServices = objSWbemLocator.ConnectServer _ (strComputer, "root\cimv2", "test", "test")...
  8. JohnBoy2005

    Downloading Large Files

    I run my own webserver in school (IIS6 W2k3 SP2 1TB wwwroot) I want to make available large video files for students to download, between 2GB and 4GB in size. I normally use the ADODB.Stream object to force downloads of Word, Excel, Powerpoint etc. but asking the object to download video files...
  9. JohnBoy2005

    INNER JOIN Query/Recordset Use

    I'm using an INNER JOIN Query to populate a recordset. "SELECT tblMessages.*, tblMessagesLink.* FROM tblMessages INNER JOIN tblMessagesLink ON tblMessages.MID = tblMessagesLink.MID WHERE tblMessages.MID = '" & strMsgID & "' AND tblMessagesLink.User_ID = " & intUID" User_ID is common in both...
  10. JohnBoy2005

    Is this a job for ISA Server?

    I've just had installed a web server at school. The server has W2k3 Server and an IP address of 10.50.16.3. This I.P. address has been supplied by my ISP, who have split the incoming internet connection into 2 VLAN's, one for the exisiting school LAN, the other to my server DMZ. At present, if...
  11. JohnBoy2005

    Firewall/Lan protection

    I have a Windows 2003 Server (Standard) which acts as a web server for my schools website and intranet. I have been given an IP address by my ISP for the server 10.56.12.3. This WAN/DMZ link is seperate to the schools internet connection. I want to install a second NIC in the server so that...
  12. JohnBoy2005

    Cisco ASA 5505

    I am wanting to buy a firewall. http://www.pcwb.co.uk/catalogue/item/CISASA63 The info mentions 10 Users, I am really new to this so sorry if this is a stupid question, but does that mean 10 VPN Connections or 10 concurrent connections through the firewall. Also, the unit has 8 ethernet...
  13. JohnBoy2005

    Accessing file higher than wwwroot

    I've got a bank of media files in a directory outside the wwwroot folder. How can I get my code within wwwroot to access the directory and its files. I have tried Server.MapPath("../../../media/") & FileName but it doesnt want to work. Cheers John
  14. JohnBoy2005

    Playing Video on Website

    Hi, This is a general advice question. When would you consider using FLV/SWF/Flash Media Server on a website to play video over just embedding a WMV into the page. This is for my schools website, max simultaneous users would be about 30 to 40. I would like to develop a "Youtube" type style of...
  15. JohnBoy2005

    Digest Authentication Timeout

    I've just set up a Win2K3 Server with IIS6 for my work Intranet. I'm using Digest Authenication. Logs onto the site fine, but every 10 mins or so the user is required to log in again. Is there a Digest Authenication timeout setting somewhere to stop the webpage continually requesting the user...
  16. JohnBoy2005

    Problem Passing Variables from Layer to New Window

    I've got a diary summary on my Intranet home page with 3 icons, 5 Day View, Month View and "Select A Date" Each icon calls a hidden layer which display a calender. The same calender (layer) is called each time ("Layer1") The layer contains an iframe which loads my default calender viewer page...
  17. JohnBoy2005

    Submitting Form Data

    Is there a way, in code, to submit html form data to a web page, without having to populate and auto submit a WebBrowser Control with a html form. Cheers John
  18. JohnBoy2005

    Moving picture box

    I've got a picture box that holds a menu that moves in and out of view as and when required. When it's moving back, its leaving a black trail. Any reasons... Heres the code, it's a bit crude, but works well, apart from the black trail. Its on a command button click If strMenu = "In" Then...
  19. JohnBoy2005

    Email Checker

    My place of work uses a webmail service for all the staff. I'm trying to write a program that sits in the system tray and checks for new email. I have pop3 and smtp addresses, along with usernames and passwords. I'm trying to use the MAPI control but this seems to want to use Outlook. Is...
  20. JohnBoy2005

    Getting All File Properties

    Is there a way of getting the full list of file properties from a selected file e.g. "Duration", "Camera Model", "Program Name" etc.. Basically, anything that can be listed in Windows Explorers "Choose Details" from the Columns. Cheers John

Part and Inventory Search

Back
Top