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...
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...
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...
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, "$bodyfile") || die ("$bodyfile $!\n");
@bodyin = (<BODY>);
close(BODY);
I have some tags in this file that I am merging data from a database...
Hi,
I have a friend who had her boyfriend (a non-mutual friend) "redo" 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...
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
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...
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 ("STDOUT") as a symbol ref while "strict refs" in use at /usr/local/lib/perl5/5.8.0/Term/Cap.pm...
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...
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...
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...
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...
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...
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...
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...
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...
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 "Software...
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[]="this is the output string";
open the file (tried text and...
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,"%d,%d,%d", 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...
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...
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.