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!

Search results for query: *

  • Users: bartee
  • Content: Threads
  • Order by date
  1. bartee

    Hide Title Bar in New Window...

    Is there a way... when opening a new window using window.open to hide the ie title bar (the bar with the close, minimize, and mazimize buttons)? any suggestions welcome. I've tried titlebar=no, which did not seem to work for me. Should it have? Thank you in advance.
  2. bartee

    close method after redirect

    Quick question: I have a form -- on submit it opens a pop-up window. The pop-up opens on submit. After submitting, the main windows goes throught a series of re-directs and finally displays a page. At this point the pop-up is still visible. I am trying to close the pop-up after the...
  3. bartee

    back not showing form...

    I have a form page. For my form page, I just had to add a pop-up message before submitting. It's not an alert, but a javascript call for window.open. When the user clicks a button on the pop-up window -- it closes the window and continues to process using the parent window. Problem is that...
  4. bartee

    Consuming Web Service...

    I have a web service that I am consuming on my .net web form. I am able to connect and accept return information fine. However, the web service returns 5 parameters. I want to set a local variable to the value of each parameter returned but only want to call the web service once. Can anyone...
  5. bartee

    Web Services...

    New to using web services. It seems that asp.net makes consuming a web service a fairly simple matter. I would like to consume an external web service on a particular website. However, this site was written in traditional asp code. My understanding is that consuming a web service using...
  6. bartee

    Databind Label...

    New with .net and really have mostly used datagrid's, select boxes, etc for databinding. Using .net 2.0/vs 2005. I have an object datasource set up on my web form. This object datasource returns 1 record. I have several labels/text boxes on my form that I want to display info about this one...
  7. bartee

    unable to create folder...

    I have a folder on my d drive for program files. Suddenly, I cannot write to it. Gives the message unable to create new folder, access is denied. I am logged in with the admin account and never had any problems before. Any ideas greatly appreciated. Thanks in advance.
  8. bartee

    Multiple Result Sets from Stored Proc...

    I am using asp.net 2.0 vb. I have a dataset set up in the designer. The table adapter is set to call a stored procedure. The stored procedure returns two result sets (two tables). I have a datatable that is filled by the table adapter described above. Again, this is all done in the designer...
  9. bartee

    Display Hierarchy of Data...

    I am using asp.net 2.0 VB for developing a web application. On my page, I want to display Company and Contact information in the following way: Company Address ABC Test 123 Main Street Bob Smith 555-789-5555 Al Rivers 222-555-8888 XYZ Company 345 Main Street What is...
  10. bartee

    rename a file in stored procedure...

    I would like to copy a file from one directory to another and would like to accomplish this within a stored procedure. There are a couple of issues that have be questioning the best method to accomplish this: 1. I will not know the exact name of the file but will know the naming convention it...
  11. bartee

    DTS Import Error...

    I am trying to import a text file into a sql table. The text file is fixed and the table is created by sql before the import process. I have tested the process with smaller files in the exact same format and it works fine. This file is about 65,000 rows. When I try to import the larger file I...
  12. bartee

    Total Row Count...

    I'm using VS 2005 and have an Object Data Source on my webform. I also have a gridview on the page that used the Object Data Source as it's datasource. If I don't have Paging enabled on the gridview, I can easily display the total number of rows using: gridview1.rows.count Problem is that when...
  13. bartee

    Custom Validator...

    I have a custom validator on my webform and the validator is in a gridview for the edit command. Currently, it's calling a server-side validation function and correctly validating the row before edit. I would like to change the error message at runtime but cannot seem to figure out how within...
  14. bartee

    Datagrid Upda te Question...

    I am using visual studio 2005 and have a question regarding an updateable gridview. The gridview on my page has 4 columns, and only one is able to be updated. It's a textbox. However, when updated, I want to validate the entry against a table in my database before processing the update. In...
  15. bartee

    Grid View and Update...

    Using visual studio 2005. I have a webpage with a button that, when clicked, will postback the page -- inserting the value of the texbox on the page into the database. I also have a required field validator on this texbox. On the same, I also have a gridview that allows edit. When the user...
  16. bartee

    crystal print button...

    Using Visual Studio 2005. I've tried to get this working but have had not luck. I set up a crystal reports viewer and report source in the web form. Everything displays correctly at this point. I have the print option enabled in the toolbar. When the print icon is clicked, it opens the...
  17. bartee

    print button submits form

    using vs 2005. I have a crystal report viewer on my page, along with the report source. I also have a form on the same page. I have the crystal toolbar enabled with the print option. when I click the print button in the crystal toolbar, it submits the form before launching the print wizard...
  18. bartee

    Datasource and Procedure...

    fairly new to asp.net. using vs 2005. i set up an object datasource from a dataset. the dataset uses a stored procedure with a parameter. the object datasource seems to test correctly. i have a text box on the page. in the object datasource configuration (designer), i associated the value of...
  19. bartee

    Printing Windows Form...

    New to developing windows applications. Using VS 2005. I have a simple webform that I want to give the user the ability to print. I added a the printdocument from the designer and a menustrip for the printing option. I added the following code in the "PrintToolStripMenuItem_Click" event but...
  20. bartee

    Subset of datatable

    using vs 2005. I created a dataset in the designer that fills a datatable I'm using to bind to several form controls. I would like to create a subset of the result set and use this subset as the datasource for a drop down list. For example, if the original datatable has a column called...

Part and Inventory Search

Back
Top