Hi Patrick
Most likely the text on the button is left justified, but probable the button is centered in the grid's cell.
Must have a look on http://www.tcl.tk/man/tcl/TkCmd/grid.htm , the -sticky option.
Also, a piece of code will hel us.
BR,
Marcel
___
http://www.notnull.ro/log
____
Hi Keith,
It looks like a different config of the web server.
Maybe the webserver is configured to show the fatal errors on the pages.
Making errors visible to the world is a security risk.
Not possible to access the error log file ?
BR,
Marcel
___
http://www.notnull.ro/log
____
Hi Tony,
What did you really try and was too slow ?
A command like
glob -directory <your_dir> *.txt
should e OK
BR,
Marcel
___
http://www.notnull.ro/log
____
Hi there,
array_keys() always returns an array to.
So, if you are sure that $_POST['action'] has always exactly one element you can do something like:
$all_keys = array_keys($_POST['action'])
switch ($all_keys[0]) {
case 'AddItem':
$CartAction = "AddItem";
break;
case 'DeleteItem'...
Hi there,
The split procedure will split by any of chars.
So practically [split $x "\n\n"] is the same as [split $x "\n\n"]
One idea will be to replace the "\n\n" sequence with a char that does not exists in your string a nd to use the split after.
E.g. "\x00" is a good one.
Let's assume that...
Hi there,
The sortest way to reset all $N variable is to call for a match like:
/.?/;
This will ever be successful and all the matching vars are reset.
BR,
Marcel
___
http://www.notnull.ro/log
____
Thank you very much.
One question, if I'll set the cache Off (read and write) this probleme will not ocurre any more.
Regards,
Marcel
___
http://marcel.rdscv.ro/
____
Hi,
I'm new on the clarIIon.
We have a clarrion disk array (cx series).
We have reloacate it (with 4 HP-UX servers) two weeks ago.
This morning the disk array was innacasible.
After reebootine the server which own/mount the diskarray volumes, we found this in syslog file:
##############
Jun 9...
sorry,
no X GUI, only command line access.
So, I need a command.
I'm sure that the Navisphere agent is running.
l1000db1 # ps -ef | grep -i navi
root 1767 1 0 May 22 ? 20:01 /opt/Navisphere/bin/naviagent -f /etc/Navisphere/agent.confi
root 8031 7771 0 15:04:27 pts/tb...
Hi,
I'm new on Clariion EMC stuff.
Next day our company should relocate a feew unix servers + a Clariion diskarray, (CX series I think).
My question is: how can I do a proper shoutdown of the disk array?
All that I know is that after servers shutdown I have to wait a feew minutes untill the...
Hi,
you can add the variables but is not a good practice.
Better: create a copy of $_POST, add the keys which you want to the new variable and process it.
$c_post = $_POST;
// work with $c_post
Regards
___
http://marcel.rdscv.ro/
____
Hi,
you should use as METHOD "GET", and the "subject" should be the name of one of the input fields
<html dir="ltr">
<head>
<meta http-equiv="Content-Language" content="en-us">
<meta http-equiv="Content-Type" content="text/html; charset=windows-1252">
<title>Simple Form</title>
</head>
<body>...
Hmmm...
Looks like you are trying to call a PHP function from Javascript.
Just right-click on your browser-> ViewSource, and look for the insertrow2 function's definition.
You will not find it.
PM
___
http://marcel.rdscv.ro/
____
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.