×
INTELLIGENT WORK FORUMS
FOR ENGINEERING PROFESSIONALS

Log In

Come Join Us!

Are you an
Engineering professional?
Join Eng-Tips Forums!
  • Talk With Other Members
  • Be Notified Of Responses
    To Your Posts
  • Keyword Search
  • One-Click Access To Your
    Favorite Forums
  • Automated Signatures
    On Your Posts
  • Best Of All, It's Free!

*Eng-Tips's functionality depends on members receiving e-mail. By joining you are opting in to receive e-mail.

Posting Guidelines

Promoting, selling, recruiting, coursework and thesis posting is forbidden.

Students Click Here

VB api String parameter

VB api String parameter

VB api String parameter

(OP)
Hello,

I'm developing an API to fill the parameters of some parts. Till now I'm able to fill the parameters of type Real Number. But for String parameters, I'm unable to change it's value by the VB API.
Any idea of how to do it?

This is the code

CODE --> vb.net

Dim asynconn As New pfcls.CCpfcAsyncConnection

        Dim session As pfcls.IpfcBaseSession

        Dim Parametro As IpfcBaseParameter
        Dim ParamValue As IpfcParamValue
        Dim pobj As IpfcModel 'As IpfcModelItem

        Dim sel As IpfcSelections
        Dim selopt As IpfcSelectionOptions

        Dim comprimento As Double = 0.0

        Dim Descricao As String = ""
        Dim Mitem As CMpfcModelItem
        Dim pv1 As IpfcParamValue




        conn = asynconn.Connect("", "", ".", 5)
        session = conn.Session

        'model = session.CurrentModel
        model = session.GetActiveModel
        window = session.CurrentWindow

        'mdlname = session.CurrentModel.FileName
        mdlname = session.GetActiveModel.FileName

        Work_dir = session.GetCurrentDirectory


      
        selopt = (New CCpfcSelectionOptions).Create("part")


        selopt.MaxNumSels = 1

        sel = session.Select(selopt, Nothing)

        'pobj = sel.Item(0).SelItem
        pobj = sel.Item(0).SelModel

        Dim aa = pobj.FullName
        ' pobj.DisplayInNewWindow()

        'Dim_Y
        Parametro = pobj.GetParam("DIM_Y")

        ParamValue = Parametro.Value


        comprimento = ParamValue.DoubleValue

        MsgBox(comprimento)

        Mitem = New CMpfcModelItem
        'pv1 = Mitem.CreateDoubleParamValue(CDbl(22222.0))
        pv1 = Mitem.CreateDoubleParamValue((33333.0))
        Parametro.Value = pv1

        'Descricao_POR


        Parametro = pobj.GetParam("DESCRICAO_POR")

        ParamValue = Parametro.Value


        Descricao = ParamValue.StringValue

        MsgBox(Descricao)

        Mitem = New CMpfcModelItem
        Dim TEXTO As String = "AAAA"
        pv1 = Mitem.CreateStringParamValue(TEXTO)

        Parametro.Value = pv1 'HERE IS THE ERROR






        conn.Disconnect(1)

        Me.Close()

    End Sub 

Tiago Figueiredo
Tooling Engineer

Youtube channel:
https://www.youtube.com/channel/UC1qdlBeJJEgMgpPLV...

Replies continue below

Recommended for you

Red Flag This Post

Please let us know here why this post is inappropriate. Reasons such as off-topic, duplicates, flames, illegal, vulgar, or students posting their homework.

Red Flag Submitted

Thank you for helping keep Eng-Tips Forums free from inappropriate posts.
The Eng-Tips staff will check this out and take appropriate action.

Reply To This Thread

Posting in the Eng-Tips forums is a member-only feature.

Click Here to join Eng-Tips and talk with other members! Already a Member? Login



News


Close Box

Join Eng-Tips® Today!

Join your peers on the Internet's largest technical engineering professional community.
It's easy to join and it's free.

Here's Why Members Love Eng-Tips Forums:

Register now while it's still free!

Already a member? Close this window and log in.

Join Us             Close