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 Chriss Miller 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
  • Content: Threads
  • Order by date
  1. 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!
  2. 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>"; } }...
  3. 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!
  4. 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...
  5. 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/...
  6. 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...
  7. 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...
  8. 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)...
  9. 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
  10. 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.
  11. job357

    Ant build.xml file

    can someone tell me why is that when I run Ant I get: "The markup in the document following the root element must be well-formed. - Thanks
  12. job357

    weblogic.Deployer

    Has anyone the expierence with weblogic.Deployer syntax as a part of Ant's build.xml file? Trying to automate building and EAR file and deploying ot to App Server(s). - Thanks
  13. job357

    SSL mod_gzip

    For some reason, mod_gzip is reporting compression percents with https, as noted bellow: mod_gzip: CAP_FILE_EMPTY In:0 -< Out:0 = 0 pct. However, with http i get 83 pct. compression, is there a way to have https traffic report the same on mog_gzip logs?
  14. job357

    Weblogic Instance Memory Allocation

    Greetings: Can anyone point me in the right direction to finding out how memory a given instance is allocated/using? - Thanks
  15. job357

    Permission

    There is a command that I would like to run as myslef, currently, i have added myslef to its group. But when I run the command I am still getting 'access denied?'
  16. job357

    Over Heating

    I have a strange anomaly, whereas my Ultra-2 has been on for days and when I powered down the following error occurs: Boot device: disk File and args: SunOS Release 5.9 Version Generic 32-bit Copyright 1983-2002 Sun Microsystems, Inc. All rights reserved. Use is subject to license terms...
  17. job357

    PHP4 on Solaris

    Greetings, I am having problems with '/usr/ucb/ld' and GNUs '/opt/csw/sparc-sun-solaris2.8/bin/ld' when compiling php4. Configuraiton goes fine but, make errors out. Here is information on my system: OS: SunOS dev01 5.9 Generic_112233-08 sun4u sparc SUNW,Ultra-1 $PATH...
  18. job357

    Conversion function

    Greetings: I am new to PERL, and have a little script to fixup, (1) consider, Natives on an island have unusual names for the days and months, (2) add a conversion fuction for the month names, and make the whole thing a library. This is what I have thus far: #!/usr/bin/perl -w @day = qw(ark...
  19. job357

    Module Errors

    Greetings: I am teaching myself PERL, but ran into this problem when executing a script from the tutorial: System: WIN32 OS: WIndows 2000 Script: use warnings; use strict; use DBI; my ($dbh, $sth); $dbh=DBI->connect('dbi:mysql:test', 'root', 'password') die &quot;Error opening...
  20. job357

    Compilation Errors

    Greetings: I am attempting to compile MySQL on cygwin: version: 3.28.53 Here are the errors: gen_lex_hash.cc:507: error: syntax error before `=' token gen_lex_hash.cc:511: error: `putchar' undeclared (first use this function) gen_lex_hash.cc:512: error: `stdout' undeclared (first use this...

Part and Inventory Search

Back
Top