• Skip to main content
  • Skip to search
  • Skip to footer
Cadence Home
  • This search text may be transcribed, used, stored, or accessed by our third-party service providers per our Cookie Policy and Privacy Policy.

  1. Community Forums
  2. Custom IC SKILL
  3. Passing values through a Skill User Form

Stats

  • Locked Locked
  • Replies 4
  • Subscribers 143
  • Views 15140
  • Members are here 0
This discussion has been locked.
You can no longer post new replies to this discussion. If you have a question you can start a new discussion

Passing values through a Skill User Form

NKU10k
NKU10k over 12 years ago

 Hi,

I am trying to create a form accesible with a menu in Virtuoso Layout editor to create a complex shape. Managed to add the menu, couple of menu items and create a form using material in this forum and web but struggling to pass the values input through the form to a procedure. I am trying to draw a donutas a start.

My code is copied below and appriciate anyone can help figuring out the problem.

The error  message is

*Error* dbCreateDonut argument #4 should be a number (type template = "dglnn") - nil

procedure(CreateAddDoForm()
     let((InnerRadius OuterRadius Centre Layer)
        InnerRadius=hiCreateIntField(
                ?name 'InnerRadius
                ?prompt "Inner Radius"
                )
    OuterRadius=hiCreateIntField(
                ?name 'OuterRadius
                ?prompt "Outer Radius"
                )
    Centre=hiCreateIntField(
                ?name 'Centre
                ?prompt "Centre"
                )
        Layer=hiCreateIntField(
                ?name 'Layer
                ?prompt "Layer"
                )
               
        hiCreateAppForm(
            ?name 'AddDonutForm
            ?formTitle "Input Source Parameters"
            ?buttonLayout 'OKCancelApply
            ?callback "DrawDonut()"
            ?fields
                list(
                    list(InnerRadius 0:0 200:30 100)
                    list(OuterRadius 0:35 200:30 100)
                    list(Centre 0:70 200:30 100)
                    list(Layer 0:105 200:30 100)
                    )
                      )
         );let
      );procedure

procedure(FunctionAddDonut()
     unless(boundp('AddDonutForm)
        CreateAddDoForm()
           )
  
     hiDisplayForm(AddDonutForm)
         )

procedure(DrawDonut()
      let( (Orad Irad)
        Orad=AddDonutForm->OuterRadius->Value
        Irad=AddDonutForm->InnerRadius->Value
        cvID=geGetWindowCellView()
        dbCreateDonut(cvID "DIFF"  0:0 Orad Irad)
       
       )

      )

 

  • Cancel
Parents
  • NKU10k
    NKU10k over 12 years ago

     Thanks Andrew. This is very very helpful.

    Will save days!!

     

     

    • Cancel
    • Vote Up 0 Vote Down
    • Cancel
Reply
  • NKU10k
    NKU10k over 12 years ago

     Thanks Andrew. This is very very helpful.

    Will save days!!

     

     

    • Cancel
    • Vote Up 0 Vote Down
    • Cancel
Children
No Data

Community Guidelines

The Cadence Design Communities support Cadence users and technologists interacting to exchange ideas, news, technical information, and best practices to solve problems and get the most from Cadence technology. The community is open to everyone, and to provide the most value, we require participants to follow our Community Guidelines that facilitate a quality exchange of ideas and information. By accessing, contributing, using or downloading any materials from the site, you agree to be bound by the full Community Guidelines.

© 2025 Cadence Design Systems, Inc. All Rights Reserved.

  • Terms of Use
  • Privacy
  • Cookie Policy
  • US Trademarks
  • Do Not Sell or Share My Personal Information