Ehaviv
Computer
- Jul 2, 2003
- 1,012
Hi
please help understand the uf_ref doc.
the doc say:
<OutAttribute> ByRef item_type As String
how I declare this in vb journal ==>> ( Dim ByRef item_type As String ) ?
Because ==>> Dim item_type As String this not work.
please help understand the uf_ref doc.
the doc say:
<OutAttribute> ByRef item_type As String
how I declare this in vb journal ==>> ( Dim ByRef item_type As String ) ?
Because ==>> Dim item_type As String this not work.
Code:
UFClone.AskItemType Method
Wrapper method for UF_CLONE_ask_item_type
Public Sub AskItemType (
input_part_name As String,
<OutAttribute> ByRef item_type As String
)
Code:
'-------------------------------------------------------------
Dim item_type As String <<== Not works
Dim s As Session = Session.GetSession()
Dim ufs As UFSession = UFSession.GetUFSession
Dim input_part_name As String
Dim ByRef item_type As String <<== (ByRef) Do this possible
ufs.clone.AskItemType(input_part_name, item_type)