Ok, I'm not sure if this is the correct way on how to do this, but here is what I want to do.
When my main form loads, I want to read in an xml document into XMLDataset, which I can do. But I want to only read this document in once when the app loads. Then whenever another form needs the dataset it can access the already read in dataset, instead of taking the time to read in the document again.
How can I do this
I'm not sure if I have explained what I want to do clearly or not, leave me questions if I haven't.

Accessing a dataset from another form
bri5
SamCKayak
whs45
Module MoGlobal
Public dsActiveAlarms As DataSet
End Module
I tried both
Module MoGlobal
Public shared dsActiveAlarms As DataSet
End Module
kenlefeb
Public Module MoGlobal
Public dsActiveAlarms As DataSet
End Module