function readOnly(count){ }
Starting November 20, the site will be set to read-only. On December 4, 2023,
forum discussions will move to the Trailblazer Community.
+ Start a Discussion
AhlomonAhlomon 

How to extract table names and table fields from sForce object using VB.NET

I will really appreciate if you can show me or point me to some code sample how to extract only all your table names and table fields from sForce object using VB.NET after you will login into your SalesForce.com account.

SuperfellSuperfell
Call describeGlobal, this'll return you an array of strings call types, these are you table names. take each one of these and call describeSObject, this will return all the metadata about the fields for that type.
AhlomonAhlomon
Hi Simon,
Can you point me to the sample  or put the sample code here in VB.NET for describeGlobal and describeSObject
SuperfellSuperfell
there's samples in the API docs.
AhlomonAhlomon

Thanks Simon.

I've got it working in C#

Unfortunatelly I didn't find any code samples in VB.NET