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 TouchToneTommy 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: sleuth
  • Content: Threads
  • Order by date
  1. sleuth

    2d Array Help

    Hi, I've almost worked through my problem previously posted, now I'm having trouble with a 2d array. char table[10][50]; table[1234567]['A']='Test'; I get a segmentation fault for that. The number is an id number, I have no need to have it positioned in that spot of the array. So how can...
  2. sleuth

    Strcat String & Int Value

    How can I combine a char type string with an int value. I have a string with the value of "table_", which I defined like this: char table[] = "table_"; And I have an int value of a random number, six digits. I tried: strcat(table,number); But I get errors like...
  3. sleuth

    Combining String & int value

    Hello, If I have a string named "table" and an integer value of "55689", how can I combine them to form table55689 and then access the character array which is named table55689??? Thank You, Tony
  4. sleuth

    Heights??

    Hello, I have a cgi that allows people to create bulks of text, and I'm trying to output this text into a table for reading by a javascript. I have the script build a page with the text in the table, then all I want is the javascript to report back how tall the table is after the text...
  5. sleuth

    FastCGI

    Hello, Is there anyone successfully running FastCgi? If so, how did you install the thing!!!! I can't figure out how to install this thing at all, could someone lay it out for me, I've read everything I can get my hands on and they all produce dead ends, I'm running perl 5.6.1 ad of today...
  6. sleuth

    dialog window

    Hello, is there a way to open a modelessDialogWindow without the title bar? Much like opening a fullscreen window then resizing it, except it would be nice to get the same effect with out the flicker of resizing a fullscreen window. Thanks, Tony
  7. sleuth

    Bring-to-front

    Hello, Say you have your browser window open, then you click to focus another window in your bar down there on the bottom you your screen, is there a javascript that will make the browser window focus to the front? Becuse self.focus(); doesn't work unless your try to minimize the window...
  8. sleuth

    All Frames?

    Hello, I want to load an activity timer into the head of a frame set, but the timer is targeted to window.whatever so it's only tracking mousemovement in it's own window. I want it to be effective for all frames, could anyone point me intot he right direction with this. Thanks, Tony
  9. sleuth

    onblur ??

    Hi, is there a way to have a frame set, and in the top frame, which you can't really tell is there, is a simple html page with an onload="onblur=self.focus();" but checks if the bottom frame (the main frame which you navigate in) is blured, then re-focuses that frame. This is just in...
  10. sleuth

    Previous Page

    How could I keep someone from going back to the previous page, it's a login page, and when they login if they go back to the login page, they can't go forward because it's in fullscreen mode, I force them to use the logout button to leave this way, and so far all is good with everything else...
  11. sleuth

    Filter-Decrypt

    Hello, My host has this suckie admin panel but the good thing is it's written in perl, they put it right into your cgi-bin so you can look at it and everything. They used filter-decrypt on it and to tell you the truth I think the guy who made doesn't work for them anymore because it's soo old...
  12. sleuth

    Ctrl + w BAD!!!!

    Hi Java people, How can I keep someone from pressing crtl + w, I don't want it to carry out the command, I can do this with single keys by using the key code but I can't figure out how you prevent a key combination, I'd also do alt + F4 if anyone can help me. Thanks, Tony
  13. sleuth

    Newbie question

    What's the difference between c++ for Microsoft and c++ for Unix, is it only in the compile and the obvious environment differences? I'm familiar with perl and have coded on both systems for about a year now and on Unix for 3 years, and in 1 year of windows coding I've only been limited to what...
  14. sleuth

    newbie wants to print

    Hello, Ok, I'm a perl programmer so this shouldn't be too hard, All I need to know for now is how I can print hello world through the browser, in perl it's as simple as printing Content-type: text/html\n\n but in c++ there must be an include I need to use, no one's been able to tell me...
  15. sleuth

    mini perl

    Is it safe or even usable to untar the stable.tar.gz from the curent version of perl from perl.com in a directory on a virtual server and use that perl instead of the /usr/bin/perl on my server. I've got a virtual and my host refuses to upgrade, so is it possible to install the latest version...
  16. sleuth

    The other side of pipes

    Ok, I've gtten how to read from an exe or the system with a pipe with the aid of StillFlame and Mike, now I need to make a program I have workable much like sendmail is. I need to open an incomming pipe and have the program on the other side of the pipe read the switch and process the...
  17. sleuth

    Binary Troubles

    Ok, I'm working on a program which handles a lot of binary data, Now, do some gif , jpg, or bmp files need returns (\r)? I'm taking them out and it seems only files that are in one line are showing up properly in my program. I'm also doing this on windows. Thanks, Tony "Java...
  18. sleuth

    $¦ ??

    What good is setting $| to a true value, I read that it forces a flush after every write or print to the selected output device, and this would be good for ..... ?? Thanks, Tony "Java?? Umm, I think that's the stuff I drink while I'm coding perl."
  19. sleuth

    Right-Click question

    I have a right click menu script but I want to allow people to right click on links to save target as, how can I disable the right click menu and let the browser take over when you right click on the link? Thanks, Tony "Java?? Umm, I think that's the stuff I drink while I'm coding...
  20. sleuth

    Email

    Does anyone know how to send mail on windows using Mime::Lite, I'm having trouble with it, Thanks Tony "Java?? Umm, I think that's the stuff I drink while I'm coding perl."

Part and Inventory Search

Back
Top