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 Wanet Telecoms Ltd 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. axsom1

    Win98 client mapping to win nt4 shares

    Windows 2000 and above will map to subfolders of a share. I guess I was hoping Windows 98 would act in the same way. Thanks for the reply's. It's been awhile since I've had to do anything with Windows 98. Thanks, John
  2. axsom1

    Win98 client mapping to win nt4 shares

    I have some windows 98 machines that I want to have map to a few shared folders. I would like to map them to a subfolder directly, but no matter what it only maps to the root folder. e.g \\server\share\folder will map to \\server\share. Does anyone know why this is? Thanks, John Axsom
  3. axsom1

    Help with an array problem

    Sure thing, as you can tell I'm a real newb with PHP. Basically, I need to import the data from a text file into my database but I need to do some data transforms. What I was trying to do was create some arrays for each field in my csv file so that I can match only cost center fields with my...
  4. axsom1

    Help with an array problem

    I'm spinning my wheels here... I'm having a problem with the code below. I'm successfully breaking out the comma delimited fields into their own arrays for database inserts (the data is not exactly the same as the table structure). That all works fine and dandy, my problem is I wan't to do a...
  5. axsom1

    Problem with DIV tag and style null or not object error

    Ahhh, cool. That worked. Thanks for the input! John
  6. axsom1

    Problem with DIV tag and style null or not object error

    I keep getting the error that document.safetyForm.elements.AO.style is null or not an object. Can anyone shed some light as to why I am getting this? The code is as follows (sorry it's so long, I wanted to include all the code): <?php //Ensure this file is being included by a parent file...
  7. axsom1

    T_CONSTANT_ENCAPSED_STRING Errors

    Thanks guys! I knew it was something simple...
  8. axsom1

    T_CONSTANT_ENCAPSED_STRING Errors

    Does anyone notice why I am getting the following error with the code below: Parse error: parse error, unexpected T_CONSTANT_ENCAPSED_STRING in D:\Web Sites\safety\queries\emerg.query.php on line 23 (marked below with '-->') <? //Report Title $title = "Emergency Preparedness"; //Define text...
  9. axsom1

    Is there a way to reset an individual form element?

    Dave, I will try what you suggested...I will let you know what I find out. Thanks for the help. John
  10. axsom1

    Is there a way to reset an individual form element?

    Dan, The group 1 radio buttons are those with the name="1" buttons. I have the display:; set because when I click on the radio button, it launches some code that changes the display status of the div tags. This one is not set as it is the default. Thanks, John
  11. axsom1

    Is there a way to reset an individual form element?

    I have an application that uses a single form but uses DIV tags to display different sections with tabs. I would like to be able to clear only certain form elements when they click on a different radio button. Below is a little snippet of what I have: <tr> <td style="border-right: 1px...
  12. axsom1

    Changing the contents of a drop down list box?

    Thanks again! Everything working like a champ!! In case anyone else reads this, I named each select list something different and just checked if the variable was empty before inserting the data into the database. If it is empty, the query changes slightly to reflect that. John
  13. axsom1

    Changing the contents of a drop down list box?

    Cool...this worked. I will play with the values that are passed in the form, but the code worked by just adding the form name and changing getElementByID to: document.form1.elements['id name'].style.display = ..... Thanks again!! John
  14. axsom1

    Changing the contents of a drop down list box?

    Thanks for the quick reply!! Well I'm trying this method...but I keep getting the error the object doesnt support this property or method and it references the line: document.getElementByID('something')..... Hmmm....will keep pluggin away at it. Thanks, John
  15. axsom1

    Changing the contents of a drop down list box?

    Is there a way for me to select a radio button and change the contents of a list box? I currently generate my list box with some php, but I would like to dynamically rebuild the list based on the selection of a radio button without refreshing. I was thinking of loading an array for each object...
  16. axsom1

    How do I compare numbers in a natural order

    DOH! Do I feel stupid or what... [flush] Thanks for the quick reply...
  17. axsom1

    How do I compare numbers in a natural order

    My problem is our application requires client certificates. All I'm doing is retrieving the number of days left on the certificate and passing that into this little script. <% dim cert_days cert_days = DateDiff("d", Now, Request.ClientCertificate("ValidUntil")) %> <script...
  18. axsom1

    Parse text file - Am I looking in the right spot?

    Allright, well here is my final code. It works as I would like it to for right now. Maybe someone can just look over it and suggest some improvements? <? $f = fopen(&quot;bad_text.txt&quot;, &quot;r&quot;); $bad_text = fread($f, filesize(&quot;bad_text.txt&quot;)); $bad_text =...
  19. axsom1

    Parse text file - Am I looking in the right spot?

    Can someone help me understand what I need to do to keep from getting the following error: Notice: Undefined offset: X in D:\Web Sites\babycam_admin\ub92.php on line 19 where X is equal to the array element id differences. Below is the code I am using: <? $f =...
  20. axsom1

    Parse text file - Am I looking in the right spot?

    Well the following code obviously is wrong...maybe someone can help me turn on the light? <? $f = fopen(&quot;bad_text.txt&quot;, &quot;r&quot;); $bad_text = fread($f, filesize(&quot;bad_text.txt&quot;)); $bad_text = explode(&quot;\n&quot;, $bad_text); fclose($f); $f =...

Part and Inventory Search

Back
Top