Cards32.DLL - A Library of Card Bitmaps / Functions for VB | CodeGuru

Cards32.DLL – A Library of Card Bitmaps / Functions for VB

Click here for a larger image. How to use Card32.dll In order to use this dll file you have to reference it in your project. I’m certain that all of you reading this know how to do this, but in case your not sure here are the steps. Main menu in VB – choose ‘Project’ […]

Written By
CodeGuru Staff
CodeGuru Staff
Oct 13, 2003
2 minute read
CodeGuru content and product recommendations are editorially independent. We may make money when you click on links to our partners. Learn More



Click here for a larger image.

How to use Card32.dll

In order to use this dll file you have to reference it in your
project. I’m certain that all of you reading this know how to
do this, but in case your not sure here are the steps.

  1. Main menu in VB – choose ‘Project’
  2. Then choose ‘References’
  3. Put a check in the box next to the correct library file. (Cards32.dll)
  4. If the Cards32.dll is not listed hit ‘browse’ to locate it.

Now that you have it referenced by your project you can use it in your code.
In ‘General’ section of your form add the line

    ‘ you can use whatever name you want
    Dim TheDeck as clsCards

    Private Sub Form_Load()
        Set TheDeck = New clsCards

        ‘retrieve the image of the card
        Set Image1(0).Picture =
TheDeck.SetCardImage(0)

‘ set the style of the back of the card
        TheDeck.SetCardStyle (0)
        ‘ retrieve the image of the back of the card

        Set Image2(0).Picture =
TheDeck.SetCardBack
        ‘ retrieve the image of the Top of the card

        Set imgTop(0).Picture = TheDeck.SetCardTop
        ‘ retrieve the image of the Side of the card

        Set imgSide(0).Picture =
TheDeck.SetCardSide
    End Sub

There are 2 other methods used in this dll file which are:

  1. GetCardSuit(x as Integer) as String
  2. GetCardValue(x as Integer) as String

GetCardSuit(x as Integer) as String
    This will return the suit of the card in the form of a string.
   The string that is returned is UPPERCASE
   SPADES, CLUBS, DIAMONDS, HEARTS

GetCardValue(x as Integer) as String
    This will return the value of the card in the form of a string.
    The string that is returned is UPPERCASE.
    ACE, 2 – 10, JACK, QUEEN, KING

 

download zipped project files (and helpfiles) – 120k

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.