|
-
Aug 14th, 2010, 07:18 PM
#1
Thread Starter
New Member
[RESOLVED] DAMA but DAMATH
hi there anyone here can help me to create a board game name DAMATH it looks like dama but there is mathematical operation it originates in the philippines anyone here plsssssssss
dont know how to start the board and create a board 8x8
-
Aug 15th, 2010, 05:37 AM
#2
i do my best to test code works before i post it, but sometimes am unable to do so for some reason, and usually say so if this is the case.
Note code snippets posted are just that and do not include error handling that is required in real world applications, but avoid On Error Resume Next
dim all variables as required as often i have done so elsewhere in my code but only posted the relevant part
come back and mark your original post as resolved if your problem is fixed
pete
-
Aug 16th, 2010, 03:22 AM
#3
Re: DAMA but DAMATH
Welcome to the forums!
It is not easy as it looks, I attempted to make one using WPF and C# but was stalled because laying the rules of the game is somewhat difficult. I hope you progress on it, kaya mo yan!
-
Aug 16th, 2010, 01:39 PM
#4
Re: DAMA but DAMATH
Your best bet is to break it down into steps:
- Design board and peices
- Allow the peices to move; anywhere at first
- Implement rules for moving the peices correctly
- Incorporate players, where each can move thier peices in turn
- *** Dificulty here *** Add AI for a computer opponent
VB6 Library
If I helped you then please help me and rate my post!
If you solved your problem, then please mark the post resolved
-
Sep 8th, 2010, 07:14 PM
#5
Thread Starter
New Member
Re: DAMA but DAMATH
i dont know how to create the interface using VB 6.0 ...
how to create the interface??? anyone can help me?
the 8x8 with 16 piece
i want to start my board game help me what i will gonna use in designing a board game
creating AI is the hardest part here i wish i can do that ^_^
-
Sep 8th, 2010, 08:36 PM
#6
Re: DAMA but DAMATH
Moved from VB6 and Earlier.
-
Sep 9th, 2010, 07:59 AM
#7
Re: DAMA but DAMATH
I can help, but creating the interface is the easiest part for some people, if you do not even know where to start, this may not be a good project for you.
I will help you any way I can, but I can not write it for you.
The interface is mainly programmer preference. The easiest way for you would be to use pictureboxes. You can also use buttons if you would like to see them "click". The most flexable way would be to draw right on the form, sectioning it off into squares.
What version of VB are you using?
Just saw the VB6 in the previous post. You can create a control array of pictureboxes. Create a form with 16 pictureboxes with the same name each with a different index and arrange them in order.
VB6 Library
If I helped you then please help me and rate my post!
If you solved your problem, then please mark the post resolved
-
Sep 10th, 2010, 05:22 AM
#8
Thread Starter
New Member
Re: DAMA but DAMATH
oh i see i know dat thanks a lot i know how to use control array .. no problem with the 8x8 interface but how about the piece??? the circle one? how can i create dat...
sir marmar can use give me the link you are talking about using control array
Last edited by hueberting; Sep 10th, 2010 at 05:27 AM.
-
Sep 10th, 2010, 05:37 AM
#9
Thread Starter
New Member
Re: [RESOLVED] DAMA but DAMATH
i want to start my theses plss help ^_^
-
Sep 10th, 2010, 08:20 AM
#10
Re: [RESOLVED] DAMA but DAMATH
VB6 Library
If I helped you then please help me and rate my post!
If you solved your problem, then please mark the post resolved
-
Sep 10th, 2010, 10:26 PM
#11
Thread Starter
New Member
Re: [RESOLVED] DAMA but DAMATH
is the pieces are pictures too?? like the 8x8 interface but in the 8x8 interface i will use picture box control array right??
but how about the pieces i will use only circle 8 pieces in the red and 8 pieces in the blue how can i make dat???
-
Sep 10th, 2010, 10:32 PM
#12
Re: [RESOLVED] DAMA but DAMATH
Why did you mark your thread as resolved?
-
Sep 11th, 2010, 10:58 AM
#13
Thread Starter
New Member
Re: [RESOLVED] DAMA but DAMATH
im sori my mistake pls help my in making the interface
-
Sep 11th, 2010, 11:12 AM
#14
Thread Starter
New Member
Re: [RESOLVED] DAMA but DAMATH
i am using vb . net but i cannot create a control array ai dont know how to use vb .net because our professor advice to use vb . net
-
Sep 13th, 2010, 08:18 AM
#15
Re: [RESOLVED] DAMA but DAMATH
There are no control arrays in VB.net. You can either:
- Create 64 pictureboxes/controls
- Use 1 large picturebox and determine location by x and y
VB6 Library
If I helped you then please help me and rate my post!
If you solved your problem, then please mark the post resolved
-
Sep 17th, 2010, 03:43 AM
#16
Thread Starter
New Member
Re: [RESOLVED] DAMA but DAMATH
ahhh i see the big picture box sets the interface of the board
how can i determine the x and y
-
Sep 17th, 2010, 09:05 AM
#17
Re: [RESOLVED] DAMA but DAMATH
VB6 Library
If I helped you then please help me and rate my post!
If you solved your problem, then please mark the post resolved
-
Sep 18th, 2010, 10:18 AM
#18
Thread Starter
New Member
Re: [RESOLVED] DAMA but DAMATH
i apologize mr marmar bcoz i dont have any idea with that load procedure but how??
is there have any codings ?? or jsut in the load procedure?
[Edited by MartinLiss]
Last edited by MartinLiss; Sep 18th, 2010 at 10:31 AM.
-
Sep 20th, 2010, 08:10 AM
#19
Re: [RESOLVED] DAMA but DAMATH
I don't understand what you don't understand. Divide the width and height by 8 and that will give you the regions of the picturebox that represent squares. If you have a question, please try to completely explain. Don't use less word, use more words.
VB6 Library
If I helped you then please help me and rate my post!
If you solved your problem, then please mark the post resolved
-
Sep 21st, 2010, 06:53 PM
#20
Thread Starter
New Member
Re: [RESOLVED] DAMA but DAMATH
it goes like this mr. marmar i have 1 big picture box then i have 64picture box to make a 8x8 board
then my piece is also a picture box i dont know how to make move the piece like after clicking the piece then there is a possible move.
theres too many validation
can u give me the codes sir?
-
Sep 22nd, 2010, 07:40 AM
#21
Re: [RESOLVED] DAMA but DAMATH
To move a peice you would just change the Left and Top properties. If you are having trouble with that then this project may be too much for you because that is the easy part.
VB6 Library
If I helped you then please help me and rate my post!
If you solved your problem, then please mark the post resolved
-
Sep 22nd, 2010, 06:37 PM
#22
Thread Starter
New Member
Re: [RESOLVED] DAMA but DAMATH
i will to do dat in ur words ^_^ im sure ur a good programmer
-
Nov 5th, 2010, 10:32 PM
#23
Re: [RESOLVED] DAMA but DAMATH
How is the project going?
-
Jul 16th, 2015, 05:02 AM
#24
Registered User
Re: [RESOLVED] DAMA but DAMATH
..me too.. can anyone will help us please.. its really needed
-
Jul 16th, 2015, 08:56 AM
#25
Re: [RESOLVED] DAMA but DAMATH
If you need help then create a new thread.
VB6 Library
If I helped you then please help me and rate my post!
If you solved your problem, then please mark the post resolved
-
Jul 17th, 2015, 10:59 PM
#26
Registered User
Re: [RESOLVED] DAMA but DAMATH
..i dont know the codes sir..
-
Jul 20th, 2015, 07:18 AM
#27
Re: [RESOLVED] DAMA but DAMATH
 Originally Posted by ticosians
