OpenNETCF.IO.StorageCard.DiskFreeSpace struct not found

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

Hi,

I am attemping to use the StorageCard class but am unable to find struct
DiskFreeSpace?

I am using version 1.2 of ONCF.

Am I missing something here.
Regards
Simon.
 
Hi Sergey,

Thanks for replying. I just checked the 1.2 source and the struct is
definately there as a public instance struct but not available via
intellisense in VS.NET 2003.

Whats new in 1.4? I tried to install 1.3 a while back but it buggered up my
system and took a while to straighten it out again.

Regards
Simon.

Sergey Bogdanov said:
.... u/p: guest/guest


--
Sergey Bogdanov [.NET CF MVP, MCSD]
http://www.sergeybogdanov.com


Simon said:
Hi,

I am attemping to use the StorageCard class but am unable to find struct
DiskFreeSpace?

I am using version 1.2 of ONCF.

Am I missing something here.
Regards
Simon.
 
Yes there were a few installer problems with v1.3, you should find v1.4 is
much better.

Are you using VB.NET? it's possible that DiskFreeSpace wasn't CLS Compliant
so it doesn't show in VB (just a guess). also note that its a nested type so
you'd declare it as
Dim dfs As StorageCard.DiskFreeSpace =
StorageCard.GetDiskFreeSpace("\Storage")

Peter

--
Peter Foot
Windows Embedded MVP
http://www.inthehand.com | http://www.peterfoot.net

Simon Hart said:
Hi Sergey,

Thanks for replying. I just checked the 1.2 source and the struct is
definately there as a public instance struct but not available via
intellisense in VS.NET 2003.

Whats new in 1.4? I tried to install 1.3 a while back but it buggered up
my
system and took a while to straighten it out again.

Regards
Simon.

Sergey Bogdanov said:
.... u/p: guest/guest


--
Sergey Bogdanov [.NET CF MVP, MCSD]
http://www.sergeybogdanov.com


Simon said:
Hi,

I am attemping to use the StorageCard class but am unable to find
struct
DiskFreeSpace?

I am using version 1.2 of ONCF.

Am I missing something here.
Regards
Simon.
 
No I'm using C#.

It is rather strange. I might try recompiling the library and updating the
GAC with it. VS.NET thinks its not there but I can see it in the code!

In fact I will probebly upgrade to 1.4.

Cheers,
Simon.

Peter Foot said:
Yes there were a few installer problems with v1.3, you should find v1.4 is
much better.

Are you using VB.NET? it's possible that DiskFreeSpace wasn't CLS Compliant
so it doesn't show in VB (just a guess). also note that its a nested type so
you'd declare it as
Dim dfs As StorageCard.DiskFreeSpace =
StorageCard.GetDiskFreeSpace("\Storage")

Peter

--
Peter Foot
Windows Embedded MVP
http://www.inthehand.com | http://www.peterfoot.net

Simon Hart said:
Hi Sergey,

Thanks for replying. I just checked the 1.2 source and the struct is
definately there as a public instance struct but not available via
intellisense in VS.NET 2003.

Whats new in 1.4? I tried to install 1.3 a while back but it buggered up
my
system and took a while to straighten it out again.

Regards
Simon.

Sergey Bogdanov said:
.... u/p: guest/guest


--
Sergey Bogdanov [.NET CF MVP, MCSD]
http://www.sergeybogdanov.com


Simon Hart wrote:
Hi,

I am attemping to use the StorageCard class but am unable to find
struct
DiskFreeSpace?

I am using version 1.2 of ONCF.

Am I missing something here.
Regards
Simon.
 
Back
Top