Thanks Everyone.
For anyone else out there experiencing my pain.
The following is now working for me.

Dim HdrArray As New UNIOBJECTSLib.UniDynArray
HdrArray.StringValue = objOnHand.GetArg(1) 
txtPart.Text = HdrArray.Value(1, 1).StringValue

--- David Jordan <[EMAIL PROTECTED]> wrote:

> >.Net is not as forgiving as VB6.  In VB6 you could say
> 
> Textbox1 = Value
> 
> In .Net you have to say
> 
> Textbox1.Text = Value
> 
> Leaving ".text" off causes a compile error as .Net does not
> default to a
> property you have to specify it.
> 
> >  HdrArray = objOnHand.GetArg(1)
> 
> You have not specified the property of HdrArray that you are
> assigning
> objOnHand.GetArg(1) to.   I think off the top of my head it is
> ".StringValue" but just check the manual.  Ie
> HdrArray.StringValue
> 
> 
> 
> David Jordan
> Managing Consultant
>  
> [EMAIL PROTECTED]
> 
> DACONO Holdings Pty Ltd
> www.dacono.com.au
>  
> PO Box 909
> Lane Cove
> NSW 2066
> Australia
> -------
> u2-users mailing list
> u2-users@listserver.u2ug.org
> To unsubscribe please visit http://listserver.u2ug.org/
> 


__________________________________________________
Do You Yahoo!?
Tired of spam?  Yahoo! Mail has the best spam protection around 
http://mail.yahoo.com 
-------
u2-users mailing list
u2-users@listserver.u2ug.org
To unsubscribe please visit http://listserver.u2ug.org/

Reply via email to