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 Now that you have it referenced by your project you can use it in your code. ' you can use whatever name you want GetCardSuit(x as Integer) as String GetCardValue(x as Integer) as String
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.
In 'General' section of your form add the line
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:
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
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

Comments
Great - How to make Joker / Wild Card ?
Posted by Legacy on 01/29/2003 12:00amOriginally posted by: Marc
Hi, many thanks
The program is great,
I did not manage to display the O and X.
Is it possible to make a wild card or a Joker?
Thanks again,
ReplyMarc
Great Program
Posted by Legacy on 05/01/2002 12:00amOriginally posted by: shosho
Thank you for this great program that help me to play card into my home .
Reply