There is a post from 2008 here that had the identical problem which was not resolved. Acrobat has printed perfectly from my iMac to a Brother laser printer for years. Two days ago it suddenly began printing only blank pages.... the same pdf can be printed fine from Preview and Acrobat can...
...and complete login on the clientside?
Here is that script again:
function encrypt(password)
{
var checkSum = 0;
var multiplier = 1;
for (var i = 0; i < password.length; i++)
{
checkSum += (password.charCodeAt(i) * multiplier);
multiplier *= 3;
}
return checkSum;
}
...Would this work?
I don't do much with javascripts... would this script work
function encrypt(password)
{
var checkSum = 0;
var multiplier = 1;
for (var i = 0; i < password.length; i++)
{
checkSum += (password.charCodeAt(i) * multiplier);
multiplier *= 3;
}
return...
I am doing a pretty bad job of describing the problem... here is another go at it.
We use MSDE to develope... the application is hosted on a full blown SQL Server at an ISP. Our ISP does not want us connecting remotely with our Enterprise Manger (included with MSDE). The reason we have been...
I have a fully licensed version of Visual Studio 6 Enterprise Ed. which I happily use to build asp applications with Access and SQL Server which are then deployed at an ISP..the version of SQL Server version I use is something called MSDE and shows a version number for SQL of 7.
A while back...
We have a web based ASP/SQL server application that our users log into and submit monthly performance numbers by filling in a form. Many of our users accumulate their monthly figures in an excel spreadsheet. What we would like to do is take some of the pain out of data entry.
I have seen a...
Thanks for the advice to look up optimistic locking on Google.... the light finally went on in my head....I can "see" how this might work. What I have not noticed before is the use of "optimistic" terminology in the MySQL documentation for InnoDB tables.... is this how...
I have a mySQL -php application set up to service a small group who are located in several different cities using a variety of platforms. The application is hosted by a G4 Mac running OS 10.2.8 We have been very pleased with the performance of the set up. The database/application manages...
No one offered to help? I am no guru but I have set up Apache, mySQL and phpMyAdmin on two Mac OS X machines. I relied heavily on a Dreamweaver Article http://www.macromedia.com/devnet/mx/dreamweaver/articles/php_macintosh.html and Marc Liyanage's site and...
Thanks for acknowledging the issue... I tried the global file... no joy But based on your positive experience in a seemingly unintentional, random way I fired up visual interdev and started trying things. I GOT IT WORKING!!! What seemed to do the trick was right clicking on my project and...
I have an asp site that was built using VI 6 and MSDE a couple of years back. It has been working great but occasionally we go in and do some sprucing up. This time when I went in to do a few things on my development version I noticed that my data view was not showing up. When I looked under...
Maybe something like but I am not getting it to work...FSpivot probably needs to be $FSPivot? Still no joy... my text shows the contditional statement a little different but that didn't work either.
All are getting this message:
awk: syntax error at source line 2
context is
>>> ? <<<...
I have a well structured comma separated file which has approximately 20 fields... some may have a few less. I would like to "merge" all of the fields $15 through NF into a single field. What I have written is working on my header line but blowing up on the subsequent lines... most...
...me back a ways while I figured out how to redo it permitting me to automatically handle all files in a dir. I handle this like so
`find . -name \* -print0 | xargs -0 | cat * >> ../$fileName` which does a nice job...and
#! /usr/bin/sed -f
/^$/d
1p
/^first name/d
/^first name/!{
}
is doing a...
I am answering my own question... at least partially. I did figure out how to remove the extra headers without using the hold space but my handling of the print is clunky... I don't know how to suppress printing when calling sed this way.
#! /usr/bin/sed -f
/^$/d
1p
/^first name/d
/^first...
Hopefully some of you awk jockeys also dabble a bit in sed... I am trying to use a bit of both on a project and this task seemed more suited to sed but if awk is better I am game.
I have been trying to write a little sed script that would allow me to remove a header record that gets repeated...
...keep awks $1 treatment for fields separate from command line parameters... Here is what I had in mind:
#! /usr/bin/awk -f
#format the cvs file
#
# ************************************************************************
# Variable Declarations
#
noEntryMsgInput="Please enter the name of...
...{ # loop through fields printing them in 50 char width slots
for (i=1; i<=NF; i++) {
printf("%-50s\t", $i)
}
printf("\n")
}' $*
Now I am trying the "wrapper" approach and cannot figure out how to output my results to file... Here is what I have:
#! /usr/bin/awk...
Both the original post and answer are very helpful to me... but I am new and easily baffeled.
What is going on with the variables nsub1 and nsub2... I have tested the script and see it works perfectly but I do not see how return str is actually returning nsub1 or nsub2??
When you are as early...
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.