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 SkipVought 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. DaveShaw

    Disabling a field

    Include the 'Readonly' attribute in the <INPUT> tag. Thanx Dave Shaw!
  2. DaveShaw

    Can anyone recommend a PHP editor?

    Crimson Edit is Very Good. http://my.netian.com/~igkang/cedt345r.exe It supports many languages and is fully customisable. For a review visit http://www.download.com and do a search for 'crimson edit' Thanx Dave Shaw!
  3. DaveShaw

    Textarea Cursor Possition

    I am trying to set focus on a textarea and put the sursor at the end of the text. I can set focus but cannot got to the end. Is this possible? Thanx Dave Shaw!
  4. DaveShaw

    Textarea Cursor Possition

    I am trying to set focus on a textarea and put the sursor at the end of the text. I can set focus but cannot got to the end. Is this possible? Thanx Dave Shaw!
  5. DaveShaw

    Access 97 Disk Or Network Error

    When I run Access 97 on NT4 I get the error msg &quot;Disk Or Network Error&quot; - OK. Then a message telling me that there is not enough memory to run access 97. I have 128Mb. Can any one help. Thanx Dave Shaw!
  6. DaveShaw

    I am running php 4.2.1 on WIn2k ser

    OK Sorted Thanx Dave Shaw!
  7. DaveShaw

    I am running php 4.2.1 on WIn2k ser

    I am running php 4.2.1 on WIn2k server with IIS and i am trying to send out many e-mails to a lot of people. The flaw is each person cannot know who else recieved the email. I AM NOT A F*CKIN SPAMMER!!!! this is the first part of my code for the headers. The e-mails are send to the To: Person...
  8. DaveShaw

    Upload with registered_globals on

    I am trying to write a file upload script but i also am not allowed registered_globals on. My original script used 'globals' to access the variables, but as this is no longer possible i was wondering if ther was another way around the problem as $_POST[''] and $_GET[''] don't seem to work...
  9. DaveShaw

    Word Wrap Tables

    Is it possible to turn off the automatic word wrap on tables. I am using php to put values into it and these values are longer that the width of the screen. I don't how long the strings will be. Thanx Dave Shaw!
  10. DaveShaw

    Changing Windows Domain Password

    Is it possible to change your windows NT/2K domain logon from within a web browser. I know that you will need a COM+ application plugged into IIS. I also have a different Fileserver and Web Server. Thanx Dave Shaw!
  11. DaveShaw

    Connection Stings On Netwrokd

    I am trying to connect to an Access 97 Database on a network - the path is \\tn-db\picklists\syndicated13 and the file is picklists.mdb can anyone help me constuct a connection sting. Thanx Dave Shaw!
  12. DaveShaw

    Refresh and return

    itsita001, Try using a server side language such as PHP. That will tell you much more about your client than JS will. Thanx Dave Shaw!
  13. DaveShaw

    Password Protect Page

    sleipnir214, Depends Who Owns The Server... Thanx Dave Shaw!
  14. DaveShaw

    delay in calling a function

    You Could also use a timer to create a delay. Sub Button_Click() timer1.delay=1000 timer1.enabled=true normal_button.visible = false coloured_button.visible = true end Sub sub Timer1_Timer() call newform.show end sub Thanx Dave Shaw!
  15. DaveShaw

    Password Protect Page

    You Could also use an include file that checks the session variables against the ones in the mysql database. Each time they view a page the user will have thier data authenticated. If the user is not valid re-direct them to the login page, else show them the rest of the document. P.S. Only...
  16. DaveShaw

    PHP &amp; MySQL

    The Error is in you query's syntax. Echo out your query, copy and paste it into your mysql client program. This will give aditional help debuging the query Thanx Dave Shaw!
  17. DaveShaw

    No DirectoryIndex File

    How do you stop people viewing the directory contents if there is no directory index file (i.e.index.php). Without writing a re-direct script and placing it in every directory. Thanx Dave Shaw!
  18. DaveShaw

    trunicating 1st letter in comments

    are you sending the '\' - backslash with the comments if so use \\ to send a back slash. Also use php functions add_slashes() and strip_slashes() - see http://www.php.net for more info. Thanx Dave Shaw!
  19. DaveShaw

    How do i find out the index im on in a listbox

    Running this Bit of code will return the index as c Private Sub Command1_Click() Dim a, c As Integer For a = 0 To (List1.ListCount - 1) If List1.Selected(a) = True Then c = a Next a MsgBox (c) End Sub the first object in the list will be 0. Thanx Dave Shaw!
  20. DaveShaw

    I am using session_set_cookie_param

    I am using session_set_cookie_params (); to set the expiry date. But will there be a problem if the server time is say 13:00 and the clients PC time is 15:00. If it is set to expire 1hr after session_start(); what time will the session expire: 14:00 or 16:00??? PS Do I need to put...

Part and Inventory Search

Back
Top