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 Mike Lewis 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. ehope1

    Custom cursor from Flash 8

    I am new to both Dreamweaver and Flash. I'm using version 8 for both. I searched around and found out how to customize the cursor in Flash 8 but I don't know what to do with it in Dreamweaver. I've put the .swf file in my root file...but could someone please explain to me how to I get it to...
  2. ehope1

    Help With A Case Function

    Jean -- this worked like a charm. Thank you so much!!!
  3. ehope1

    Help With A Case Function

    Jean thanks so much for your help. I didn't understand what you were trying to tell me in the last message. This is what I have so far: Let(amount=SubTotal+Discount+Shipping; Let(State=Left(ShipState;2); Case (State="WA" and InvoiceDate <=GetAsDate(" 8/31/2006");Round((amount) * .084;2)...
  4. ehope1

    Help With A Case Function

    JeanW thank you for your response. I am using FMP 7.0 and I have tried this with AND instead of & and it still doesn't work.
  5. ehope1

    Help With A Case Function

    I have a sales tax field that is currently calculated: Case (ShipState="WA" or ShipState="WASHINGTON" ;Round(( SubTotal+Discount+Shipping) * .084;2); BillState="WA" or BillState="WASHINGTON" ; Round (( SubTotal+Discount+Shipping) * .084;2);0) On Sept 1 the business moved to another county and...
  6. ehope1

    Joining two lines

    Thanks to both of you. I appreciated the explanation of the "tail" piece. I got this to work so I'm a happy camper. Thanks to all who replied!
  7. ehope1

    Joining two lines

    Thanks. Korn shell is what I want to use... even though I'm kind of new at it...I understood what was going on in your code until the last two lines. What does the following do? < ${FILE} | tail +2 tail -1 ${FILE}
  8. ehope1

    Joining two lines

    Thanks to both motoslide and TonyGroves! I'll try both options and see what happens.
  9. ehope1

    Joining two lines

    Here's a larger sample of the file: Date: 12/29/05 12:00:54 PST From: Harry Truman <htruman@aol.com> Subject: 60622 - Secure Online Credit Card Transaction _______________________________________ Customer/Shopper ID: 60622 Date and Time: 12/29/05 12:00:54 PST...
  10. ehope1

    Joining two lines

    I'm working with a korn shell script and have data that looks like: SPE-2 Bread Basket Quantity: 2 Each: $12.00 I want the 1st line to read: Quantity: 2 SPE-2 Bread Basket I know how I can join or append the 1st two lines together (sed -e '/^Quantity:/N;s/\n/ /g') but I don't know what to...
  11. ehope1

    Getline help

    It was the syntax I was using to execute the file. This is beautiful!!! Thank you so much!!! It does exactly what I need!
  12. ehope1

    Getline help

    Thank you for this help. There are some things in here I've never used (like the function append) so I need to do some reading to understand it. I tried just running this as it was written against my input file and got an error message of "badly placed ()'s."... I don't know if my copy-paste...
  13. ehope1

    Getline help

    Below is a sample of a document I'm working with...I'm basically trying to rearrange how the data is arranged plus I want to rename the file with the invoice number and last name of the person ordering. The number of products ordered and the number of lines of detail on each product can vary in...
  14. ehope1

    Getline help

    I tried the suggestion from PHV and although I appreciate the answer, it didn't solve the problem. In answer to vgersh99, I used test[i++] = $0 i++ because I found it in an example -- I took the second + out and everything turns out right except the very first line of the output...it is...
  15. ehope1

    Getline help

    Thank you for responding. I changed the code to read the following but I still get the same results. I'm wondering if I understood what you were suggesting to me? i = $1 while ($1 != "These" && $1 ~ /[A-Za-z0-9]/ || substr($1,1,4) ~ /____/) { getline test[i++] = $0 i++ }...
  16. ehope1

    Getline help

    I have the following code: i = $1 while ($1 != "These" && $1 ~ /[A-Za-z0-9]/ || substr($1,1,4) ~ /____/) { getline { test[i++] = $0 i++ } } and then later I do a printf ("%s\n",date2) >> fn printf ("%s\n",ipc) >> fn printf ("%s\n",domain2) >> fn...

Part and Inventory Search

Back
Top