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. emeraldtea

    How to access one of the web sites running in IIS ?

    Hi, I am using Win 2000 Server. I have multiple web sites running form my IIS. One of them is called localhost located in "c:\inetpub\wwwroot". One of them is called Test located in "c:\test". If I try to access a page "web.aspx" hosted in "localhost...
  2. emeraldtea

    What is the corresponding control for FileDialog in web form?

    I want to upload a file to databasse. In window application, I can use FileDialog to explore the directories to reach the file. In aspx, what can be done to get the same effect? System.Web.UI.WebControls does not contain anything like FileDialog. How to explore directories in web forms?
  3. emeraldtea

    What is the difference between these two storing options

    I am writing a program to store some images files in database.I would like to have the file name stored in the database and the original file being store in the hard disk. How to do that in c#? What is the difference between store data files with the file name in database and store it somewhere...
  4. emeraldtea

    protection level

    Did u try to resize the form in this own class body? Or did u call its resize method from other classes?
  5. emeraldtea

    Advantages of using C# over VB.Net

    When will they have CLR for unix/linux. Read an article. It predicts that in two years, .NET users will be more than Java/J2EE users. Now c# users is 1/15 of Java users.
  6. emeraldtea

    Advantages of using C# over VB.Net

    I like C#. I was mainly programming in c++ and in Java Swing. I'm certified in Java 2 programming. It is not that hard to use C#. I just joined a company which uses Msft platform. I was given a c# window application right away. It is the first time I touch c#. But now I am in the project for a...
  7. emeraldtea

    How to set Anchors for controls wrapped inside controls?

    In an application, I have nested controls(controls within controls and they are from different classes). The Form form1 is the base. In form1, I have a panel--panel1. In anel1, I will add another panel--panel2 with several labels.(I use panel2 to group these labels.) panel2 is from another...
  8. emeraldtea

    Anchor Problems with nested controls

    I have a Form, in the form a Panel and in the Panel a listbox. When I do this in a single file(all form, panel and listbox located in the same file). And I set: this.panel.Anchor = AnchorStyles.Left | AnchorStyles.Right |..Top |..Bottom; this.listbox.Anchor = AnchorSytles.Left |..Right |..Top...
  9. emeraldtea

    Is installer necessary?

    We are writing an application. Users will be several hundreds of people. The application is not that big. We only need to distribute an executable and several other files. Can we just write some scripts so that when users log in, these files will be xcopied to their hard drives, instead of...
  10. emeraldtea

    How to distribute .NET Framework with Win App installer project:

    thanks. that helps. We are writing an application. Users will be several hundreds of people. The application is not that big. We only need to distribute an executable and several other files. Can we just write some scripts so that when users log in, these files will be xcopied to their hard...
  11. emeraldtea

    In .NET SDK documentation, Tables i

    thanks. I am interested in finding out the syntax of the C#. public DataTableCollection Tables {get;} Tables is not a method. What does the {get;} mean?
  12. emeraldtea

    In .NET SDK documentation, Tables i

    In .NET SDK documentation, Tables is a property of DataSet. It lists as: public DataTableCollection Tables {get;} What does {get;} mean? Is it related to a method for getting Tables value? What is DataTableCollection? Is it a base class that Tables inherited? Thanks. :->
  13. emeraldtea

    How to distribute .NET Framework with Win App installer project:

    thanks. Is it a way that I could include dotnetfx.exe as part of the installer. So that users do not need to download it themselves?
  14. emeraldtea

    How to distribute .NET Framework with Win App installer project:

    Hi, All: We write a C# Windows Application. I am writing installer for it using Visual Studio. I read that "merge module dotnetfxredist_x86_enu.msm is by default added to the project but is excluded from the project. This module contains all files of the .NET funtime. If the .NET runtime is...
  15. emeraldtea

    View the Form

    add a Main method to the form. or just add a line of code: form.Show();
  16. emeraldtea

    How to print copyright symbol(circl

    How to print copyright symbol(circle with a c inside) and trade mark(TM) in C# window applications? Thanks,

Part and Inventory Search

Back
Top