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 TouchToneTommy 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. Morpheus1981

    UITypeEditor / Modal option

    I created a "UITypeEditor" class in "UITypeEditorEditStyle.Modal" style. I made my class Editor work, even I am able the add values (because it is an editor of a collection class). So, I got my class that has a property that is a collection. I built and editor for this...
  2. Morpheus1981

    Availables Servers on a LAN

    How can I know in LAN how many SQL Servers there are?
  3. Morpheus1981

    PRIMARY KEY problems

    I am using this query ("SELECT * FROM INFORMATION_SCHEMA.constraint_column_usage") with my personal DataBase "demo01", for some reason it doesn't bring primary key fields for tables which its owner is not dbo, which is very necesary. Does anyone know why? or what can I do...
  4. Morpheus1981

    Default value

    Is it posible to declare a function parameter with a default value in C#?
  5. Morpheus1981

    optional parameters

    I am able to declare optional parameters in VB.Net. I would like to know how to do this in C#. Overloading is not an option. Thanks.
  6. Morpheus1981

    Indexers

    I am handling a property: private Field[] m_fields = new Field[1]; But the numbers of fields will change during runtime, I don't want to set the index to 100 or more, I would like to change it when need it. I don't know how to do this. public virtual Field this[string name]{ get{...
  7. Morpheus1981

    Rookie in problems....

    Please!, read my problem.... Jones, Smith and Clark work as: programmer, data base administrator and manager (Although that is no necesarly the order of their jobs). Jones borrowed from the programer $10. The wife of the manager does not let him lend money. And Smith is not married. /*...
  8. Morpheus1981

    CurrentDirectory

    I am building a MS Word add-in with C#. As part of my project I add a word template "MyDemo.dot" that is going to be in the same directory that my Add-in is being install. After it has been installed I need to know where my template was placed, I mean the path, for instance...
  9. Morpheus1981

    Getting Constraints information

    Using "user_constraint" I am able to know when a relation has CASCADE or Restrict "Delete Rule" when I deletes, but I would like to know that if there's and UPDATE if the update is CASCADE or Not. Does anyone now how I can get this information from ORACLE DataBase? (It can...
  10. Morpheus1981

    Getting Constraints Information

    Hi, I am using "user_constraint" in order to get Data Dictionary directly from the Database but I only can get delete_rule field, but I would like to know the Update_rule and Insert_Rule as well. Does anyone now how I can get this information from ORACLE DataBase? (It can be any not...
  11. Morpheus1981

    Add-In

    I am trying to build an Add-In for MS Word (XP version) but I cannot use commandbars at least I don't know how. Can someone show me how?
  12. Morpheus1981

    User_Constraints

    Hi, I am using "user_constraint" in order to get Data Dictionary directly from the Database but I only can get delete_rule field, but I would like to know the Update_rule and Insert_Rule as well. Does anyone now how I can get this information from ORACLE DataBase? Thank you.
  13. Morpheus1981

    DateFormats

    When I make a query in the query Analyzer, the dateformat by defualt returned is year/moth/day. I would like change it. I mean is if I do something like : select GetDate() The format will be for instance day/month/year. Thanks.
  14. Morpheus1981

    TypeConverter

    I am trying to create my own typeconverter. I am trying to convert a type object to SQLConnection, I know this does not make much sence, But it is important to me do it in this way. At bottom is all what I've been able to do, I've notice it that sourceType and destinationType always are string...
  15. Morpheus1981

    Components

    first I develop a Component with C#, then I build it and it works fine. After that I added to my "toolbox toolbar". But Now I would like to change the image by default use in the toolbox toolbar. Does anyone know how. Thanks!
  16. Morpheus1981

    Explicit "name" in functions

    I would like to avoid the owner's name each time a call a function. Does anyone know how?
  17. Morpheus1981

    Migrating PL/SQL packages

    I am migrating packages from ORACLE to SQL Server. I am wondering if exist a tool(software) to do this?
  18. Morpheus1981

    SETs and Function

    This is what I am trying to do, I wanted to get a month name in diferent laguages so Created a function and resets the language, but it seems I cannot use any SET instruction into fuctions in SQL Server does anyone know a way to do this without doing it manually... I mean out my Function CREATE...
  19. Morpheus1981

    Printing problems

    Some who designed an application with Delphi 3(long time ago) used "Copy FileName PRN" to print some files. Now on windows 2000 that is not working, in the computer that has installed(owner) the printer it is posible but in the others is not... Can you give an idea? pleasee Thanks!
  20. Morpheus1981

    Upgrading to SQL Server 2000

    is there exist a posibility that a program that works fine with SQL Server 7.0 had a problem running with SQL Server 2000?

Part and Inventory Search

Back
Top