A
andrew
C:\Documents and Settings\watts\My Documents\Visual Studio
Projects\boeing\showPMACfg\vuePMAcfg\vuePMAcfg.cs(88):
Static member 'vuePMAcfg.pmaDataHash.pmaDataHash1' cannot
be accessed with an instance reference; qualify it with a
type name instead
OK I have this class And the hash and the function shows
up in type ahead. I tried declaring it and later accessing
it like this:
private vuePMAcfg.pmaDataHash pmaDataObj;
....
pmaDataShareArray.Add(pmaDataObj.pmaDataHash1);
But I get the error above ... if I try
private vuePMAcfg.pmaDataHash pmaDataObj = new
vuePMAcfg.pmaDataHash(); ... I get the same error.
What does the error mean and how do I get to the items &
function ??? Thanks
public class pmaDataHash
{
public pmaDataHash()
{
}
public static Hashtable pmaDataHash1 = new
Hashtable();
public string GetFolderBylevel(string filePath,int level)
}
Projects\boeing\showPMACfg\vuePMAcfg\vuePMAcfg.cs(88):
Static member 'vuePMAcfg.pmaDataHash.pmaDataHash1' cannot
be accessed with an instance reference; qualify it with a
type name instead
OK I have this class And the hash and the function shows
up in type ahead. I tried declaring it and later accessing
it like this:
private vuePMAcfg.pmaDataHash pmaDataObj;
....
pmaDataShareArray.Add(pmaDataObj.pmaDataHash1);
But I get the error above ... if I try
private vuePMAcfg.pmaDataHash pmaDataObj = new
vuePMAcfg.pmaDataHash(); ... I get the same error.
What does the error mean and how do I get to the items &
function ??? Thanks
public class pmaDataHash
{
public pmaDataHash()
{
}
public static Hashtable pmaDataHash1 = new
Hashtable();
public string GetFolderBylevel(string filePath,int level)
}