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 SkipVought on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Search results for query: *

  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.
  16. bjd4jc

    Selecting Special Characters

    It is a rather large table... CREATE TABLE,"DBA"."VST_PATIENT_VISIT", ( "VST_OID" DBA.OID NOT NULL WITH DEFAULT ,"VST_IDENTITY" INTEGER NOT NULL GENERATED BY DEFAULT AS IDENTITY ( START WITH 350025) ,"VST_UPDATE_DTTM" TIMESTAMP...
  17. bjd4jc

    Selecting Special Characters

    Marc, I will try to get the error messages. The DBA is the one with the issue and I don't have permissions to compile the procedures so I can't get the error myself. I am trying to help him out. The error has something to do with "illegal character" or something like that. ddiamond, We have...
  18. bjd4jc

    Selecting Special Characters

    I am not all that familiar with DB2. We are on version 7.2. We have several tables that have the # sign in column names. They work fine when they are selected from a mainframe program. However, we are trying to create SQL Stored procedures using some of these fields in the selection cursor...
  19. bjd4jc

    VB app with Word bookmark problem

    For reference, the thread at the VBA forum is thread707-1206855
  20. bjd4jc

    VB app with Word bookmark problem

    I know this is a VB Application, but you just might get a better response on the VBA forum. So, if you don't get an adequate response here, you might try that forum. :-)

Part and Inventory Search

Back
Top