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: JGresko
  • Content: Threads
  • Order by date
  1. JGresko

    Visual Studio .NET question

    I'm trying to move my development environment from one computer to another. Does anyone know if tthere is a way to move my user data and memu preferences? I'm trying to find where/how my toolbar snippits are stored. Thanks
  2. JGresko

    Newbie question: purpose of Delete in Insert trigger

    Hi I have been working with other database for a number of years now, but this is my first experiance with SQL Server. I'm finding a lot of confusing things about the way this database I'm dealing with was written. I'm used to putting my database commands into my application that sits on top...
  3. JGresko

    Two table query acting strangely. Need ideas.

    This should be a simple, straight forward query, but it won't come back. Because it's so simple I don't know what else to do to debug it... Platform: Oracle8i Enterprise Edition Release 8.1.7.3.0 What I'm trying to do: Query two tables containing cost data to get the average line item cost...
  4. JGresko

    Response.Write looping

    I have a page where I'm running a process that is going to take roughly 20 minutes. I want to give the user feedback every few minutes to show the process status. I'm doing this by using response.write to list out process actions and then use response.flush at certain key points to output the...
  5. JGresko

    Running long process in background

    I have an ASP.NET web application that needs to allow the user to start a long process to perform complex calculations and create/manipulate database records. -- I need to allow a user action to start the process from a form where needed input parameters are supplied. -- I'm planning on...
  6. JGresko

    converting image to two colors

    I have been asked to provide a logo in two colors only to our printers. Since our logo is shades of blue and black, how do I save it as those two colors only?
  7. JGresko

    Class Usability Question

    I'm writing a class that's going to be used by other programmers in my company besides myself. I'd like to provide decriptive popups for the IntelliSense to help them determine which properties or methods they need to use (like what appears in the yellow box next to getType when you click on...
  8. JGresko

    Sharing files between different projects in one solution

    My office partners and I are trying to figure out the best design for a large ASP.NET project we are doing. I set up the prototype in Visual Studio as a solution with one project that contained many folders for each 'mini project' in our application suite. A co-worker wants to break out the...
  9. JGresko

    SubQuery - complex syntax

    I'm trying to pull one record from one table that has a lot of referrences to other tables in it. I would like to be able to pull in the values from the other tables, but I can't do a normal join because multiple fields in the main table reference the same field (but different records) in the...
  10. JGresko

    ASP insert to SQL Server database

    I'm attempting to insert a record to a SQL Server database from an ASP webpage. I'm having trouble determining the best method to use to do this. My MSDN help files seem to be on vacation because they're not giving me what I need today. Any pointers will be much appreciated! Thanks...
  11. JGresko

    ASP insert to SQL Server database

    I'm attempting to insert a record to a SQL Server database from an ASP webpage. I'm having trouble determining the best method to use to do this. My MSDN help files seem to be on vacation because they're not giving me what I need today. Any pointers will be much appreciated! Thanks...
  12. JGresko

    Class vs Module

    I want to create a class (or module) that contains the code for a button. I need to pass two variables, both of type System.Web.UI.WebControls.ListBox to the action. How do I create the button to be used in this fashion. Here's an outline of what I need the button to do: Sub...
  13. JGresko

    What's the easiest way to sort a webforms listbox?

    Was thread855-398034 I've set up two listboxes in the classic 'select from one, add to another' (pic below). I quickly discovered that ASP listboxes in web forms don't have a sort properity... Does anyone know an easy way to keep the lists sorted as users move items back and forth? Thanks...
  14. JGresko

    Can this be done?

    I have a large collection of checkboxes that I'd like to allow the user to scroll through... like a list box, but with checkboxes (faked graphic example pictured). Does anyone know how to do this or know of a componet that allows it? Thanks, Judy
  15. JGresko

    Setting DataGrid Checkbox Control

    I have a checkbox in a datagrid and I want it to show checked for active records (denoted by a Y in the active column of my database). How do I get the Y to check the checkbox? Thanks in advance, Judy
  16. JGresko

    Data Formatting Expression

    I have an ASP.NET datagrid on a page that contains a bound date column. The Visual Studio DataGrid property builder asks for a "Data Formatting Expression", but I can't get it to accept any syntax I've tried. The MS help files on bound columns say: "Using bound columns in a...
  17. JGresko

    Looping through controls

    I have a page that has two groups of 12 identical controls that use the following naming convention ctrl1_1, ctrl1_2, ctrl1_3, etc. and ctrl2_1, ctrl2_2, ctrl2_3, etc. I need to loop through them, inserting their values into a database, when the user presses the submit button. I'm...
  18. JGresko

    Need two results from one action

    This is what I'm trying to do... 1) Button clicked on original page 2) Use ASP to checks status of requested document 3) If document is available - Use ASP to update access log - Display document status info in original window AND Begin download of requested document (.doc or...
  19. JGresko

    Error writing to a text file

    I'm attempting to write to a text file but keep getting the same error "ERROR #62: Input past end of file" It's been so long since I've done this I know it has something to do with the cursor position in the file, but can't figure out how to fix it. Here's the code I'm using...
  20. JGresko

    How to reference text of DataGridLinkButton

    Hi, I have a DataGrid that contains a LinkButton in the first column. When the link is clicked on, it's supposed to pass it's name to another DataGrid to show it's part of a subgroup. I've been unable to figure out how to reference the text of the link to add it to the new Grid. I'm...

Part and Inventory Search

Back
Top