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 Wanet Telecoms Ltd 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: *

  1. jasperx

    Acrobat 8 Pro Printing blank pages

    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...
  2. jasperx

    need simple password protection

    ...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; }
  3. jasperx

    need simple password protection

    ...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...
  4. jasperx

    Which MSDE or other product do I need?

    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...
  5. jasperx

    Which MSDE or other product do I need?

    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...
  6. jasperx

    automating import of excel data to web based SQL Server

    Thanks for getting me pointed in the right direction. I found quite a bit of info in the WROX text on SQL Server 7. I am on my way.
  7. jasperx

    automating import of excel data to web based SQL Server

    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...
  8. jasperx

    To Lock or not to Lock... What are the implications?

    Thanks for the advice to look up optimistic locking on Google.... the light finally went on in my head....I can &quot;see&quot; how this might work. What I have not noticed before is the use of &quot;optimistic&quot; terminology in the MySQL documentation for InnoDB tables.... is this how...
  9. jasperx

    To Lock or not to Lock... What are the implications?

    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...
  10. jasperx

    setup mysql Mac OSX

    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...
  11. jasperx

    Data View Not Active

    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...
  12. jasperx

    Data View Not Active

    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...
  13. jasperx

    Merging fields within a file

    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 >>> ? <<<...
  14. jasperx

    Merging fields within a file

    I have a well structured comma separated file which has approximately 20 fields... some may have a few less. I would like to &quot;merge&quot; 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...
  15. jasperx

    use sed remove duplicate lines

    ...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...
  16. jasperx

    use sed remove duplicate lines

    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...
  17. jasperx

    use sed remove duplicate lines

    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...
  18. jasperx

    using a wrapper and writing a file

    ...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=&quot;Please enter the name of...
  19. jasperx

    using a wrapper and writing a file

    ...{ # loop through fields printing them in 50 char width slots for (i=1; i<=NF; i++) { printf(&quot;%-50s\t&quot;, $i) } printf(&quot;\n&quot;) }' $* Now I am trying the &quot;wrapper&quot; approach and cannot figure out how to output my results to file... Here is what I have: #! /usr/bin/awk...
  20. jasperx

    I currently use this function to tr

    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...

Part and Inventory Search

Back
Top