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 bkrike on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Recent content by jpmckay

  1. jpmckay

    Webmin installation

    i just unzipped untarred and got to the directory with the install.sh file and typed ./setup.sh<br> <br> then it just walked me through it. <br> What problems are you having specifically?<br> <br> what is the complete name of the file you downloaded and where are you in the install process?<br>...
  2. jpmckay

    Bad wording on previous post about Tool Tips in front page

    I am almost positive an alt= tag in raw html would do it.<br> <br> In Front page you will have to open the html tag and add an alt=
  3. jpmckay

    looking for materials on the web to learn Visual C++....

    try www.pbs.mcp.com and use VC++ Books online for free
  4. jpmckay

    Sendmail

    Most of the software on aix is proprietary, they even have their own "IBM" flavor of sendmail. The free version of sendmail will compile and run on AIX eventually.<br> AIX also has special needs when it comes to compiling c source code. <br> Since it is an IBM product, service agreements might...
  5. jpmckay

    Best Perl and CGI Book

    for a indepth tutorial on PERL try <br> Jon Orwant's Perl 5 Interactive Course. It's very complete
  6. jpmckay

    Beginner needs help/direction

    use the supplied tutorial. Build what you need. I use dreamweaver everyday. I do not use all of it's features. But the ones I use are pretty intuitive, like tables,. forms, image maps, and rollovers. I uses very little of hteir dhtml stuff. Many of my surfers are still using netscape 3, so...
  7. jpmckay

    How do you find the "server path"

    #!/usr/bin/perl<br> <br> print "Content-type: text/html\n\n";<br> while (($key, $val) = each %ENV) {<br> print "$key = $val&lt;BR&gt;\n";<br> }<br> <br> Place the above script in your cgi-bin, make sure permissions are set to execute and run in either from a browser or from the command...
  8. jpmckay

    resizing web for client browser settings

    my question is where is the web page that will automatically resize my browser?
  9. jpmckay

    clrscr() in Codewarrior v3.1

    it might possibly be curses.h.<br> or you might just want to use a system call like<br> system("cls");
  10. jpmckay

    how to set up the clrscr()

    Hi Phred,<br> clrscr() is not an ansi compatible standard. It is something some of the older dos based compilers had.<br> <br> You can clear the screen using <br> system("cls"); // for console apps<br> <br> --<br> Hope this helps
  11. jpmckay

    resizing web for client browser settings

    have you seen this done anywheres else?
  12. jpmckay

    How to ASP

    how about www.learnasp.com?<br> <br> Also if you have the frontpage 98 cdrom. The 60 minute intranet kit contains a good asp tutorial.<br> <br> Search the cd for asp.exe. Hopes this helps
  13. jpmckay

    UNIX Introduction

    If you want to find out alot about UNIX resources available on the internet. I suggest &lt;a href=http://www.ugu.com&gt;Unix Guru Universe&lt;/a&gt; they have globs of information well organized, a tip of the day and a beginners section.
  14. jpmckay

    X-client for Windows?

    The best X-client I have used in windows is <br> X-Win32 demo availabel at http://www.starnet.com.<br>

Part and Inventory Search

Back
Top