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 Chriss Miller 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 bjd4jc

  1. bjd4jc

    Help with overriding

    Thanks! That's what I was missing. I was overriding the wrong method! It makes a ton more sense now!
  2. bjd4jc

    Help with overriding

    Okay, I think I've figured it out in a way that it works. I am not sure that it is the "right" way but it works. I have removed the line that chiph suggested I remove and then I added this to my init routine this.Page_Load += new System.EventHandler(base.Page_Load); this.Page_Load += new...
  3. bjd4jc

    Help with overriding

    If I remove the line base.Page_Load(sender, e); from my parent class _test is never set.
  4. bjd4jc

    Help with overriding

    I am having a hard time with understanding something. I have a base class that is derived from System.Web.UI.Page. This is an example. It mirros what I am doing but it is not what I am doing. public class SLBase : System.Web.UI.Page { private string _test; protected virtual void...
  5. bjd4jc

    Window Key + E problem

    linney- The information in your link worked for me. Thanks a ton! tfg13- Thanks for helping out. Brian
  6. bjd4jc

    Window Key + E problem

    -I don't have the File/Edit/View etc. -I can't do anything but Alt+space to get any of the menus up. -I get the same behavior if I right click MC and do explore -If I double click on MC I get all of the menus and address bars -I tried to "restore defaults" and "Reset All Folders" but it...
  7. bjd4jc

    Window Key + E problem

    When I press the Windows Key + E I get a windows explorer window as expected but when it shows up all of my menus and tool bars are gone. I don't know how the get them back. Can anyone help? I have tried right-clicking and I can never get a context menu that helps any. Thanks Brian
  8. bjd4jc

    Dynamic Datagrid Template Columns

    Thanks, it makes more sense.
  9. bjd4jc

    Dynamic Datagrid Template Columns

    Okay. This seems to work. It doesn't make much sense to me, however. I don't understand how if I re-create the control it has the value it had before. Care to help explain it some?
  10. bjd4jc

    Dynamic Datagrid Template Columns

    I need a datagrid that looks like similar to this: |-------------------------------| | | MEAN | STD | SI | |-------------------------------| |Row 1 |[ ] | [ ] | [ ] | |-------------------------------| |Row 1 |[ ] | [ ] | [ ] | |-------------------------------| |Row 1...
  11. bjd4jc

    size fo exe file

    >>can i have form in dll project yes
  12. bjd4jc

    Selecting Special Characters

    Well, we have tried all of the variations of adding/removing quotes. I found out the problem is with the precompiler. I guess the stored procedures need to be precompiled into C code and then compiled and put in a library somewhere to be used. We didn't figure out how to get around it...
  13. bjd4jc

    Selecting Special Characters

    We are using SQL only stored procedures. They are being compiled by DB2 Development Center from our WinXP workstations. We were wondering if it might be a bug or a shortcoming of that. I don't have a lot of knowledge/experience with DB2 stuff and we are all just getting started with creating...
  14. bjd4jc

    Selecting Special Characters

    SELECT "VST_VISIT#" INTO "OUT_IPR_VISIT#" FROM DBA.VST_PATIENT_VISIT WHERE "VST_IDX_VISIT#"="IN_VISIT#" we have tried this and several variations of it that I didn't save. Development center brings back an error that I don't have access to. I made a request to get the exact error message.
  15. bjd4jc

    Selecting Special Characters

    Sorry, that was only for example. The actual field in question is VST_IDX_VISIT# or any field that contains a #. I was only giving an example in my first post.

Part and Inventory Search

Back
Top