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

    $1 - can it be 'reset to null' ?

    now thats real short predamarcel! ~Nate_Bro http://www.setapartgraphics.com/ http://www.setapartgraphics.com/Free_Scripts/ Code Snippets just because
  2. NateBro

    Erroring when opening second db link

    is the database closed out before the next call? I'm using DBD::mysql $connection = DBI->connect('DBI:mysql:TABLE', 'root', 'password'); $query2 = "select loginhistory, logincount from useracounts where USERNAME = '$Values[1]'"; $statement = $connection->prepare($query2)...
  3. NateBro

    need help with: Detected uninstalled Perl.

    I've been out of the game for awhile now, and just started playing with PERL again... I installed strawberry PERL, but later installed the xampp web sever. I then uninstalled strawberry PERL, after making a copy for the xampp web sever. so now all my PERL scripts run from the strawberry PERL...
  4. NateBro

    Install libGD

    well thanks for your help, but i'm loking at my lap-top seeing how in the world i got it installed on there. thanks agin for your time :) ~Nate_Bro http://www.setapartgraphics.com/ http://www.setapartgraphics.com/Free_Scripts/ Code Snippets just because
  5. NateBro

    Install libGD

    But you still have to have gd-2.0.35 installed right? I'm sorry, I'm just really confused, i installed GD last time in 15 min, it was about 2am and i have no idea how i did it..... ~Nate_Bro http://www.setapartgraphics.com/ http://www.setapartgraphics.com/Free_Scripts/ Code Snippets just because
  6. NateBro

    Install libGD

    Yes, activestate, on windows XP. ~Nate_Bro http://www.setapartgraphics.com/ http://www.setapartgraphics.com/Free_Scripts/ Code Snippets just because
  7. NateBro

    Install libGD

    I rememberd i used cpan.bat it downloaded ok, but i can't get it to install... i get this: cpan> install GD Running install for module 'GD' Running make for L/LD/LDS/GD-2.35.tar.gz Has already been unwrapped into directory C:\Perl\cpan\build\GD-2.35-la9DsP Could not make: Unknown error...
  8. NateBro

    Install libGD

    I'm haveing a lot of truble remembering how to install the GD lib on my computer, i installed it on my lap top a year ago, but have no idea how i did it. any help would be great! thanks!
  9. NateBro

    Newbie help.

    its the "if" statement. it needs to be 'if' not 'If' all lower case ~Nate_Bro http://www.setapartgraphics.com/ http://www.setapartgraphics.com/Free_Scripts/ Code Snippets just because
  10. NateBro

    Newbie help.

    well first off, you don't need the ";" at the end of a if statement. not good! if ();{ } good! if (){ } also you used If (), use lowercase if () not good! If (){ } good! if (){ } also you can't start an id name with a number... this is the code in working order...
  11. NateBro

    Newbie to JS

    change this... function newLocation() { document.location.href = "http://" + adURL[thisAd]; return false; } to... function newLocation() { window.open("http://" + adURL[thisAd], "MyWindow", ""); return false; } see this site for more info...
  12. NateBro

    Use RGB color with Tk

    ok that helps sooo much! I have no idea what i was thinking, i didn't think to test and see if i could use Hexadecimal colors! and i was wondering about how to insert the icon for the main window. thank you soo much! you saved me hours of wondering google!
  13. NateBro

    Position 3 labels in one row

    I would have a look at SpecTcl1.1 if you have not alredy.
  14. NateBro

    Use RGB color with Tk

    I have a canvas with squares, but i need to use RGB colors, but i'm not sure exactly how, i looked at google, but didn't find anything with the standerd distribution of PERL. thanks for your time! ~Nate_Bro
  15. NateBro

    prining a line of *****

    http://java.sun.com/j2se/1.5.0/docs/api/java/io/PrintStream.html look under Method Summary -> printf http://java.sun.com/j2se/1.5.0/docs/api/java/io/PrintStream.html#printf(java.lang.String,%20java.lang.Object...) ~Nate_Bro http://www.setapartgraphics.com/...
  16. NateBro

    prining a line of *****

    well Diancecht maybe you should take another look at the Java API, Java, C++, and Perl ALL have printf. ~Nate_Bro http://www.setapartgraphics.com/ http://www.setapartgraphics.com/Free_Scripts/ Code Snippets just because
  17. NateBro

    Need help with element positioning

    well if you know the spots you want the files, place them there and use "style.display: none" and make a whole new function that just makes them fade. if you want to just do that it should work fine, just let me know if you need help Thanks, Nate_Bro
  18. NateBro

    How to start developing GUI apps with Java?

    well i like NetBeans better for my personal preference, but I believe both can handle multiple file projects. i use TextPad for small java apps without GUI's, i also use TextPad it for PERL and C++. but i would just try both Eclipse and NetBeans and see what works better for you. Thanks, Nate_Bro
  19. NateBro

    How to start developing GUI apps with Java?

    Also you might want to take a look at NetBeans 5.5 if i need a complicated GUI layout up and running fast, it has a very easy drag and drop GUI builder. and its free also Thanks, Nate_Bro
  20. NateBro

    prining a line of *****

    Use printf "system.out.printf();" import java.awt.*; import java.applet.*; public class StringTest { public static void main (String[] args){ String MyAst = "*****************"; System.out.printf("%1.3s\n", MyAst); System.out.printf("%1.5s\n", MyAst); System.out.printf("%1.8s\n"...

Part and Inventory Search

Back
Top