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 strongm 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

    outlook subject value

    I do not undersdant, what exactly do you need?
  4. Morpheus1981

    using varable with IN clause for an integer field

    Just did some like that: CREATE procedure procDEMO03(@cs varchar(200)) as begin EXEC ('SELECT * FROM tableDemo01 WHERE id in '+ @cs) end GO EXEC DEMO03 '(1,2,3,4)' and it works fine. I don't know it this examples helps. if it doesn't please let me know
  5. 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...
  6. Morpheus1981

    Default value

    Is it posible to declare a function parameter with a default value in C#?
  7. 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.
  8. Morpheus1981

    Hi All, Can I run a TO_CHAR on a

    Try it, if doesn't works the answer is yes.
  9. Morpheus1981

    Left Join Issue

    I cannot understant your question, can you I little bit more clear?
  10. Morpheus1981

    Need to UPDATE from SELECT

    I would like to help, But I need to know in first place why you didn't just called it in your first select? I mean in this select you call as many variables as you want, for instance: Select @TopDate = max(PAYPERBEGINNING), @Var2 = AVG(field2) from TimeDB..EMPLOYEEBENEFITS But if there's an...
  11. 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{...
  12. Morpheus1981

    CurrentDirectory

    Yeah, I allready try "Application.StartupPath". What happens is that it gives me a path that is not a right one. It always returns a path point to my desktop but it is not there where my add-in is intalled. Thanks a lot for ur help
  13. 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. /*...
  14. 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...
  15. Morpheus1981

    Inherited Form (Visual Studio.NET)

    Check for the property "Modifiers" maybe it can help you.
  16. 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...
  17. 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...
  18. 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?
  19. 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.
  20. 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.

Part and Inventory Search

Back
Top