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

    Storing rectangle/parameters in an Array

    I'm currently trying to develop a GUI for a "Tower of Hanoi" game. (The "towers" game should be familiar to many out there as a lesson in recursion. I however am using this example to practice developing GUI's and Graphics) Not sure if my train of thought is on the right track so I'll write a...
  2. atsea

    Java - drawing images to a JPanel

    I have experience using PHP, Perl and JavaScript, and am now planning to teach myself Java... I have decided to work with the NetBeans 5.0 IDE, and have completed many tutorials most of which were simple applications that accept command line arguments. Recently I have moved to learning GUI...
  3. atsea

    access to files/folders only from index.html

    Basically my site has 2 pages (that the user should be able to view: index.html and content.php content.php should NOT be accessable unless it has been accessed though index.html (i.e. I don't want to be able to access content.php, or any other .php file, through the URL) with that said...
  4. atsea

    passing vaiables between external php files

    I have to pages: login.html and Content.html both contain multiple (external) php scripts in the header. Is it possible to pass variables between all the (necessary) .php files as they are executed. since the .php files are external and the page being accessed is a .html I don't think its...
  5. atsea

    RegExp - Removing html div tag and attributes

    I'm hopeing that a RegExp guru can grace me with thier knowledge... I would like to accomplish the following: Input: <div style="text-align:center;width:inherit;text-color:blue;">SOME TEXT</div> Desired Output: SOME TEXT currently playing around with something like this: /<(div)([...
  6. atsea

    STR_TO_DATE(str, format)

    I have a form with a bunch of date fields (among others: name, address, etc)... each date field accepts the date in the format mm/dd... All the information on the form is saved to a DB... My save (submit) feature works great except for the dates. Beacuse the format does not match the...
  7. atsea

    JS prompt pop-up

    Alright, so I have the prompt box working almost exacly the way I want. There is one more thing I would like to accomplish. Currently I have somthing like this: <script> function javascript_prompt() { //two arguments are required for "prompt" boxes var message = "Please enter...
  8. atsea

    editable div

    I remember passing over a site that had a tutorial how to do this, but I didn't think much of it at the time and now I can't find it...hopefully someone here can point me in the right direction. I have created a small table using <div>'s some of these I would like to give the user the abilty to...
  9. atsea

    load (script/function) after login verification

    Hello, I have a webpage that contains (among other things) this; <div id="table1" class="table1"> <script type="text/javascript"> var cust = new Grid("Customer", 30, 10); cust.init(Def); cust.doAction(); </script> </div> The code above is resposible for defining and...
  10. atsea

    clear some, but not all fields button

    Currently I have an access form that allowes a user to fill in customer information. Easy enough. Here is my problem... Lets say there are 5 text boxes...two of the text boxes are for the customer name (first and last). (Note: The names of the customers are "hardcoded" in the table, the...
  11. atsea

    adding records to a result set

    now that I finally have my sessions working (thanks to Lrnmore)I've been able to properly remove records from a result set that have been stored in a session... Next I would like to be able to add one result at a time to the result set. Example: I begin with an empty <iframe> (except for...
  12. atsea

    PHP sessions - not enabled?

    I just started working with PHP sessions and have ran into a problem. I was given a simple code that would allow me to see if I had sessions working or not. When running the code I could see that new session ID's were being created in the C:\Temp folder (as specified in the php.ini file) but...
  13. atsea

    removing rows from record set - sessions?

    Currently I have a .php file that runs a query on a MySQL db and displays the results as a table in an .html file (using <iframe>). In addition, the first column of each row contains a "remove" button. When the user clicks the "remove" button that row is removed from the result set and the...
  14. atsea

    passing values from php generated drop-down menus

    I recently hit a little snag...maybe someone here can advise me on the best way to accomplish this: A little background... So far my program generates a table and two drop down menus (ddm) containing values acquired from a mySQL database. In order to maintain .html extension on my webpage I...
  15. atsea

    Fading in/out scenes

    Currently my knowledge of Flash is very basic...I can preform simple animations and develope interactive flash content, however I've recently ran into a wall when attempting to create my first movie. As of now, my movie consists of 4 scenes. I would like to have the end of one scene fade out...
  16. atsea

    Button Event - export to txt file

    It has been a while since I have used access... All I need to do is export a file to a .txt file. I've created a table with some values, and a simple form that has one button ("export"). Currently I'm trying to use: DoCmd.TransferText but I cant seem to get it to work. I cant remeber all of...
  17. atsea

    Delimiting Text file for reading

    Currently I have a simple program that takes user input and checks it against a list of values in a .txt file. when using windows it works fine (all records are delimited by a carriage return, I used the "chomp" function for this) but, when I moved the .txt file to a linux platform the records...
  18. atsea

    changing root folder for apache

    Currently the root folder is set as C:/Program Files/Apache Group/Apache2/htdocs I would like to change it D:/My Webpages Could anyone refer me to all the different places that need to be altered in the httpd.conf file to accomplish this? In addition, Im having trouble accessing...
  19. atsea

    character conversion and password verification

    Hello everyone, Currently I have written a program that will take user input from a html textbox and check it against a list of valid IDs contained in a .txt file. The problem I have now is: the IDs in the .txt file are all in unicode, however Im using a Japanese computer (OS, Keyboard, etc)...

Part and Inventory Search

Back
Top