element14 Community
element14 Community
    Register Log In
  • Site
  • Search
  • Log In Register
  • Members
    Members
    • Achievement Levels
    • Benefits of Membership
    • Feedback and Support
    • Members Area
    • Personal Blogs
    • What's New on element14
  • Learn
    Learn
    • eBooks
    • Learning Center
    • Learning Groups
    • STEM Academy
    • Webinars, Training and Events
  • Technologies
    Technologies
    • 3D Printing
    • Experts & Guidance
    • FPGA
    • Industrial Automation
    • Internet of Things
    • Power & Energy
    • Sensors
    • Technology Groups
  • Challenges & Projects
    Challenges & Projects
    • Arduino Projects
    • Design Challenges
    • element14 presents
    • Project14
    • Project Groups
    • Raspberry Pi Projects
  • Products
    Products
    • Arduino
    • Avnet Boards Community
    • Dev Tools
    • Manufacturers
    • Product Groups
    • Raspberry Pi
    • RoadTests & Reviews
  • Store
    Store
    • Visit Your Store
    • Or 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
      •  Korea (Korean)
      •  Malaysia
      •  New Zealand
      •  Philippines
      •  Singapore
      •  Taiwan
      •  Thailand (Thai)
      • 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
Autodesk EAGLE
  • Products
  • More
Autodesk EAGLE
EAGLE User Support (English) dlgTextView  : tips and tricks!
  • Blog
  • Forum
  • Documents
  • Events
  • Polls
  • Files
  • Members
  • Mentions
  • Sub-Groups
  • Tags
  • More
  • Cancel
  • New
Autodesk EAGLE requires membership for participation - click to join
Actions
  • Share
  • More
  • Cancel
Forum Thread Details
  • State Verified Answer
  • Replies 5 replies
  • Subscribers 146 subscribers
  • Views 206 views
  • Users 0 members are here
Related

dlgTextView  : tips and tricks!

Former Member
Former Member over 9 years ago

Hi all,

 

 

first appologise my english (old french guy writing)

 

I'm using a goog BOM generator written of course with ULP, the last and only enhancement I would like to do is around the display.

 

The BOM is both written in a file and directly display by dlgTextView() function.

 

But the dialog box displayed is VERY small and lines are wrapped! and using the mouse to expand it is very boring when i'm in optimizing phase of my design....

 

do you know an option or a way to make it larger????

 

thank's all

image

  • Sign in to reply
  • Cancel
  • autodeskguest
    0 autodeskguest over 9 years ago

    florent simonnot wrote:

    The BOM is both written in a file and directly display by dlgTextView()

    function.

     

    But the dialog box displayed is VERY small and lines are wrapped! and

    using the mouse to expand it is very boring when i'm in optimizing phase

    of my design....

     

    do you know an option or a way to make it larger????

     

    something like that should do the trick

     

         dlgVBoxLayout {

           dlgHBoxLayout {dlgSpacing(250);};

     

           dlgTextView ("") { .... };

         }

    --

     

    Lorenz

     

    • Cancel
    • Vote Up 0 Vote Down
    • Sign in to reply
    • Verify Answer
    • Cancel
  • Former Member
    0 Former Member over 9 years ago in reply to autodeskguest

    Hi Lorenz

     

    thanks!

     

    but unfortunatly it does'nt work :

     

    here is my code :

     

    dlgDialog("BOM format texte ")

                            {

                                dlgHBoxLayout

                                {

                                               

                                    dlgHBoxLayout {dlgSpacing(250);};

                                    dlgTextView (TextBOM);

                                }

                                dlgPushButton("OK")

                                {

                                    dlgAccept();

                                }

     

    and the result is : image

     

    sorry.....image

    • Cancel
    • Vote Up 0 Vote Down
    • Sign in to reply
    • Verify Answer
    • Cancel
  • autodeskguest
    0 autodeskguest over 9 years ago in reply to Former Member

    dlgDialog("BOM format texte "){

                            dlgHBoxLayout{

                                dlgHBoxLayout {dlgSpacing(250);};

                                dlgTextView (TextBOM);

                            }

                            dlgPushButton("OK"){

                                dlgAccept();

                            }

     

    Just a little wrong. The spacing to make the TextView wider has to be in

    the Horizontal layout within the default vertical layout of the

    dlgDialog().

     

    dlgDialog("BOM format texte "){

                dlgHBoxLayout{dlgSpacing(500);}

                dlgTextView ("TextBOM");

                dlgPushButton("OK"){dlgAccept();}

    };

     

     

    --

    Web access to CadSoft support forums at www.eaglecentral.ca.  Where the CadSoft EAGLE community meets.

     

    • Cancel
    • Vote Up 0 Vote Down
    • Sign in to reply
    • Reject Answer
    • Cancel
  • Former Member
    0 Former Member over 9 years ago in reply to autodeskguest

    hi!

     

    you 're a genious ! I have spend hours on this trick! and U solve it in minutes (in seconds in fact)!

     

    Great thanks!

     

    image

    • Cancel
    • Vote Up 0 Vote Down
    • Sign in to reply
    • Verify Answer
    • Cancel
  • autodeskguest
    0 autodeskguest over 9 years ago in reply to Former Member

    florent ZeFrenchGuy wrote:

    but unfortunatly it does'nt work :

    here is my code :

     

    dlgDialog("BOM format texte ")

                            {

                                dlgHBoxLayout

                                    ^-- this should be a 'V'

     

    but as Warren mentions, the default layout of dlgDialog is vertical.

    So the dlgVBoxLayout in this context is superfluous.

     

    --

     

    Lorenz

     

    • 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 © 2023 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