|
bj32
Apr 20, 2011 16:51:17 GMT -5
Post by ronspruell on Apr 20, 2011 16:51:17 GMT -5
Alice, I have downloaded your Black Jack program. I want to put the player point total next to the player name on screen and the dealer total next to the dealer except for the card not turned over. I thought just print #1 ppoints would do it but it didn't can you code this so I can add it to your program. Thanks Ron Spruell
|
|
|
bj32
Apr 21, 2011 6:01:21 GMT -5
Post by Alyce Watson on Apr 21, 2011 6:01:21 GMT -5
Alice, I have downloaded your Black Jack program. I want to put the player point total next to the player name on screen and the dealer total next to the dealer except for the card not turned over. I thought just print #1 ppoints would do it but it didn't can you code this so I can add it to your program. Thanks Ron Spruell Sorry, but I do not have the time to modify the program. If you are simply trying to "print" to the screen, it won't work. You need to use graphics commands, such as the ones here: [print.bet] gosub [erase] print #1, "color black" print #1, "place 5 200;font arial 0 25;\Current Bet: $";realbet;" " print #1, "place 450 200;\Player has: \$";purse;" " return
You need to use "Place" to locate the text. Be sure the font face and size and the color are correct for your needs.
|
|
|
bj32
May 3, 2011 16:41:34 GMT -5
Post by ronspruell on May 3, 2011 16:41:34 GMT -5
Alyce, thanks for the help you could give me. I got the program to print the player total to the screen, which is what I wanted. I also wanted to know if you could give me the name and place to buy a book on DLL's what they do, I basicially know what they are, how to use them, in liberty basic, that kind of information. Thanks Ron Spruell
|
|
|
bj32
May 3, 2011 20:56:39 GMT -5
Post by Alyce Watson on May 3, 2011 20:56:39 GMT -5
Alyce, thanks for the help you could give me. I got the program to print the player total to the screen, which is what I wanted. I also wanted to know if you could give me the name and place to buy a book on DLL's what they do, I basicially know what they are, how to use them, in liberty basic, that kind of information. Thanks Ron Spruell I wrote a book on using API calls with Liberty BASIC. The table of contents is on this page. alycesrestaurant.com/apilb/index.htmFor general API programming, search Amazon for Windows API programming.
|
|