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

    SQL Query

    Thanks guys, I went w/ your solution PGO01
  2. zsfhaergta

    SQL Query

    Hi, I'm not quite a sql expert, and have been having some trouble figuring this out: I have one table with ID, Side=1 or 2, and Qty. I'd like to group by ID where sum(Qty) where Side=1 - sum(Qty) where Side=2. So basically the difference of all Qty's having side=1 minus all Qty's having...
  3. zsfhaergta

    Form and Input question

    Thanks a lot guys, I went with ChrisHunt's first solution. It seemed the most straight forward way to approach the problem. I tried your solution vacunita, but it didn't seem to work, it was still only picking up the first element of the list..maybe because onClick is a javascript function?
  4. zsfhaergta

    Form and Input question

    Thats getting me a lot closer, the problem is that I have multiple input statements: <form...> while (my $ref = $sth->fetch()) { print "<input type=\"submit\" value=\"Click\">"; print "<input type=\"hidden\" value=\"$ref\">"; }; </form> However, the hidden seems to grab the first value in...
  5. zsfhaergta

    Form and Input question

    Thanks, that seems to be exactly what I'm looking for. however, I am writing this code using perl, is there a similar solution for that? Thanks
  6. zsfhaergta

    Form and Input question

    Hi, I would like to have a form with a method get perform an action, using the value from the input line. But I want to display a constant "click" in the submit button box. The value passed as the parameter should be "$ref" while the display should be "click". How can I do this? Currently I...
  7. zsfhaergta

    UDP recvfrom question

    Hi, I am developing the client end of a program. I receive data from at most two channels at a time. While I am currently recvfrom() and processing the data from one channel, I call recvfrom() and queue the data from the other channel. At times this runs correctly. Other times, it seems that...
  8. zsfhaergta

    su help

    Hi, I know it is possible to set up sudo so a user enters his own password for root access. Is it possible to set up su to do the same? Something like this user$ su 'someotheruser' Password: 'user's password' NOT: Password: 'someotheruser's password' Thanks
  9. zsfhaergta

    sendmail works on some emails, not others

    Thanks, so I am obviously new to sendmail. I am trying to send mail from my local workstation(which I don't think is a mail server), and I don't believe there is a dedicated mail server on our network. What I don't get is that if I can send the mail to my gmail account, my local workstation must...
  10. zsfhaergta

    sendmail works on some emails, not others

    Hi, I am trying to set up my sendmail configuration so I can sent email from my local server. I use the command: $ mail -s test mymail@mydomain.com <<MAIL > test > MAIL For certain email addresses, sendmail works fine. For others, the mail never arrives. I assume the receiving email servers...
  11. zsfhaergta

    Install gcc

    Ya, I get it...the compiler needs an ISO C90 compiler for bootstrapping. Guess it makes sense that it cant compile other stuff until it gets compiled first. Now I gotta find an ISO C90 compiler somewhere. The link you had assumed "Red Hat Linux system using rpm 4, gcc 3, and glibc 2.2.5," so...
  12. zsfhaergta

    Install gcc

    Hi, I am trying to install gcc on my server. It is a remote web server so I can't just pop in a cd and have it run. I downloaded gcc-4.3.2 from the gcc.gnu.org website, uncompressed it and tried to configure it, but I get: # ./configure checking build system type... i686-pc-linux-gnu checking...
  13. zsfhaergta

    Perpetual Macro in Excel

    Ya, I read into Application.OnTime and that worked well for what I wanted. Thanks
  14. zsfhaergta

    Perpetual Macro in Excel

    Hi, I'd like to have a macro perform real-time operations to an excel file while it is open. It would be similar to a forever loop running on a separate thread. It would perform operations upon data updates or at certain times. Is something like this possible? Thanks, Allen
  15. zsfhaergta

    Problem setting up dual boot

    Thanks guys, I was able to finally get the dual boot set up. What I found is that Windows needs to be on the master drive in order to boot. This presented a difficulty when I installed windows first on primary w/out leaving space for the /boot partition. The way around this is to boot to the...
  16. zsfhaergta

    Perpetual Macro in Excel

    Hi, I'd like to have a macro perform real-time operations to an excel file while it is open. It would be similar to a forever loop running on a separate thread. It would perform operations upon data updates or at certain times. Is something like this possible? Thanks, Allen
  17. zsfhaergta

    Problem setting up dual boot

    Geirendre, Thanks, I tried that and received the same result... I think the boot loader isn't able to figure out that (hd1) corresponsds to /dev/hdb which corresponds to the slave drive. I'm not familiar with grub commands, so how do I tell it this?
  18. zsfhaergta

    Problem setting up dual boot

    Hi, I am trying to set up a dual boot system with Red Hat EL 5.2 and Windows XP Pro. I have a separate disk for each OS. Grub is on the same disk as redhat(the primary disk). I know that Windows is installed correctly because if I force a load on the secondary disk Windows loads correctly...
  19. zsfhaergta

    Network, Disaster Recovery, RAID1 question

    Hi, I am wondering if something like this is possible: I would like to have a disaster recovery solution which performs hot(or warm) replication to a backup server on the network. I think the performance would be similar to having a software RAID1, except to a disk on a different system on...
  20. zsfhaergta

    FreeNX, VNC, tarantella

    I'm new to remote desktops. What is the difference between FreeNX, VNC, and tarantella?

Part and Inventory Search

Back
Top