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

    Win2k Pro as VPN server

    I am having problems using Windows 2000 Proffesional as a VPN server for a small network. Here is the present configuration: VPN Server: -Windows 2k Pro with Incoming Connection setup for VPN -Users are setup for connections -A range of IPs are specified: 192.168.1.125~149 -There are two NICs in...
  2. Tuck007

    Form Query return from Numeric to Alpha Numeric

    I'm not sure if this is a query or report type of question. Our present system wants a specific file format for the payroll. Employee #, JOb #, Hour Type (E01 - E05), and Amount of hours. Three of these are easy and done. The Hour Types is what I have questions about. The database has them...
  3. Tuck007

    Access 2000 Between Dates Query

    I don't normally use Access, and I am sure something like this has been coverd once before, so thanks ahead if anyone knows a thread I can go look in before wasting peoples time. I am creating a query for a time keeping report. I'd like to prompt the user for a Time Period End Date that will be...
  4. Tuck007

    Access reading from Master Builder files

    My company uses Intuit Master Builder 2004. I haven't seen a forum for Master Builder here, but I thought I would start ion this one. Master Builder does not have a good way to alert me to when a customer's service maintenence agreement is due, basically we have to go through our records every...
  5. Tuck007

    OS X Imagesetter LineScreen Issue

    Here's a new one for us Imagesetter people. Using OS 10.2.8, Quark 6, and my Agfa SelectSet 800, I can not print at 160 lpi. I can print up to 150 lpi just fine. The job is for a Web Offset and they require film at 160 lpi. In quark, the LPI is set to 160 using the Agfa SelectSet 800-A PPD that...
  6. Tuck007

    OS X Network Preference non-save issue

    I have been running into a wall of sorts with my Mac OS X Network Preferences. I noticed it in OS 10.2 and it's still a problem in 10.2.8. When I go to Apple/Location... it just says Open Network Prefs. I open them, and here's what I do: 1) Add new location called "Broadband", it is...
  7. Tuck007

    Addtron Wireless 802.11 PCMCIA card, no drivers?

    Don't know if this is the correct place to post this, so let me know. I have this old Addtron IEEE802.11(b) Wireless PCMCIA card. I am trying to use it on a Toshiba Satellite laptop. When I plug the card in, Windows 98 reports that an Addtron-AWP-100 Wireless PCMCIA device has been inserted and...
  8. Tuck007

    Outlook Express 5 Inbox Corruption, help!

    A users inbox has become corrupted some how in Outlook Express 5.0.6. What';s happening is that no emails appear in the email list when the user clicks on or opens the inbox. the user can still do a send and receive of her email and the Folders pain indicates that the new emails arrive. It gets...
  9. Tuck007

    OS X AGFA PPD Imagesetter issue

    We are using a AGFA AccuSet 800 Plus Imagesetter here. We've been using Mac OS X with Classic and OS 9.2.2. In 9.2.2, all our applications can make use of the PPD for the 800, allowing proper linescreen defining and resolution for all our seperations. All the applications we use (Quark...
  10. Tuck007

    onclick or onchange in select

    Hi, I'm creating a form for estimates. As the user fills in various items on the form, more parts of the form appear to help get all the right information from the customer. I have each section of the form in different tables. I want to have a good way to select the following:<table...
  11. Tuck007

    Forcing Media Bar open

    I'm going to see if I can get more info in other threds, but here is the question. How could one give the option to listen to music while browsing? I have been to some MP3 websites. At MP3.com, when I clicked on a link to listen to music, the browser (IE6) asked if I wanted to play the music in...
  12. Tuck007

    Phone Number Validation

    In my form, I rquest the user to give his phone number in the form XXX-XXX-XXXX. I'm using split(&quot;-&quot;) to put the different parts of the phone number into an array. I'd like to just validate that a certain amount of characters are in each array. How can I do this? Present Code:[code]...
  13. Tuck007

    Counting Sessions

    I have recently created a small webcam page. I want to figure out a way to count how many people are viewing the webcam at any one time. I think I can do this by using sessions. When the first user begins veiwing the webcam, a session is started. Once another user begins viewing the webcam, I'll...
  14. Tuck007

    Form Validation

    Hi! I'm new to Javascript and wanted to make a small validation for my form. Here is what I have constructed thus far: <script LANGUAGE=&quot;JAVASCRIPT&quot;> <!-- hide script from older bowsers function validateForm(form){ ret = true; if ( form.name.value == &quot;&quot; ){...
  15. Tuck007

    Changing text when a session is started

    I use PHP to start a session when users log in. I'd like an option to log off to appear when the session is started. Is there a simple way to do this? .:TUCK:.
  16. Tuck007

    Refreshing Logoff info

    I feel a little silly. I love using PHP, but I think I may need a little javascript for this. I want one link to activate after a user has been verified and is in session. What I've constructed works, but it's not seemless and kinda gross, take a look: [code] 1 <?php 2 session_start(); 3 ?> 4...
  17. Tuck007

    2 Coldfusion Servers, 1 SQL Server

    I have source files for the same application stored on different Coldfusion servers. Lets say we're testing and are running application Test on both servers but only the one database. Initially only one server (local to CF server1) can find the database. The second server (located at ISP) cannot...
  18. Tuck007

    Multiple Variable and fwrite

    I understand how to write to a file. I'm using the file to store username:password in that format. I got this example from WebMonkey. My question is, how do I get me content variable to format with multiple varibales from my add form? Here is the code I am using. The form passes $newuser and...
  19. Tuck007

    Sum of an Array

    Is there a way to get the sum of all the values in an array, from a MySQL database?? Look at this snippet: 67<?php 68if(!empty($result)){ 69 while ($myrow = mysql_fetch_array($result)) { 70 echo &quot;<tr>&quot;; 71 printf(&quot;<td bgcolor=\&quot;#FFFFFF\&quot...
  20. Tuck007

    Unexpected T_IF

    I'm trying to make a simple login in page, and I'm using a MySQL database to store one usernames and passwords. This is a snippet of the login.php that I am using. I'm also using PHP 4.2.1 20$myrow = mysql_fetch_array($result) 21 22if($_POST['username'] == $myrow['username'] AND...

Part and Inventory Search

Back
Top