CodeGuru Home VC++ / MFC / C++ .NET / C# Visual Basic VB Forums Developer.com

Search:

Type: Posts; User: ronmoles

Search: Search took 0.04 seconds.

  1. Thread: Theme

    by ronmoles
    Replies
    1
    Views
    568

    Re: Theme

    Go to msdn.con and download one of their templates. The list is here:
    http://msdn2.microsoft.com/en-us/asp.net/aa336613.aspx

    The "Personal Design" template supports themes. You download the...
  2. Replies
    15
    Views
    1,679

    Re: ASP.NET strange performances trouble

    Have you checked the web.config file and make sure that debug compilation was not set to true? It would not be the first time someone forgot to modify that before publishing the web site.

    Of...
  3. Replies
    1
    Views
    945

    Re: referencing root directory of web site?

    Figured it out...

    I changed to using a hyperlink web control instead of just an html <a> tag.
  4. Replies
    1
    Views
    945

    [resolved]referencing root directory of web site?

    Hi all...

    I'm having a problem developing a CSS-based menu structure. I prefer having many of my files in subdirectories below the root. For example, I have a subdirectory just off the root,...
  5. Replies
    2
    Views
    2,195

    Re: Get System Tray Icons!!!

    If you are asking how to make an application reside in the system tray (not have an entry on the task bar), I've done this... it's REALLY easy in C#.

    Go to http://codeproject.com and type in...
  6. Replies
    5
    Views
    1,999

    Re: Checkboxes for checked and unchecked

    Good answer... but doesn't this code need to read:


    CheckBox1_checked()
    {
    CheckBox2.checked= false;
    }

    CheckBox2_checked()
    {
  7. Thread: Ajax Tool

    by ronmoles
    Replies
    4
    Views
    6,139

    Re: Ajax Tool

    http://www.asp.net is Microsoft's site for asp. There you will find free HOW TO videos on all things ASP, even Ajax. I was in a certification bootcamp a few months ago and the instructor showed us...
  8. Replies
    5
    Views
    963

    Re: listbox not showing up

    Whenever I use VS to put entries into a listbox, it does it for me in the InitializeComponent() code that is at the top of your listing.

    If anything, put your



    listBox1.Items.Add("Ontario");...
  9. Re: A single check box to check/uncheck all checkbox in a datagrid view

    First of all, it looks like you are only setting all of the check boxes to true (don't have a way of setting them to false).

    I'm not so good at VB, and you might need to make my code look more...
  10. Thread: Page Heading

    by ronmoles
    Replies
    1
    Views
    815

    Re: Page Heading

    If you're talking about the Page "Title", that is nothing more than setting the Title property of the page. Good place to do this is in the Page_Load() event handler.



    protected void...
  11. Replies
    2
    Views
    1,045

    Re: VS studio stops coloring my commands

    I believe I answered this for you on the DevShed forums....
  12. Re: Two pages in one page without using the frames

    The concept of "master pages" and "content pages" do that. You define a master page that has some controls on it, usually things like headers, footers, menus. You also define WHERE the content will...
  13. Replies
    0
    Views
    509

    Cookie confusion

    Hello all...

    I am working through an asp.net 2.0 book, and have a question about cookies. The book makes it appear as though it is possible to have multiple cookies, but all of my data is...
  14. Replies
    2
    Views
    3,821

    Re: Disabling Minimize Animation?

    Guess I was trying to use the standard "Control Box" (minimize, maximixe, close) options, but see that at least some of my tray apps don't do it this way, but instead have a separate OK/Close button...
  15. Replies
    2
    Views
    3,821

    Disabling Minimize Animation?

    I'm developing an app that sits in the tray. When I double-click on the icon while it is in the tray, animation makes it appear as if the program was "asleep" just over the START button. When I...
  16. Replies
    1
    Views
    606

    Data Implementation in C#

    Hello All.

    As someone who has spent years doing procedural programming (C, asm), instead of OOP, I am struggling with how to design/implement my data. C# seems (at least to me) to want to tie the...
Results 1 to 16 of 16





Click Here to Expand Forum to Full Width

Featured