..i dont know the codes sir..
Codes for what? You haven't even asked any questions.
I don't know the codes either since I can't read your mind.
Look at other questions on this forum that are marked resolved. You will see people ask questions and then they get answers or more questions then eventually answers.
VB6 Library
If I helped you then please help me and rate my post!
If you solved your problem, then please mark the post resolved
-
Jul 20th, 2015, 09:08 PM
#28
Registered User
Re: [RESOLVED] DAMA but DAMATH
..codes for the damath sir..
-
Jul 21st, 2015, 07:40 AM
#29
Re: [RESOLVED] DAMA but DAMATH
 Originally Posted by ticosians
..codes for the damath sir..
Whats a damath? There are several problems with your post.
1) You did not provide what you did.
2) You did not explain what does not work.
3) You did not follow my previous post.
So if you can't follow directions, you will never achieve your goal no matter how many codes anyone provides.
I suggest taking this course: Learn VB then maybe you can ask meaningful questions.
What you fail to understand is even if people can read your mind and provide you with the code you need you will not be able to use it without a basic understanding and all you will do is waste everyone's time who tries to help you. Why do you think no one is responding to you? They all learned that you can't help people who refuse to help themselves. Why am I responding? Perhaps I hope you wisen up. Perhaps I am being dumb.
VB6 Library
If I helped you then please help me and rate my post!
If you solved your problem, then please mark the post resolved
Posting Permissions
- You may not post new threads
- You may not post replies
- You may not post attachments
- You may not edit your posts
-
Forum Rules
|
Click Here to Expand Forum to Full Width
|