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 wOOdy-Soft 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: visualJay
  • Content: Threads
  • Order by date
  1. visualJay

    nothing displays on page

    the time or date does not display on web page what am i doing wrong. <html> <head> <title>Form1</title> <script language=&quot;JavaScript&quot;><!-- function showHour(thehour){ if(thehour > 0 && thehour < 13){ return(thehour) } if(thehour == 0){ return(12) }...
  2. visualJay

    getting system date and time

    Is there a way to get the date and time and place it into a input boxs or even just get them and hold them in variables.
  3. visualJay

    close after submit

    I am tring to get a page to close as soon as the information is submited here is my page minus the BS <script language=javascript type=&quot;text/javascript&quot;> <!-- hide from older browsers function validate(){ if(document.reset.usrname.value==&quot;&quot;){ alert(&quot;You must...
  4. visualJay

    Update data in a file

    I am trying to open a file and change the data in the middle of a file. Example File johndoe:web:2:email:4:ftp:4 janedoe:web:5:email:6:ftp:1 mikedoe:web:3:email:1:ftp:6 I want to beable to read the file see if the user is there like janedoe if it is then change the 5 to an 8 and so on if...
  5. visualJay

    Edit Registry Key

    I have a program that installs its sessions for setups in the registry. I need to remove all the sessions but a couple to stop users from changing things. and in the ones that are left i want to change the &quot;User&quot; = &quot;&quot; to &quot;User&quot; = &quot;logged in users name&quot...
  6. visualJay

    file downloads and uploads with java applet

    can any help me find out how to accomplish a java applet for downloading and uploading files from a webpage.
  7. visualJay

    combobox updateing other textboxes

    I would like to use a combo box and have it update the other fields automatically if i choose the name joe from the list i would like it to automatically update the other fields like address state zip, ID# and place them in the new record. i have a customer table with their information in it...
  8. visualJay

    loading mulitple pages at one time

    I am trying to load new pages to each section of a frame page at one time. When the user clicks a link on a page loaded into the main frame section it will load a new page in the left frame section, main frame section and the bottom frame section. Can this be done in HTML or javascript. Thank you
  9. visualJay

    trying to setup new site

    First off I am extremly new to IIS this is the first site and setup of a site for me. I have one site that is running already we will say it is http://www.temp.com I would like to either setup a new site being able to use the same ip address though either using https://www.temp.com or...
  10. visualJay

    Place Minized application in taskbar next to Clock

    How do you can you place an icon down in the taskbar next to the clock.What I want is if the user presses the X on top of the form it will minimize to an icon setting in the taskbar next to the clock or that area. And to exit the program they just press exit button which I already have setup...
  11. visualJay

    FATAL ERROR WHEN TRYING TO STOP APPLICATION

    I Have modified the Shell Hook code that I download from planetsource code. I am trying to modify the code to close the application window if it appears. I am testing with the calculator. It should close the application the wait for a few seconds then start the program back up. But I get an...
  12. visualJay

    How do I Get the Window's class

    I Have modified the Shell Hook code that I download from planetsource code. I am trying to modify the code to close the application window if it appears. I am testing with the calculator. It should close the application the wait for a few seconds then start the program back up. But I get an...
  13. visualJay

    Capture Keyboard

    Is there a way to capture the Keyboard. I run a program at night on my server and sometimes I come in and it is shutdown. I want to be able to capture all key strokes and on the first key press display a prompt letting them know not to use that system. I dont want to lock it or activate the...
  14. visualJay

    Capture keyboard actions from an applet

    I am very new to Java, The school I went to for programming taught everything microsoft(ha ha)big joke isnt it. I learned some of visual J++ and Visual Basic I am trying very hard to convert to full SUN JAVA2 SDK I have just finally learned how to compile and run JAVA programs. This may sound...
  15. visualJay

    Closing Programs

    How do you close a program like IE and I mean Completely close it like killing the task from taskmanager on a NT or 9x Machine. I can open a program from a shell comannd can not get one to close.
  16. visualJay

    Close and ReOpen a program

    Trying to figure out how to close a running program and then have it reopen. Although this program has a glitch in it. I must close it by pressing its Quit(button) and sometimes it errors(unknown) so I then have to press an okay button on the new window. I want to beable to do this from the...
  17. visualJay

    Need to monitor for new window then have it press OK button

    Need to be able to watch to see if a new window opens and then have my program press that windows OK or Cancel Button. Any suggestions.
  18. visualJay

    almost got string into 2 dimensional array need a little help

    Here is all my code for this section Dim reportArray() As String Dim reportstring(0, 4) As String Dim Report As String Dim cnt As Integer Dim i As Integer Dim x As Integer cnt = 0 Open &quot;file.txt&quot; For Input As #4 x = 0 Do Until (EOF(4)) Line Input #4, iCopyString reportArray =...
  19. visualJay

    EOF not working properly

    The eof function is not working 1. dim cnt as int 2. 3. Open &quot;file&quot; For Input As #1 4. x = 0 5. Do Until (EOF(1)) 6. cnt = cnt + 1 7. ReDim reportstring(x + 1, 4) 8. DoEvents 9. Loop 10. Close #1 this snipit of code throws error on line 6 cnt = max interger...
  20. visualJay

    CSV string to an array

    Trying to convert a CSV file to a 2 dimensional array the line looks something like this 123456, 08/15/2001, 2:39:40 AM, 2:41:29 AM, 49 secs 123654, 08/15/2001, 2:49:40 AM, 2:51:29 AM, 49 secs I open the file and do line input, then I want the line to be put into a two dimensional array the...

Part and Inventory Search

Back
Top