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 wOOdy-Soft 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 Morpheus1981

  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.

Part and Inventory Search

Back
Top