Star Wars Credits ControlCStarWarsCtrl | CodeGuru

Star Wars Credits ControlCStarWarsCtrl

This is an attempt to create a control which looks like the credits of the Star Wars movies. I’ve used a few simple GDI functions to establish this effect: Ellipse() for the stars in the background and StretchBlt() for scrolling text. The control is devired from CStatic. Here is how you use this class: Insert […]

Written By
CodeGuru Staff
CodeGuru Staff
Aug 7, 2002
1 minute read
CodeGuru content and product recommendations are editorially independent. We may make money when you click on links to our partners. Learn More

This is an attempt to create a control which looks like the credits of the Star Wars movies. I’ve used a few simple GDI functions to establish this effect: Ellipse() for the stars in the background and StretchBlt() for scrolling text. The control is devired from CStatic.

Here is how you use this class:

  1. Insert the .h and .cpp files into your project.
  2. Add a static control into your dialog resource.
  3. Add a member variable for that static control.
  4. Modify the variable declaration.
  5. Change this:

    CStatic m_StarWarsCtrl;

    To this:

    CStarWarsCtrl m_StarWarsCtrl; 
  6. In your InitDialog message handler set the speed and add some text. Use these member functions:
  7. m_StarWarsCtrl.SetStarSpeed(30);
    m_StarWarsCtrl.SetScrollSpeed(2);
    m_StarWarsCtrl.AddTextLine(“A long time ago”);
    m_StarWarsCtrl.AddTextLine(“”);
    m_StarWarsCtrl.AddTextLine(“in a galaxy far far away”);
    m_StarWarsCtrl.AddTextLine(“”);
    m_StarWarsCtrl.AddTextLine(“this application was programmed by”);
    m_StarWarsCtrl.AddTextLine(“”);
    m_StarWarsCtrl.AddTextLine(“Pablo van der Meer”);
    m_StarWarsCtrl.AddTextLine(“”);
    

For more cool projects visit: Pablo Software Solutions.

Downloads

Download demo executable – 8 Kb

Download source – 15 Kb

CodeGuru Logo

CodeGuru covers topics related to Microsoft-related software development, mobile development, database management, and web application programming. In addition to tutorials and how-tos that teach programmers how to code in Microsoft-related languages and frameworks like C# and .Net, we also publish articles on software development tools, the latest in developer news, and advice for project managers. Cloud services such as Microsoft Azure and database options including SQL Server and MSSQL are also frequently covered.

Property of TechnologyAdvice. © 2026 TechnologyAdvice. All Rights Reserved

Advertiser Disclosure: Some of the products that appear on this site are from companies from which TechnologyAdvice receives compensation. This compensation may impact how and where products appear on this site including, for example, the order in which they appear. TechnologyAdvice does not include all companies or all types of products available in the marketplace.