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 strongm 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: job357
  • Order by date
  1. job357

    Do While

    Man that was really quick! Thanks this is exactly what I was looking for.
  2. job357

    Do While

    Greetings, consider the following: Inital = lstItem.Items.Count Do While pmintInital < 100 pmintInital += 1 lstOrder.Items.Add("lstItem.Items") Loop I am trying to assign the contents from one Listbox to another via a Do While statement. Thanks!
  3. job357

    Multi-Dimensional Arrays

    Here is the correction to my question: <?php $foo["travis"]["first"] = 90; $foo["travis"]["second"] = 91 ; $foo["wyndell"]["first"] = 92; $foo["wyndell"]["second"] = 93; foreach($foo as $outer_key => $single) { foreach($single as $inner_key => $value) { echo "\$foo[$outer][$inner]...
  4. job357

    Multi-Dimensional Arrays

    can someone help me understand the following: <? $foo["travis"]["first"]; $foo["travis"]["second"]; $foo["wyndell"]["first"]; $foo["wyndell"]["second"]; foreach($outer = 0; $outer < count($foo); $outer++) { foreach($outter as $inner => $value) { echo "\$foo[$outer][$inner] = $value<BR>"; } }...
  5. job357

    Binding

    Greetings everyone, can someone put me in the right direction of binding a network filesystem eg. \\foo\share\docs to a combobox, so that when selected the contents of "docs" will be listed? Thanks!
  6. job357

    Forms

    Thanks, this has put me on the right track!
  7. job357

    Forms

    I am trying to find a way to get around form pop ups all over the screen for a menu system I am trying to implement. As it stands, the user is prompt for user/pass, upon authentication; they can then enter the system, which is another form. The problem now is that the login form is on the...
  8. job357

    Proxy through Firewall

    Please help me solve a problem I having accessing a system from the inside with limited resources: firewall port:20509 (only hole to intranet) This is what I have configured that is not working DMX Proxy: ProxyPass /foo/ http://instanet:2059/foo/ ProxyPassReverse /foo/...
  9. job357

    Ant build.xml file

    Thanks!
  10. job357

    PHP Function Problem

    Ken, I am really new with PHP, that being said, why did I drop the '$' for the variable $favmovie and call it, "echo $_GET['favmovie'];" instead of like: echo $_GET['$favmovie']; Thanks.
  11. job357

    PHP Function Problem

    Thanks, this information has been very helpful!
  12. job357

    PHP Function Problem

    Greetings, I have installed PHP on Solaris 10 and now have problems following a tutorial, or at least my results aren't what the tutorial displays, the code is: movie1.php: <HTML> <HEAD> <TITLE>Find my Favorite Movie!</TITLE> </HEAD> <BODY> <?php echo "<a...
  13. job357

    Mounting usb drive

    Here is dmesg after rebooting: usbcore: registered new driver usbfs usbcore: registered new driver hub usb usb1: Product: UHCI Host Controller usb usb1: Manufacturer: Linux 2.6.5-7.111-default uhci_hcd usb usb1: SerialNumber: 0000:00:07.2 usb usb2: Product: UHCI Host Controller usb usb2...
  14. job357

    Mounting usb drive

    No i did not, should I rebooted with drive connected? Thanks
  15. job357

    Mounting usb drive

    Chacalinc- usb-storage module is already loaded: lsmod |grep -i usb "usbcore 103644 6 usb_storage" When i try and mount the device: mount /dev/sdc0 /mnt "mount: special device /dev/sdc0 does not exist" I even tried: mount /dev/sdc1 /mnt dmesg output for 'usb': usbcore...
  16. job357

    Mounting usb drive

    Hello- Is there anyone who might be able to help mount a usb storage device? 'mount -t vfat /dev/sda1 /mnt/usbdrive' errors with, "mount: /dev/sda1 is not a valid block device" There are no other scsi devices attached. /var/log/messages: linux /etc/hotplug/usb.agent[18809]: need a device for...
  17. job357

    Anonymous hash reference

    Thanks everyone! What I wanting to is somehow get a list of the keys in the hash array (am I saying this right) so that I can change their values throughout the xml document: I tried the following for obtaining all the keys in the document: #!/usr/bin/perl -wT use Data::Dumper; use FindBin...
  18. job357

    Anonymous hash reference

    I am having some troubles accessing complex data structures hash values, give the script below and data structure, can someone assist in accessing the keys and values? #!/usr/bin/perl -wT use Data::Dumper; use FindBin qw($Bin); use XML::Simple; use strict; my ($data,$xml,$VAR1)...
  19. job357

    &lt;wlserver&gt;

    Can anyone help me in stopping/starting a Weblogic cluster, via and Ant task. So far, <wlserver> will stop server(s), but not a cluster. - Thanks
  20. job357

    List UID

    I am using the following to list a range of UIDs in /etc/passwd in the range of 5000. getent /etc/passwd |cut -d: -f: |awk '/5***/' The problems is that '*' list additional numbers, all I want is anything in the range of 5000. eg 5001-5400 not 5001-54444 Thanks.

Part and Inventory Search

Back
Top