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: *

  • Users: emeraldtea
  • Content: Threads
  • Order by date
  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

    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...
  5. 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...
  6. 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...
  7. 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. :->
  8. 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...
  9. 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