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 gkittelson 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. theunknownknight

    Reading Dynamic Checkboxes from datagrid

    Question Title: Reading Dynamic Checkboxes from Datagrid Author: theunknownknight Points: 125 Date: 01/07/2004 12:05PM PST I just finished this article on dotnetbips called "Creating DataGrid Templated Columns Dynamically - Part I" Heres the code in the article: string connstr...
  2. theunknownknight

    Printing out an ASP.NET Page

    I have a simple web page that contains a user cotrol across the top for navigation and a user control down the left side for navigation (standard layout). How do I print out the contents of the page to automatically fit the portait landscape so that the entire page fits horizontally without...
  3. theunknownknight

    Displaying CSS from response.write

    I have a simple problem. I think I just overlooked something. I am using response.write to send HTML to a page. While doing this I set the class attribute of my main table to a class found in my css file. Example: Response.write(&quot;<table align = center class =...
  4. theunknownknight

    ASP.NET/SQL Problem

    Making an ASP.NET page and I am experiencing the following difficulty I am working on a project that requires 4 seperate queries. One of the queries has to do the following 3 things. 1. Need all projects from Project table that were initiated by the current user (all projs from table where...
  5. theunknownknight

    Challenging SQL Problem

    I am working on a project that requires 4 seperate queries. One of the queries has to do the following 3 things. 1. Need all projects from Project table that were initiated by the current user (all projs from table where login.login = 'randomlogname' 2. From the above returned records I need...
  6. theunknownknight

    Programmatically Changing Fontsize

    For the record, I am trying to change the font of a label web control.
  7. theunknownknight

    Is programmatically changing fontsize possible?

    I am trying to change the font size on a label web control. Would I still do it the same way?
  8. theunknownknight

    Is programmatically changing fontsize possible?

    How do I programmatically Change Fontsize to XX-Small in ASP.NET. I need to do this during run time. Thanks.
  9. theunknownknight

    Programmatically Changing Fontsize

    How do I programmatically Change Fontsize to XX-Small in ASP.NET. I need to do this during run time. Thanks.
  10. theunknownknight

    SQL Problem

    When I do that I get a dialog box asking for a parameter LC and LC1 here is the new query: SELECT projectreview.ProjNum, Count(projectreview.Login) AS [&quot;LC&quot;], (select Count(login.pkey) from login)-1 AS [&quot;LC1&quot;] FROM login INNER JOIN projectreview ON login.PKey =...
  11. theunknownknight

    SQL Problem

    SELECT projectreview.ProjNum, Count(projectreview.Login) AS &quot;LC&quot;, (select Count(login.pkey) from login)-1 AS &quot;LC1&quot; FROM projectreview INNER JOIN login ON projectreview.Login = login.PKey WHERE &quot;LC&quot; <> &quot;LC1&quot; GROUP BY projectreview.ProjNum; returns this...
  12. theunknownknight

    Left Join?

    Using Access 2000 I am doing a left join between 2 tables. I know that it will return everything on the left as well as everything that it matches with on the right. HOWEVER, I want to do a left join that returns everything on the left BUT leave out all the records that match with the right...
  13. theunknownknight

    LEFT JOIN?

    I am writing an ASP.NET app using Access 2000 I am doing a left join between 2 tables. I know that it will return everything on the left as well as everything that it matches with on the right. HOWEVER, I want to do a left join that returns everything on the left BUT leave out all the records...
  14. theunknownknight

    Left Join Question

    I am using Access 2000 I am doing a left join between 2 tables. I know that it will return everything on the left as well as everything that it matches with on the right. HOWEVER, I want to do a left join that returns everything on the left BUT leave out all the records that match with the...
  15. theunknownknight

    SIMPLE LEFT JOIN QUESTION

    NOTE: I AM USING ACCESS 2000
  16. theunknownknight

    SIMPLE LEFT JOIN QUESTION

    I am doing a left join between 2 tables. I know that it will return everything on the left as well as everything that it matches with on the right. HOWEVER, I want to do a left join that returns everything on the left BUT leave out all the records that match with the right. How would I do this?
  17. theunknownknight

    Using indexof to find quotation marks?

    1. I have a multiline textbox. 2. The text is put in a string variable. 3. I am trying to take everything out of the string except letters. 4. I am using the indexof Property Problem, I want to remove the quotations from the string. For instance if someone writes &quot;Hi there, Jack said...
  18. theunknownknight

    taking quotations out of a string

    1. I have a multiline text. 2. The text is put in a string variable. 3. I am trying to take everything out of the string except letters. 4. I am using the indexof Property Problem, I want to remove the quotations from the string. For instance if someone writes &quot;Hi the, Jack said...

Part and Inventory Search

Back
Top