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

    Problem with VS.NET design mode

    Hi, I am developing a Table PC application using C# and VS.NET that is executed in portrait mode with a resolution of 768 X 1024. When I set the size of the form to 768 x 1024 in VS.NET it immediately sets the size to 768 x 780. I can programmatically position text boxes and buttons so they...
  2. kyledunn

    Passing XmlResolver to Transform() method

    Hi, I have a method to render HTML from XSLT. Here is the method: /// <summary> /// Method that renders HTML from XSLT document /// </summary> /// <param name=&quot;writer&quot;></param> protected override void Render(HtmlTextWriter writer) { XPathDocument xdoc = new...
  3. kyledunn

    Hi, I have a method to render HT

    Hi, I have a method to render HTML from XSLT. Here is the method: /// <summary> /// Method that renders HTML from XSLT document /// </summary> /// <param name=&quot;writer&quot;></param> protected override void Render(HtmlTextWriter writer) { XPathDocument xdoc = new...
  4. kyledunn

    3 table query help

    I have a User table with: UserID UserName I have a Manage table with: UserID FirmNumber and I have a Firm table with: FirmID FirmName If I know the user's ID, what query would I use to return a table with two columns, UserName and FirmName for only the rows that the UserID in the User...
  5. kyledunn

    Query help

    I have two tables, one with EmployeeKey EmployeeName and the other with EmployeeKey CompanyName Managed(Y/N) Table 1: 1 Bob 2 Bill Table 2: 1 Company1 Y 1 Company2 Y 2 Company1 Y 2 Company2 N I need to query the two tables and return the employee name and company name for...
  6. kyledunn

    create table from query

    How do I create a table from a query in Microsoft SQL 2000?
  7. kyledunn

    SQL Query help

    I have two tables that have been joined into a single table. The first table contains primary key Customer Number and Customer Name. The second table contains a foreign key Customer Number and Location Number. There can be multiple locations for each customer. When I join these two tables with...
  8. kyledunn

    Implementing ISite to have access to DesignMode indicator

    I am creating a custom control that inherits the ComboBox class. I would like to use the ISite.DesignMode indicator to determine if the control is being viewed in design mode but the property always comes up false. MSDN documentation says the design mode indicator is stored in the ISite...
  9. kyledunn

    Inheriting textbox and setting property values

    After creating a new class that inherits the System.Windows.Forms.TextBox, in the new class I would like to set the value of the default Name for the TextBox (other defaults as well) when a new instance is created by dragging the control from the Toolbox and dropping it on a Form. Any idea how...
  10. kyledunn

    Parsing RichText File

    I'm looking for information about parsing a RichText file for printing with C#. Can anyone help with some information or a lead to finding more about this process? Thanks, Kyle
  11. kyledunn

    Center text in a RichTextBox

    Can anyone tell me how to center selected text in a RichTextBox. I loaded a rtf formatted document from Word that was centered in Word and it displayed centered in the RichTextBox so I think it can be done. I would apprectiate any help. Thanks, Kyle
  12. kyledunn

    Searching an entire hard drive for a file

    Anyone have the code worked out to scan every file in every directory on a hard drive to locate a single file possibly using DirectoryInfo and FileInfo? Kyle Hey Jack, this was really just an excuse to say hello and of course it's always possible that you will have the answer to my question...
  13. kyledunn

    Searching an entire hard drive for a file

    Anyone have the code worked out to scan every file in every directory on a hard drive to locate a single file possibly using DirectoryInfo and FileInfo? Kyle
  14. kyledunn

    Intercept up and down arrow keys in datagrid

    Hey Jack, I know I'm always straying from the ASP.NET world but hope the programming concepts are valid enough that you don't mind. In a Windows Form when a cell inside a datagrid has the focus and the up or down arrow key is pressed the focus moves to the previous or next cell. How can I...
  15. kyledunn

    Intercept up and down arrow keys in datagrid

    When a cell inside a datagrid has the focus and the up or down arrow key is pressed the focus moves to the previous or next cell. How can I intercept this event and execute code based on the pressing of the up or down arrow key? The OnKeyUp, OnKeyPress and OnKeyDown are not working as normal...
  16. kyledunn

    Selecting from listbox with right mouse button

    Hey guys, If you left click on a line item in a listbox it selects the item. Clicking the right mouse button is detectable in the listbox but does not select the item. Is there a way to override this listbox behaviour and select an item with the right mouse button? Kyle
  17. kyledunn

    Selecting from listbox with right mouse button

    If you left click on a line item in a listbox it selects the item. Clicking the right mouse button is detectable in the listbox but does not select the item. Is there a way to override this listbox behaviour and select an item with the right mouse button? Kyle
  18. kyledunn

    Detecting when a MdiList Child MenuItem is selected

    After setting MdiList property to true for a main menu selection and opening several MdiChild forms, a list of child forms with the active form checked is displayed when I click on the main menu selection. How can I detect (capture) when one of the MdiChild menu selections is clicked or...
  19. kyledunn

    Programmatically pressing F1 key on keyboard

    Hey Jack and guys, Do you know the code to make a program press the F1 key without touching the keyboard? In other words when I click a button I want the computer to respond as if I had pressed the F1 key. Kyle
  20. kyledunn

    Programmatically pressing F1 key on keyboard

    Anyone know the code to make a program press the F1 key without touching the keyboard? In other words when I click a button I want the computer to respond as if I had pressed the F1 key. Any help would be appreciated. Kyle

Part and Inventory Search

Back
Top