text 表格在Unterbaugruppeöffnen

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了text 表格在Unterbaugruppeöffnen相关的知识,希望对你有一定的参考价值。

'Check whether open document is an assembly and exit rule if not
oDoc = ThisDoc.ModelDocument
If oDoc.DocumentType = kPartDocumentObject Then
MessageBox.Show("This rule can only be run in an assembly file - exiting rule", "iLogic")
Return
End If
 
Dim targetOcc As ComponentOccurrence = Nothing
Do While True
    ' Note the below line will prompt the user to pick an assembly occurrence (this can be a single part file or a sub-assembly of the active document...
    targetOcc = ThisApplication.CommandManager.Pick(SelectionFilterEnum.kAssemblyOccurrenceFilter, "Select Occurrence to Modify...(Press ESC to cancel)")
    If Not targetOcc Is Nothing Then
        Exit Do
    Else
        Dim Res As MsgBoxResult = MsgBox("No model selected - exit?", 36, "iLogic")
        If Res = vbYes Then
            Return
        Else
            ' Do nothing - keep on looping...
        End If
    End If
Loop
 
Try
iLogicVb.RunRule(targetOcc.Name, "Show Form")
Catch
MsgBox("Error - There needs to be an iLogic rule called 'Show Form' in the assembly occurrence you have selected. This rule needs to contain code in 'show' the iLogic form you want to display. The code to do this will need to be similar to: ""iLogicForm.Show(""Form 1"")""", 64, "iLogic")
End Try
 
' End of iLogic Rule ===============================================================================

以上是关于text 表格在Unterbaugruppeöffnen的主要内容,如果未能解决你的问题,请参考以下文章

html Sublime Text 2 Snippet:表格顶部和左侧

html Sublime Text 2 Snippet:表格左侧为标题

html中表格怎样设置文字居中

ajax中网页传输TEXT——带有删除功能的数据库表格显示练习

text 在Google电子表格中对标签进行排序

TEXT() 等效于 Google 表格中的字符串?