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 Mike Lewis 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. dominus1

    Bringing up the saveas dialog

    Figured it out finally on IE6 the security setting werent set correctly. They should have been set to medium-low.
  2. dominus1

    Bringing up the saveas dialog

    Unfortunatly I am facing the same issue.
  3. dominus1

    Bringing up the saveas dialog

    I have a page with the below code, when I load Downloader.aspx in my web browser on ie6 it prompts me with a saveas dialog box to save the file Downloader.xls. When I attempt to do the same in IE7 in brings up a blank window. Any idea why the saveas dialog doesnt appear in IE7? //code for...
  4. dominus1

    how to bring save as dialog box in asp.net

    Woops sorry didnt see you meant asp.net. You will have to invoke it through javascript: <script language="JavaScript"> var isReady = false; function doSaveAs(){ if (document.execCommand){ if (isReady){document.execCommand("SaveAs");} }else{ alert('Feature available only in Internet Exlorer 4.0...
  5. dominus1

    how to bring save as dialog box in asp.net

    The following code should get you started: (check out this site for more: http://www.csharphelp.com/archives/archive192.html) private void btnOpenFileDialog_Click(object sender, System.EventArgs e) { OpenFileDialog openFileDialog1 = new OpenFileDialog(); openFileDialog1.InitialDirectory = "c:\"...
  6. dominus1

    C# with Access database curiosity

    I never heard of creating a class per table. Maybe you should consider removing that layer of extraction. The classes in the data layer should make logical sense rather then randomly creating one class per table.

Part and Inventory Search

Back
Top