Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations bkrike on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Recent content by Julesey

  1. Julesey

    Help with files & directories

    How far have you got with this? The first step I guess is to create a DirectoryInfo object. You can then use foreach FileInfo within the DirectoryInfo object. All in System.IO I believe.
  2. Julesey

    I cannot acces the choosen properties from new component

    I'm not sure I fully understand the problem but can you not just instantiate at declaration private Label tBLabel = new Label();
  3. Julesey

    Context issues using application fields in classes

    Hmmmm try this HttpContext.Current.Server.Transfer
  4. Julesey

    Context issues using application fields in classes

    HttpApplication ha = (HttpApplication)HttpContext.Current.ApplicationInstance; string strConn = ha.Application["ConnectDB"].ToString(); I've not tested this at all but it may help?
  5. Julesey

    PlugIn accessing master project class

    Thanks JM, I already have the interface in place and being used by Host and Plug-In. I think I found the answer tho which is to break out the App_Code stuff into its own project so that I can compile the dll straight from that and then just access that both from the Plug-In and the main app...
  6. Julesey

    PlugIn accessing master project class

    Hi all, I'm fairly new to c# and vs so I hope this question isn't an obvious one. I have written a project but have then decided to segment parts of the code into PlugIn components. My question is what is the best way to access parts of the parent code from the PlugIn e.g. the Dataaccess area...

Part and Inventory Search

Back
Top