Wednesday, October 27, 2010

RosettaNet PIP 3A1 release

After spending days to understand and try to make PIP 3A1 as workable class, i manage to release the first version to codeplex.

Hopefully this release will be helpful to those who are seeking for the same PIP as me.

http://rosettanetpip.codeplex.com/

Tuesday, October 19, 2010

VB.NET: How to put description to your function/class/enum during Intellisense

I struggle for hours on how to get description to my enum and class so they can be more meaningful when I'm assigning the value to them. After spending for hours searching, I manage to found it!!!!

Below would be the sample on what is the effect i'm looking for


Below would be my code on how I do it...

--- Code from my enum ---

''' Code identifying the type of pricing available for a product.
Public Enum PricingTypeCode
''' Authorized Cost and Resale.
ACR
''' Authorized Cost - The negotiated cost agreed upon between the supplier and distributor at the time the “debit?is authorized.
ACS
''' Authorized cost.
ACT
''' Any available.
ANY
''' Authorized resale.
ARS
''' Average Selling Price - Manufacturer
ASP
''' Budgetary Price Amount.
BPA
''' Broken Purchase Price.
BPP
''' Book-Ship.
BSH
''' Catalog price - Book (the supplier’s published cost at the time of transaction) or Published Price.


I hope this tutorial will help others