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. alexfusion

    HARD CODING VS DRAG AND DROP?

    Hi there, I'm sorry I'm late for responding. I agree with most of you.My favorite program is Allaire's Home Site.Thanks so much for your opinions. Hey Anikin,congratulation!! so you don't find "hard coding" hard.I think the same (once I read a lot of stuff). Once again,thank you for...
  2. alexfusion

    HARD CODING VS DRAG AND DROP?

    Hello Everyone, I would like to know the opinion about this question: Me,just like many of you, spend many hours coding our scripts using our favorite program,a lot of time reading about how stuff works,and that is a very hard, task as you know.As a programmer I like that a lot.But with the...
  3. alexfusion

    Accessing dynamic text boxes..

    Hello Andrew: I hope this helps: Rename your text boxes to the same name,let's say quant1.If you do that, a new array of text boxes is created.The array name would be quant1,and you can easily locate wich text box contain the value &quot;xyz&quot;. Here is the example: <html> <head> <script...
  4. alexfusion

    FORMATTING NUMBERS WITH 2 DECIMALS

    Hello everyone, I'm sorrry it took me some time to reply. I must thank you for all the responses I got from you. I was wondering the same question.Why doesn't exists a function to formatting?. I tought about a similar function that was provided by pappaobba. Thanks a lot for the help to all of...
  5. alexfusion

    FORMATTING NUMBERS WITH 2 DECIMALS

    Hello everyone, Simple problem: I have a variable that is adding charges,but the result has to contain always 2 decimals. Let'say: charges+=0.254444444; I use the following to get 2 decimals: charges=Math.round(charges*100)/100; The problem is when the sum gives a result such as 1 or 1.5...
  6. alexfusion

    GUI Help Needed

    Hi everyone, Thank you all for the help.Very much appreciated!.I apologize for the time it took me to write back.I never forget to say thank you. I think a login method on the server is good.I'll try out storing the time the user logged in. Thanks a lot, alexfusion
  7. alexfusion

    GUI Help Needed

    Hello Anikin, Thank you for responding the question.I guess you are right. I can't avoid a power failure or the swith button. What do you think about the javascript way? Kindest Regards, alexfusion
  8. alexfusion

    FORM ACTION=&quot;displayit.php&quot;... Not passing variables. Why?

    Hello, I guess Apache is processing the .php files in your system. If this is done correctly,the posibility is that your PHP configuration file (php.ini) has the directive register_globals = off In PHP 4.X this directive is set to off by default due to security issues. You will find this file in...
  9. alexfusion

    GUI Help Needed

    Hello everyone, First I have to thank to gerrygerry for the help in a post about updating a database.Thanks! I have built an Intranet aplication using PHP and MySQL. The user log into the system and a popup window displays the time he/she is using the system and charges according to that...
  10. alexfusion

    HOW TO UPDATE A DATABASE EVERY N MINUTES?

    Hello gerrygerry, Thank you again for answering. I'll check the url's you gave me.That's a lot of information,but I like it.I will let you know how I go. Thank you so much. alexfusion
  11. alexfusion

    HOW TO UPDATE A DATABASE EVERY N MINUTES?

    Hello there, First of all I have to thank gerrygerry for the thankful words. About the possibility of implementing task scheduler ( I'm working with Windows) proposed by you Leo,it's very interesting.I'd be very grateful if you can give some help about how client side scheduled tasks could be...
  12. alexfusion

    HOW TO UPDATE A DATABASE EVERY N MINUTES?

    Hi gerrygerry, I'm sorry it took me some time to write you back. I was trying something similar to your solution,but I think yours is better. That is exactly what I try to get done.Of course it makes a lot of sense! Once again I must thank you for your help.It's very much appreciated! Very...
  13. alexfusion

    HOW TO UPDATE A DATABASE EVERY N MINUTES?

    Hello gerrygerry, I checked the url you gave me.It's good and similar to what I need but I didn't find a good explanation. Let me explain it more clear. It's a small cyber cafe.Suppose you are a user.You enter your username and password and a popup window is displayed showing the time you are...
  14. alexfusion

    HOW TO UPDATE A DATABASE EVERY N MINUTES?

    Hello gerry gerry, Thanks a lot for your answer. I'm trying to submit form data and insert into the table. I was thinking about the Javascript way. The reason I trying to do that is the following in short: The form is displaying info for users in a litte cyber cafe.The proyect is simple. The...
  15. alexfusion

    HOW TO UPDATE A DATABASE EVERY N MINUTES?

    Hello there, I'm trying my first steps in PHP,so this could be a simple question for the experts. I have a simple HTML form which displays a Javascript clock,and other data in several fields.I have a little MySQL table where I need to insert the form data,but every 5 or 10 minutes.This HTML...
  16. alexfusion

    PopUp: Resize() or Close()?

    Hello adrian , The reason the info window doesn't resize correctly is that you have a little error in the script. You can resize a window by using window.resizeTo(x,y) method where x and y are new dimensions in pixels of the window.The other method is resizeBy(x,y),where x and y will be the...
  17. alexfusion

    having problems with addition!?

    Hello, I never heard too about the toFixed function.It's great. I give fayna a star too! alexfusion
  18. alexfusion

    making a button to start the Search function (CTRL+F)

    Hi math, I have been trying to get something useful for your question,and I got this script.It only works for IE. It's a form field with a search button.It looks for all the text in between <body> and </body>. Maybe it could be useful for you.I hope this helps. <html> <head> <script> function...
  19. alexfusion

    UGLY JAVASCRIPT

    Hi Serge, You are very welcome.Anything I can do for you,I'll try to to my best. Kindest Regards alexfusion
  20. alexfusion

    UGLY JAVASCRIPT

    Hi Serge, I have not working with sounds and javascript,but I guess you should try something like this: <html> <head> <script> <!-- image1=new Image(100,100); image1.src='picture1.jpg'; image2=new Image(100,100); image2.src='picture2.jpg'; //--> </script> </head> <body> <embed...

Part and Inventory Search

Back
Top