element14 Community
element14 Community
    Register Log In
  • Site
  • Search
  • Log In Register
  • Community Hub
    Community Hub
    • What's New on element14
    • Feedback and Support
    • Benefits of Membership
    • Personal Blogs
    • Members Area
    • Achievement Levels
  • Learn
    Learn
    • Ask an Expert
    • eBooks
    • element14 presents
    • Learning Center
    • Tech Spotlight
    • STEM Academy
    • Webinars, Training and Events
    • Learning Groups
  • Technologies
    Technologies
    • 3D Printing
    • FPGA
    • Industrial Automation
    • Internet of Things
    • Power & Energy
    • Sensors
    • Technology Groups
  • Challenges & Projects
    Challenges & Projects
    • Design Challenges
    • element14 presents Projects
    • Project14
    • Arduino Projects
    • Raspberry Pi Projects
    • Project Groups
  • Products
    Products
    • Arduino
    • Avnet & Tria Boards Community
    • Dev Tools
    • Manufacturers
    • Multicomp Pro
    • Product Groups
    • Raspberry Pi
    • RoadTests & Reviews
  • About Us
  • Store
    Store
    • Visit Your Store
    • Choose another store...
      • Europe
      •  Austria (German)
      •  Belgium (Dutch, French)
      •  Bulgaria (Bulgarian)
      •  Czech Republic (Czech)
      •  Denmark (Danish)
      •  Estonia (Estonian)
      •  Finland (Finnish)
      •  France (French)
      •  Germany (German)
      •  Hungary (Hungarian)
      •  Ireland
      •  Israel
      •  Italy (Italian)
      •  Latvia (Latvian)
      •  
      •  Lithuania (Lithuanian)
      •  Netherlands (Dutch)
      •  Norway (Norwegian)
      •  Poland (Polish)
      •  Portugal (Portuguese)
      •  Romania (Romanian)
      •  Russia (Russian)
      •  Slovakia (Slovak)
      •  Slovenia (Slovenian)
      •  Spain (Spanish)
      •  Sweden (Swedish)
      •  Switzerland(German, French)
      •  Turkey (Turkish)
      •  United Kingdom
      • Asia Pacific
      •  Australia
      •  China
      •  Hong Kong
      •  India
      • Japan
      •  Korea (Korean)
      •  Malaysia
      •  New Zealand
      •  Philippines
      •  Singapore
      •  Taiwan
      •  Thailand (Thai)
      • Vietnam
      • Americas
      •  Brazil (Portuguese)
      •  Canada
      •  Mexico (Spanish)
      •  United States
      Can't find the country/region you're looking for? Visit our export site or find a local distributor.
  • Translate
  • Profile
  • Settings
Autodesk EAGLE
  • Products
  • More
Autodesk EAGLE
EAGLE User Support (English) ULP question. Get date to automagically show in BOM filename.
  • Blog
  • Forum
  • Documents
  • Events
  • Polls
  • Files
  • Members
  • Mentions
  • Sub-Groups
  • Tags
  • More
  • Cancel
  • New
Join Autodesk EAGLE to participate - click to join for free!
Actions
  • Share
  • More
  • Cancel
Forum Thread Details
  • State Verified Answer
  • Replies 2 replies
  • Subscribers 179 subscribers
  • Views 364 views
  • Users 0 members are here
Related

ULP question. Get date to automagically show in BOM filename.

bmoe
bmoe over 12 years ago

Hi.

 

I have usa a modified version of the default bom.ulp wich I have changed a bit to fit my needs, but there is one small thing thet irritates me. I cant get the date to automagically be filled in, in the file save dialog.

 

Originally the filename comes up like this "schname.csv" and I would like to get "schname YYMMDD.csv" with the day automagically filled in.

Ive tryed alot with the t2string() but as soon as I try to use it in the filename the filename field will be blank instead.

 

Anyone have a clue?

 

This is how the save function looks like today.

 

void SaveList (void)

