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

    PEAR Integrated Templates

    Hi - I am using PEAR IT and it all seems pretty straight forward. However, i am tryign to assign a place holder dymanically by using the <!--INCLUDE --> statement, and it doesn't seem to work for me. Basically I am grabbing a page name from $HTTP_GET_VARS[] and then trying to set it to a...
  2. Knackers

    Shot cut to the right click menu?

    Hi, Possibly a simple question. I am trying to get away from using the mouse as much as possible (because I find that it slows me down) by using the built in shortcut keys. The one that I am yet to find a short cut for is how to invoke the 'right mouse click' menus without actually using the...
  3. Knackers

    Hi - I have written the following c

    Hi - I have written the following class which impliments a Stack: //ImageStack.java import java.io.*; import java.util.*; class ImageStack implements IsaStack { private Vector myStack; public ImageStack(){ myStack = new Vector(); } public void push(Object o){ myStack.add(o); } public...
  4. Knackers

    A custom Cipher class

    I am new to Java so bare with me! I would like to write my own trivial Cipher class so that I can encrypt message going back and forth from a client / server program that I have written. The cipher algorithm is super simple. All I want to do is encode/ decode a character on its ASCII value...
  5. Knackers

    Using Update on a text field.

    New to PHP and MySQL.... I have a form to update data in a specific row. Data types for each of the columns are mostly VarChars but I also have a text field. When I run an update query such as: $sql = &quot;UPDATE EMPLOYMENT SET ref='$ref',date='$date',title='$title',desc='$desc' WHERE...
  6. Knackers

    Mouse events. Mouse Listners

    Hi - I am a Java newbie and I need some help in getting started on a problem. I want to create a swing applet thatHas a circle that moves under mouse control. Thats is to say, that when you click on the applet, the circle will start moving toward the position that the mouse was clicked and...
  7. Knackers

    Conditional inclusion of a script depending on browser

    I have a JavaScript menu that is appearing differently in Explorer and Netscape (the obsolute positioning is different). To solve this, I figured I would just have a Microsoft and Netscape version of the script, and have some kind of conditional inclusion...Does anyone know how? if Explorer{...
  8. Knackers

    REGEX - what the....?

    Hi, I am writing a script that simulates a web server. It accepts a request header and makes the appropriate response etc. I want to impliment Basic Authentication, using dynamic variables from a .htaccess file (AuthType,AuthName). Problem is that the .htaccess file that I am working from is...
  9. Knackers

    Looping through an input file

    Hi Guys, I am trying to process the data in a text file. Problem is that the data is in a strange format. The data is a bunch of attributes about Dogs - but instead of having the data for each dog in the file on a single line (which would just allow you to use the StringTokeniser to break it...
  10. Knackers

    Hi - I am a genuine newbie to Java

    Hi - I am a genuine newbie to Java and am having some problems with the basics, mostly to do with types. I have a method that takes user input from the keyboard and stores it in a String: ---------------------------------------------------------- public String getInput(String message) throws...
  11. Knackers

    Redirect mailbox to an external meail address in Exchange 5.5

    Hi, I would like to set up an a mailbox on our server for an external member of staff. Is there any way that you can redirect incoming mail from name@mycompany.com on our exchange to be forwarded to an external address? The idea is that this person would get all of the internal mail and would...
  12. Knackers

    Stuttering playback in Premier 6.0

    Hi. I have an issue with the preview and export of my timelines appearing jerky and occassionally stuttering. My setup is as follows: Y2K professional OS, PIII - 700Mhz, 256Mb RAM, Sony i-link capture card, Premier 6.0 I am trying to transfer the completed timelines onto a Sony PC110 camera...
  13. Knackers

    Errors after a database defrag - Priv.edb

    Hi, I ran into a bit of a problem yesterday with my exchange server (5.5 SP3). The Priv.edb had filled the drive that it is located on to capacity. This resulted on a loss of outbound email (the internet information service could not start due to lack of space) To try and compact the database...
  14. Knackers

    Restoring after a degrag (eseutil)

    Hi, I ran into a bit of a problem yesterday with my exchange server (5.5 SP3). The Priv.edb had filled the drive that it is located on to capacity. This resulted on a loss of outbound email (the internet information service could not start due to lack of space) To try and compact the database...
  15. Knackers

    Displaying calculations on forms

    Hi, I have a query with an expression in it to calculate days. I want to be able to sum the values of this expression and then display them on a form. Any ideas? Obviously I will have to set the control on the form to an expression, but I think that I having trouble with the syntax. The query...
  16. Knackers

    Compile error when converting to Access 2000

    Hi, I have an Access '97 databease that I am trying to convert to 2000. When I do the conversion, it reports a compile error in a module that is used to calculate the difference between two dates. The module is as follows: Public Function ReturnTheDate() As Date Dim dteStart As Date...
  17. Knackers

    Calculating totals from a subform

    Hi, I have a subform that calculates the number of working days between two date (using a module and a table of holidays) and then an expression that calls the module (deltadays=([holidaystart],[holidayend])). I want to return the calculated total (Sum?) of these days to a control in the parent...
  18. Knackers

    Validating dates

    I have two dtaes in a table - Start_date and End_date. How do I put a validation on End_date to ensure that it is greater than Start_date?
  19. Knackers

    Hyperlinks - not working with 'Open File' button

    Greetings Access gurus. I have a form that has a feild for hperlinks. To make this easier for the user to insert a hyperlink in this field I have a button that allows you to browse for a file using a common dialogue box and module. This all works fine, but when using the button, the file path...
  20. Knackers

    Internet Explorer Code Error Message

    Hi, I have just finished building my first site and used Dreamweaver. (http//www.globalwaterintel.com) It has some javascript functions in it and a scrolling applet. However, once I made the site live on the web server, Internet Explorer gives an error message when you open the site home page...

Part and Inventory Search

Back
Top