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 Mike Lewis 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. jaredgalen

    SSH to remote server

    I need to ssh into a remote machine. the problem is that I am behind a proxy that blocks port 22. I have been looking at port forwarding but I can't quite get my head around it. Do I need to make the remote machine listen on a different port so that I can connect or something? Or is their some...
  2. jaredgalen

    Send key to window WITHOUT focus

    Is it possible? I can send keys to a window with focus fine. I want to try it without giving the window focus. Could it be done using the window handle for example? I have been searching and haven't really found an answer either way. jG
  3. jaredgalen

    Access files directly off server from Bean??

    Thanks a million, I'll give it a go.
  4. jaredgalen

    Access files directly off server from Bean??

    i used a name that would normally have directed the class to the folder if I was running locally and not in a server type application. I don't know if should be inside or outside the webapp structure. Thats my main problem, I just don't know what to do.
  5. jaredgalen

    Access files directly off server from Bean??

    I need to access a set of files (images) directly from the server using a java class. Is this possible? Specifically, I take a directory name and get the list of files from that directory if(location.exists()) { if(location.isDirectory()) files = location.listFiles(); } I have put...
  6. jaredgalen

    Importing fractions

    Sorry, into Excell XP
  7. jaredgalen

    Importing fractions

    I'm importing a text file that has fractions, 1/2000. When they get imported it chages them to dates and screws eveything up. I tried selecting, in the import wizard, text instead of general but it keeps changing it. I can't figure it out. Please help, I'm at my wits end.... jG
  8. jaredgalen

    Automate multiple form submissions

    Thanks a million Chessbot. I'll try this out today. What I need to do is try and capture each page and process it as it's returned. Let's see if I can at least do that. Thanks again jG
  9. jaredgalen

    Automate multiple form submissions

    That's it, I need the information stored in the pages corresponding to each of the options. The only way to get them is to select each one from the menu. I need to parse all the data from these pages and put it into a database. Perhaps I'm in the wrong forum for this, but could it be done with...
  10. jaredgalen

    Automate multiple form submissions

    Hey chessbot, thanks for replying. Okay I'll try and clarify. The page I'm talking about has already been created and I can't change it. It contains one drop down menu with about 500 options. When one of these options is selected the form is submitted automatically, using javascript. I want to...
  11. jaredgalen

    Automate multiple form submissions

    I have a php page that has a form that a user can submit. This form gets submitted as soon as an item is selected from a drop down menu. I need to automate a way that will select each option and get the resulting page. There are no urls to use or anything, I can only get the pages through the...
  12. jaredgalen

    Automate PhP form submission

    I have a php page that has a form that a user can submit. This form gets submitted as soon as an item is selected from a drop down menu. I need to automate a way that will select each option and get the resulting page. There are no urls to use or anything, I can only get the pages through the...
  13. jaredgalen

    Reading from two text files....

    Thanks for the reply, heres what I ended up using. Sorry for posting in the C forum but the C++ one seemed to have no activity. I learnt a lot taday, thanks. plainFile.getline (plainBuffer,24); *plainPoint = &plainBuffer[0]; for (i=0;i<8;i++){...
  14. jaredgalen

    Reading from two text files....

    Here's what I'm trying, reading from the file, one line, putting that into a char array. I tried using sscanf with that array but it didn't work. I not familiar with this at all so could really use some help. I know the indexing in the sscnaf line is all wrong I'm just trying to get it to work...
  15. jaredgalen

    Reading from two text files....

    There seems to be a few more people using this forum so here's the Question. I have a program that reads in a 32-digit hex number from the command line: ie. findkey a3 1f 2e 3c 4e 5a f6 a3 1f 2e 37 d5 66 1a 33 3c I take this and split it up into two arrays. The first 8 go into the input[]...
  16. jaredgalen

    Read lines from two text files...

    I have a program that reads in a 32-digit hex number from the command line: ie. findkey a3 1f 2e 3c 4e 5a f6 a3 1f 2e 37 d5 66 1a 33 3c I take this and split it up into two arrays. The first 8 go into the input[] array. The next 8 go into the cipherInput[] array as in the code below. What I...
  17. jaredgalen

    NTP time server

    Okay, maybe I should be more precise. I'll be using two machines, a windows on the same network as the unix one. I need to set up the unix machine so that it will accept and respond to the time request, it needs to have the NTP protocol enabled, I think. An ideas????? jG
  18. jaredgalen

    RH 9 &amp; NTP server...

    I have a small program written in C using winsock v1, that uses a unix host to get the time. I have two machines networked, one windows, the other red hat 9. The windows machine will request the time off the RH one. How can I configure red hat to reply to the time request, i.e act as an NTP...
  19. jaredgalen

    NTP time server

    I have a piece of code that is supposed to get the time off a unix host acting as an ntp time server, the problem is that the computer I'm running it on has no access to the internet so I can't use any of the public ones. Would anyone have a piece of code that would mimic this time server that...
  20. jaredgalen

    Int changing value for no reason at runtime.....

    oooh yeah, that ones always a keeper. jG

Part and Inventory Search

Back
Top