{

  string FileName;

  string FileExt;

 

  switch (OutputFormat)

  {

    case ofText: FileExt = ".txt"; break;

    case ofHTML: FileExt = ".html"; break;

    case ofCSV:  FileExt = ".csv"; break;

  }

  schematic(SCH) FileName = filesetext (SCH.name, FileExt);

  FileName = dlgFileSave (tr ("Save Bill Of Material"), FileName);

  if (FileName)

  {

    string a [];

    if (!fileglob (a, FileName) || dlgMessageBox (tr ("File '") + FileName +

        tr ("' exists\n\nOverwrite?"), tr("+&Yes"), tr("-&No")) == 0)

    {

      output (FileName, "wt")

      {

        printf ("%s", MakeList ()); // using "%s" to avoid problems if list contains any '%'

      }

    }

  }

}

  • Sign in to reply
  • Cancel

Top Replies

  • dukepro
    dukepro over 12 years ago +1 verified
    On 03/18/2013 05:00 AM, Matias Sjögren wrote: Hi. I have usa a modified version of the default bom.ulp wich I have changed a bit to fit my needs, but there is one small thing thet irritates me. I cant…
  • dukepro
    0 dukepro over 12 years ago

    On 03/18/2013 05:00 AM, Matias Sjögren wrote:

    Hi.

     

    I have usa a modified version of the default bom.ulp wich I have changed

    a bit to fit my needs, but there is one small thing thet irritates me. I

    cant get the date to automagically be filled in, in the file save

    dialog.

     

    Originally the filename comes up like this "schname.csv" and I would

    like to get "schname YYMMDD.csv" with the day automagically filled in.

    Ive tryed alot with the t2string() but as soon as I try to use it in the

    filename the filename field will be blank instead.

     

    Anyone have a clue?

     

    This is how the save function looks like today.

     

    void SaveList (void)

    {

      string FileName;

      string FileExt;

     

      switch (OutputFormat)

      {

        case ofText: FileExt = ".txt"; break;

        case ofHTML: FileExt = ".html"; break;

        case ofCSV:  FileExt = ".csv"; break;

      }

      //schematic(SCH) FileName = filesetext (SCH.name, FileExt);

        int now = time();

        schematic(SCH) sprintf(FileName, "%s %s%s",

            filesetext(SCH.name, ""),    // Get the file name w/o extention

            t2string(now, "yyMMdd"),     // Produce a formatted string

            FileExt                      // Append the extension of choice.

        );

     

    See section titled "Time Conversions" starting at the bottom of page 103

    in ulp640_en.pdf

     

     

      FileName = dlgFileSave (tr ("Save Bill Of Material"), FileName);

      if (FileName)

      {

        string a [];

        if (!fileglob (a, FileName) || dlgMessageBox (tr ("File '") +

    FileName +

            tr ("' exists\n\nOverwrite?"), tr("+&Yes"), tr("-&No")) == 0)

        {

          output (FileName, "wt")

          {

            printf ("%s", MakeList ()); // using "%s" to avoid problems if

    list contains any '%'

          }

        }

      }

    }

     

    --

    To view any images and attachments in this post, visit:

    http://www.element14.com/community/message/72123#72123

     

     

    • Cancel
    • Vote Up +1 Vote Down
    • Sign in to reply
    • Reject Answer
    • Cancel
  • bmoe
    0 bmoe over 12 years ago in reply to dukepro

    Thank you very much. That made my day.

     

    I started this as a no question thread and then edited it to a question, and now it seems that I cant make it anwerd. I cant find where to do it anyway.

    • Cancel
    • Vote Up 0 Vote Down
    • Sign in to reply
    • Verify Answer
    • Cancel
element14 Community

element14 is the first online community specifically for engineers. Connect with your peers and get expert answers to your questions.

  • Members
  • Learn
  • Technologies
  • Challenges & Projects
  • Products
  • Store
  • About Us
  • Feedback & Support
  • FAQs
  • Terms of Use
  • Privacy Policy
  • Legal and Copyright Notices
  • Sitemap
  • Cookies

An Avnet Company © 2025 Premier Farnell Limited. All Rights Reserved.

Premier Farnell Ltd, registered in England and Wales (no 00876412), registered office: Farnell House, Forge Lane, Leeds LS12 2NE.

ICP 备案号 10220084.

Follow element14

  • X
  • Facebook
  • linkedin
  • YouTube