Starter background changer

Discussion in 'Windows 7' started by zolookas, Dec 23, 2009.

  1. vladxed666

    vladxed666 MDL Senior Member

    Sep 19, 2009
    289
    50
    10
    I don't think it's necessary but okay for professionalism...
     
    Stop hovering to collapse... Click to collapse... Hover to expand... Click to expand...
  2. PAYMYRENT

    PAYMYRENT MDL Developer

    Jul 28, 2009
    1,460
    420
    60
    i sent you a PM with what i would like to see in the application :D
     
  3. vladxed666

    vladxed666 MDL Senior Member

    Sep 19, 2009
    289
    50
    10
    #23 vladxed666, Dec 25, 2009
    Last edited: Dec 25, 2009
    Stop hovering to collapse... Click to collapse... Hover to expand... Click to expand...
  4. Bagheera

    Bagheera MDL Member

    Jul 21, 2009
    144
    0
    10
    #24 Bagheera, Dec 25, 2009
    Last edited: Dec 25, 2009
    yeah great job!

    Tested on Win7 starter Dutch Language on Asus EEE 1005HA
    Your tool did a super job! (tested with 1.2)

    Mine wife says: Thank you for letting me change into the wallpapers i like!
    I told her that i grabbed it via MDL and that you created it.

    I did collect the kisses... hehehe... you may grab a nice cold beer from me.. buddy..
    You deserved it!

    Greetz from Bagheera


    [Edited]: Tested version 1.3 -> No problems. worked as advertised.
     
    Stop hovering to collapse... Click to collapse... Hover to expand... Click to expand...
  5. PAYMYRENT

    PAYMYRENT MDL Developer

    Jul 28, 2009
    1,460
    420
    60
    that was my idea :p oh well lol
     
  6. vladxed666

    vladxed666 MDL Senior Member

    Sep 19, 2009
    289
    50
    10
    Paymyrent

    did I lay out the preview close enough to what you were thinking?
     
    Stop hovering to collapse... Click to collapse... Hover to expand... Click to expand...
  7. PAYMYRENT

    PAYMYRENT MDL Developer

    Jul 28, 2009
    1,460
    420
    60
    something like that in the pm i sent him i just said i would like to see the application maintain a library of user selected images.
     
  8. vladxed666

    vladxed666 MDL Senior Member

    Sep 19, 2009
    289
    50
    10
    Stop hovering to collapse... Click to collapse... Hover to expand... Click to expand...
  9. vladxed666

    vladxed666 MDL Senior Member

    Sep 19, 2009
    289
    50
    10
    if we can get this onto a compiler and hit F5
    we would have matched if not surpassed the Windows 7 Ultimate's Background Changer thus totally pawning Windows Starter :D
     
    Stop hovering to collapse... Click to collapse... Hover to expand... Click to expand...
  10. PAYMYRENT

    PAYMYRENT MDL Developer

    Jul 28, 2009
    1,460
    420
    60
    ill talk about it with the author. he uses C# and i use VB so yea might have issues in communication. :p
     
  11. vladxed666

    vladxed666 MDL Senior Member

    Sep 19, 2009
    289
    50
    10
    #32 vladxed666, Dec 25, 2009
    Last edited: Dec 25, 2009
    Stop hovering to collapse... Click to collapse... Hover to expand... Click to expand...
  12. zolookas

    zolookas MDL Junior Member

    May 13, 2007
    62
    1
    0
    Do you assume if we use different programming languages we can't talk?
     
  13. PAYMYRENT

    PAYMYRENT MDL Developer

    Jul 28, 2009
    1,460
    420
    60
    #34 PAYMYRENT, Dec 25, 2009
    Last edited: Dec 25, 2009
    not at all as you have seen i posted that i have a VB conversion of your application if anyone wants to mess with it, i was only stating im not all that good with C#. sorry if i sound like i was being mean :p all my custom controls are in VB and conversion to C# may prove difficult... (ive tried but didnt work all to well) thats what i meant by the communications thing :eek:
     
  14. zolookas

    zolookas MDL Junior Member

    May 13, 2007
    62
    1
    0
    Well, actually, it's my first C# app! I have previous experience in C, C++ and Java, but none in VB.

    Also I am not familiar with winforms, so I will need to take a look how I could implement that explorer frame or what should I call it.

    What kind of custom controls you have?
     
  15. PAYMYRENT

    PAYMYRENT MDL Developer

    Jul 28, 2009
    1,460
    420
    60
    its good for being your first app :D

    i have a custom treeview that works the same way the thingy vladxed666 was talking about.
     
  16. zolookas

    zolookas MDL Junior Member

    May 13, 2007
    62
    1
    0
    #37 zolookas, Dec 25, 2009
    Last edited: Dec 25, 2009
    (OP)
    Ok, what about that "Choose your desktop background text". What font and color I need to use there?
    And where can I get that glass color thingy? I guess that could some semi-transparent png located somewhere.
     
  17. vladxed666

    vladxed666 MDL Senior Member

    Sep 19, 2009
    289
    50
    10
    #38 vladxed666, Dec 25, 2009
    Last edited by a moderator: Apr 20, 2017
    Explorer Option Tree View...

    Code:
    using System;
    using System.Drawing;
    using System.Windows.Forms;
    
    public class ThumbnailImageCreation : Form
    {
        public ThumbnailImageCreation()
        {
            this.SuspendLayout();
    
            this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
            this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
            this.ClientSize = new System.Drawing.Size(299, 273);
            this.Text = "VladXed666";
            this.Paint += new System.Windows.Forms.PaintEventHandler(this.ThumbnailImageCreation_Paint);
            this.Load += new System.EventHandler(this.ThumbnailImageCreation_Load);
            this.ResumeLayout(false);
    
        }
    
        Image thumbnail;
    
        private void ThumbnailImageCreation_Load(object sender, EventArgs e)
        {
            Image img = Image.FromFile("VladXed666.jpg");
            
            int thumbnailWidth = 200, thumbnailHeight = 100;
    
            thumbnail = img.GetThumbnailImage(thumbnailWidth, thumbnailHeight,
              null, IntPtr.Zero);
            
        }
    
        private void ThumbnailImageCreation_Paint(object sender, PaintEventArgs e)
        {
            e.Graphics.DrawImage(thumbnail, 10, 10);
        }
        [STAThread]
        static void Main()
        {
            Application.EnableVisualStyles();
            Application.SetCompatibleTextRenderingDefault(false);
            Application.Run(new ThumbnailImageCreation());
        }
    }
    I Think That Might be it... as for the choose background color just use a static image and put a transparent hyperlink over it :)

    im currently working on how to get it to remember the directories and stuff

    p.s. I i have never done C#
     
    Stop hovering to collapse... Click to collapse... Hover to expand... Click to expand...
  18. zolookas

    zolookas MDL Junior Member

    May 13, 2007
    62
    1
    0
  19. vladxed666

    vladxed666 MDL Senior Member

    Sep 19, 2009
    289
    50
    10
    Stop hovering to collapse... Click to collapse... Hover to expand... Click to expand...