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...
ChrisHirst, trollacious,
I saw those references, read them but still needed a bit more...
The approach I suggested did not use MD5... because I got the idea that MD5 would require my host to install or make something extra available or require .NET. We are not using .NET.
Can I get away with...
I have an administrative area on my site where users with different securtiy levels can see different pages. This was done with a couple of tables which capture users and a security setting. It has been working great. Probably our biggest exposure now is that the user name and password are...
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...
I could not get
awk '/^first name/{if(NR>1)next}{print}' path/to/inputfile to work..all the headers remained and the suggestion from CaKiwi to strip off the xtra lines as part of the concatonation would have set me back a ways while I figured out how to redo it permitting me to automatically...
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...
OK... so that was pretty simple (and helpful)... It would be really nice if I could prompt the user for the input file name and an output file name if they forgot...I have done something like this in a shell script but do not see how to keep awks $1 treatment for fields separate from command...
I have a simple script to format a file which I got to work using the
awk -f scriptname.awk inputFilename > outputfilename
It looks like this:
awk '
BEGIN {FS=","}
{ # loop through fields printing them in 50 char width slots
for (i=1; i<=NF; i++) {
printf("%-50s\t", $i)
}...
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.