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!

Search results for query: *

  • Users: gonzilla
  • Content: Threads
  • Order by date
  1. gonzilla

    Issues on Windows 98

    I am trying to figure out what is going on with my ASP.NET application and I am stuck. My client is using Windows 98 and when they put a datagrid in edit mode it gives a javascript object not found error. I had the client try the app from home on his XP machine and it works fine. I then had...
  2. gonzilla

    Max on 3 dimensional array???

    Hi, Is there a max on defining a 3 dimensional array? For instance, is this too big of an integer array: int array[99][101][400]; Does anyone know the max? The reason I ask is that I am getting a core dump near here and I can't think of any other reason why it might be happening. Thanks...
  3. gonzilla

    Mask a text field

    Hi, How do you similate a password field in a input text box field without using type="password"? For instance, what if I wanted to maske it with a "-" instead of a "*"? I have it kind of working but I don't know if this is the best way to do it or if there was a...
  4. gonzilla

    Text wrap in e-mail funny

    Hi, I have a flat text file that I am reading into an array to use as the body of an e-mail: $bodyfile = 'bodyofemail'; open(BODY, &quot;$bodyfile&quot;) || die (&quot;$bodyfile $!\n&quot;); @bodyin = (<BODY>); close(BODY); I have some tags in this file that I am merging data from a database...
  5. gonzilla

    XP - security

    Hi, I have a friend who had her boyfriend (a non-mutual friend) &quot;redo&quot; her computer. From what I can tell, he did a clean install of XP Pro and set up her DSL, Firewall and pretty much everything else on her PC (I can only go on what she has told me so far as I have not accessed the...
  6. gonzilla

    Upgrade Solaris 6 and 7 to 8 issues

    Hi, Are there any major issues to consider when upgrading version 6 or 7 to version 8? I just mean general snags and areas of concern, not totally specific issues. Is there a list of known issues somewhere that I can download? Thanks for your help. -Tyler
  7. gonzilla

    Abit AB-BX6 Rev 2.0 with UDMA 33

    Hi, I have a friend who has an Abit AB-BX6 Rev 2.0 board with UDMA 33 IDE. He bought a WD Ultra ATA 100 hard drive (not sure size) and installed it in place of the HD that was in the current system. When he boots up, the BIOS doesn't recognize the new HD. Is this normal? For some reason, I...
  8. gonzilla

    Term::Cap error...

    Hi, I have a clear screen funciton that I took directly from the Perl Black Book that works fine on one server, but generates this error on another server... Can't use string (&quot;STDOUT&quot;) as a symbol ref while &quot;strict refs&quot; in use at /usr/local/lib/perl5/5.8.0/Term/Cap.pm...
  9. gonzilla

    &quot;Upgrade&quot; from XP to 2000

    Hi, I just bought a new PC from Dell and of course they have XP Standard Ed. loaded on there. I wanted to stick with 2000 Server so I did a clean install from my CD - even reformatted the drives for NTFS. But, when I start up it gives me a dual boot option for XP and 2000 Server. I think I...
  10. gonzilla

    cron job missed

    Hi, I have a cron scheduled to run at 3:45 AM, and it was missed this Sunday. I live in Illinois and of course the clocks went ahead one hour at 2:00 AM - but that would seem to mean that the 3:45 AM time would have been fine as the one hour would have made it 3:00 AM. I have an identical...
  11. gonzilla

    DOS Batch

    Hi, Yes, I know that this is an old topic, but I have a batch file that I am trying to alter and can't quite figure something out. I need to have something that will give me the current working directory...ie. If the cwd is... c:\Temp\Directory1\Directory2 I run the batch, I want to be able...
  12. gonzilla

    fileparse help

    Hi, I need some quick help with a Perl program that I didn't write that I have to debug. Here is the statement... Assume $file = myfile.txt.2105 ($name, $path, $id) = fileparse($file, '\.2|.0\d+'); When it gets to fileparse, here are the results... name=myfile.txt.2 path=./ id=105 The...
  13. gonzilla

    Timing each call...similar to 'truss'

    Hi, I work on UNIX SVR4. One of our admins came and asked if I could write something to time each call made by an existing C program. Basically, he wants to see what part of it is taking so long run. We looked into the 'truss' command and that is close, but doesn't quite get everything we...
  14. gonzilla

    Input to executables

    Hi, I have an executable that takes user input in the form of things like 'y' and 1 or maybe a string of text occasionally. I would like to write a UNIX script that calls this program - which is no problem. But, I would like to have this script provide the input the program needs as well...
  15. gonzilla

    Environment Variable

    Hi, I'm trying to write a program that will change a certain environment variable. I've tried using _putenv(). I realize that this just writes it for the current process but doesn't actually set it at the system level. I can tell becuase I will call putenv() and then use getenv() in the same...
  16. gonzilla

    FTP / .netrc question

    Hi, I'd like to be able to ftp into a server without typing my user name and password - but I don't think the admins want us to do it this way for security purposes. I'm not trying to go around them I just want to see how it could be done. I have read about the .netrc and have been able to...
  17. gonzilla

    Hi, I am just beginning to learn

    Hi, I am just beginning to learn the Windows API and I have use MS VC++ for my C++ programs. I'd like to use MS VC++ while I am learning the API and I have read somewhere that MS includes a bunch of junk that I don't need....that I should use an SDK. I know SDK stands for &quot;Software...
  18. gonzilla

    End of File/constant char

    Hi, I feel like I should know why this is happening...but I'm not sure why. I work on Sun UNIX machine. I am trying to simply write a file with a character array using fprintf(). Like this... FILE *fp; char array[]=&quot;this is the output string&quot;; open the file (tried text and...
  19. gonzilla

    Quick Parse Question

    Hi, Let's say I have a program that defines a few variables.. int var1, var2, var3; Then, printing out those values to a file... fprintf(fp,&quot;%d,%d,%d&quot;, var1,var2,var3); ...is easy. But what if I don't know ahead of time which ones or even how many the user wants to print out...
  20. gonzilla

    script execution time - milliseconds

    Hi, I'd like to display the minutes, seconds and milliseconds it took to run a script. My bet is it will only teake milliseconds. I know there must be a way to do the milliseconds, but I can't find it. I know of ways to do it in C, but was just wondering if there was a scripting way to do...

Part and Inventory Search

Back
Top