My Typed datasets change character

G

Guest

Why after adding a dll (with dataset schemas) to my project I can access and use my the typed datasets, then for no reason say 5mins later I can no longer fully access them. The inteliSence goes from showing tables, rows etc to only Equals and referenceEquals and my class will generate errors where the datasets were added

Put another way..
Are we able to access typed datasets from a referenced dll?
This appears to work sometimes and for limited time durations
Any clues?

Using C# VS 2003 Version 7.1.308
Framework 1.1.432

Thank
 
M

Miha Markic [MVP C#]

Hi Freed,

The only problem I know is that intellisense woes something (= does not help
with typed dataset properties).
No errors with compiler whatsoever though.
What errors are you seeing?

--
Miha Markic [MVP C#] - RightHand .NET consulting & software development
miha at rthand com
www.rthand.com

Freed Flinstone said:
Why after adding a dll (with dataset schemas) to my project I can access
and use my the typed datasets, then for no reason say 5mins later I can no
longer fully access them. The inteliSence goes from showing tables, rows etc
to only Equals and referenceEquals and my class will generate errors where
the datasets were added.
 
G

Guest

Hi Miha
Thanks for you response
I have noticed these things. When I add my dll to the project and then use the object browser to browse the datasets within that dlls name space I can see the class for the datasets dataset, datatable, row etc and can access them using intelliSense
sampl
foreach(mySchemas.ds_F_Dr_Entry.F_Dr_EntryRow r in ds_F_Dr_Entry1.F_Dr_Entry

r.DR_SEQ += 45


For a while the intelliSense will work and thats nice. Then it stops working and yes your correct that I don't get a compile time error but without the intelliSense the benefit of typed datasets is almost lost. Now also when I open Object Browser again and view the datasets I can now only see the dataset class but not the DataTable, datarow etc

Is this a bug or am I not doing things correctly? How could I get things working

Thank
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top