01-07-2010 04:47 AM
01-07-2010 06:50 AM
Using large picture file size attachment isn't very friendly try using a format that generates a small size file such as PNG.
Regards
Ray
01-07-2010 09:27 AM - edited 01-07-2010 09:27 AM
bannerghatta -
This is specified by the DotNetModule.MemberFlags property. The DotNetMemberFlags consist of DotNetMemberFlags_Static (0x1) and DotNetMemberFlags_TopLevel (0x2). These can be used individually or you can perform a Bit-Wise OR to use them together.
In your case, the Show Base Class Members check box corresponds to the DotNetMemberFlags_TopLevel (0x2). If this flag is set, the box is not checked. If the flag is not set, the box is checked. Thus, you will either want to set DotNetModule.MemberFlags = 0x0 or 0x1 dependent on whether or not you are using a Static Member.
Since you seem to be doing a lot with the DotNetModule, here is a link to the DotNetModule Help online.
Hope this helps.
01-08-2010 04:24 PM
01-08-2010 05:39 PM
Juergen -
I agree with you... that's why in my previous post I stated:
In your case, the Show Base Class Members check box corresponds to the DotNetMemberFlags_TopLevel (0x2). If this flag is set, the box is not checked. If the flag is not set, the box is checked. Thus, you will either want to set DotNetModule.MemberFlags = 0x0 or 0x1 dependent on whether or not you are using a Static Member.
I apologize if my statement came off as confusing, but it is otherwise correct.