Jump to content

ino

Members
  • Posts

    119
  • Joined

  • Last visited

About ino

  • Birthday 02/26/1951

Recent Profile Visitors

The recent visitors block is disabled and is not being shown to other users.

ino's Achievements

Collaborator

Collaborator (7/14)

  • First Post
  • Collaborator
  • Conversation Starter
  • Week One Done
  • One Month Later

Recent Badges

0

Reputation

  1. Smef Pls see, I hope it will help: attachment=15847:result-Test.rtf] Message with ScriptMaster v4.122: java.lang.NullPointerException Parameters: {barcode_contents=312345678} ---Script--- Script: /* * Copyright 2004 Jeremias Maerki. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ import java.awt.image.BufferedImage; import java.io.File; import java.io.FileOutputStream; import java.io.OutputStream; import org.krysalis.barcode4j.impl.code39.Code39Bean; import org.krysalis.barcode4j.output.bitmap.BitmapCanvasProvider; import org.krysalis.barcode4j.tools.UnitConv; /** * This example demonstrates creating a bitmap barcode using the bean API. * * @author Jeremias Maerki * @version $Id: SampleB... Code39 barcode ... script: /* * Copyright 2004 Jeremias Maerki. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ import java.awt.image.BufferedImage; import java.io.File; import java.io.FileOutputStream; import java.io.OutputStream; import org.krysalis.barcode4j.impl.code39.Code39Bean; import org.krysalis.barcode4j.output.bitmap.BitmapCanvasProvider; import org.krysalis.barcode4j.tools.UnitConv; /** * This example demonstrates creating a bitmap barcode using the bean API. * * @author Jeremias Maerki * @version $Id: SampleBitmapBarcodeWithBean.java,v 1.2 2006/11/07 16:45:28 jmaerki Exp $ */ try { //Create the barcode bean Code39Bean bean = new Code39Bean(); final int dpi = 150; //Configure the barcode generator bean.setModuleWidth(UnitConv.in2mm(1.0f / dpi)); //makes the narrow bar //width exactly one pixel bean.setWideFactor(3); bean.doQuietZone(false); String tempdir = System.getProperty("java.io.tmpdir"); if ( !(tempdir.endsWith("/") || tempdir.endsWith("\\")) ) tempdir = tempdir + System.getProperty("file.separator"); //Open output file File outputFile = new File(tempdir + "bcode.jpg"); OutputStream out = new FileOutputStream(outputFile); try { //Set up the canvas provider for monochrome JPEG output BitmapCanvasProvider canvas = new BitmapCanvasProvider( out, "image/jpeg", dpi, BufferedImage.TYPE_BYTE_BINARY, false, 0); //Generate the barcode bean.generateBarcode(canvas, barcode_contents); //Signal end of generation canvas.finish(); } finally { out.close(); File f = new File( tempdir + "bcode.jpg" ); fileExists = f.exists(); return f; } } catch (Exception e) { return e; } Thaneke you Ino [ CODE39_Barcode_Example_script.rtf result-Test.rtf
  2. IMac OSX 10.4.11 + FileMaker Pro Advanced 10 + free 360Works ScriptMaster fmplugin > V4 ( V4.0 to 4.122) can not get the correct result with BarcodeJ4.jar. When I install version < V4 ScriptMaster (3.34) - BarcodeJ4.jar (V 2.0. or V2.1) works correctly. Is it possible to fix it in the next update SriptMaster? Ino
  3. BruceR, The problem is that I tried a few custom functions from Brian's db, but no one CF (which I use - tested) in the field ABS_MAX don’t give me sorted data in the List (field) or ascending or descending. Will You be so kind to suggest one. ino
  4. Comment once again, Thanks for fast reply, What I am trying to do with this DB is to analyze the Lotto winnings of national lotteries from 1990 until today. So I stored gains (7 / 39) for all years. I have repeating field (rep 39 times) and if repeating number of fields is equal to the drawn number (Extend (D1) ... Extend (D7) = Repeating number) add the calculation of the indicator (ID = 1), then adds the color for the conditional format to drawn numbers. In summary Field (repeating field, x 39) takes the Total of each repetition and getting a result in the Grand Total. Through various Subtotal control the gains (the numbers drawn in each round) per month, the day the draw, year. The only thing missing that should be that in CONDITIONAL FORMAT to get 7 or 8 or 9 or x most times the numbers are drawn in a different color (background) or that these numbers are in bold and other text color. Attachment PNG clip window. How? :qwery: INO
  5. Commnet, Thanks for Your very fast reply, pls. read my previous replay to BruceR Ino
  6. BruceR, Thanks for fast reply, but research Brian’s CF. Problem is that I grab List ([color:blue]field) from repeating field (39 repetitions), then i I use data inside Custom function RemoveDuplicates ( List ([color:blue]field) ) and result is:234¶223¶219¶237¶244¶245¶258¶238¶211¶233¶220¶252¶227¶229¶243¶257¶263¶239¶230¶255¶242¶268¶217¶265 not sorted. Any how I need this List (field) to be sorted. Ino :thumbup:
  7. Please help. [color:red]1. Sort within a function LIST (Field) 2. Isolating the first 8 (the largest or smallest value) Is able to sort the data received from the Aggregate function LIST (field)? How to sort or is there possibility to sort the data obtained with the function LIST (field) from smaller to larger, or vice versa? The data in the function list are unstable. Custom functions or? The result of LIST function is: 234 223 246 219 237 244 245 258 238 211 233 220 252 227 229 243 257 263 239 230 255 242 268 217 265 I need: 268 265 263 258 255 257 252 246 245 244 243 242 239 238 237 234 233 230 229 227 223 220 219 217 211 After sorting needs 8 most value within the List functions: 268 265 263 258 255 257 252 246 Thanks in advance, Ino PS. FileMaker Pro 10 Advaced Sorry for my english ...
  8. What's wrong, what I am doing wrong? Thanks in advance for your support and help, Zagino ps. Imac os x11.4 fmp 10 adv GoogleMap.zip
  9. Hi Osman, Will You be so kind to put example files on blog theFileMakerBlog in other format (zip or...), that we which use mac os x platform can also tested (view) your files. Thanks Ino
  10. Easy bat, thanks a lot Ino
  11. formally YES, but also some html attach example Test.zip
  12. He comment, sorry, bat as my English is, I don’t put right question. Question is? Can I grab (get) result from web viewer data URLs to another field with GetLayoutObjectAttribute? Why? Formally thru web viewer / data URL i get sam result which I need in some other field in db as filemaker data. Regards Ino
  13. Is it the way (possibility) to grab (get) result of [color:red]data URLs in Web Viewer ? GetLayoutObjectAttribute result is space/nathing.
  14. Søren, That’s it, Thank you a lot Zagino
×
×
  • Create New...

Important Information

By using this site, you agree to our Terms of Use.