I would like to make a poker program that can be played over the internet

I would like to create a java poker program that can be plyed over the internet. I would post the code on a website and everyone that goes should be able to play. Someone told me to use a socket but i dont no how. Also i dont know how to make a program that many people can use at once. PLEASE HELP ME!!!!!!!!!!!!!!!!!!!!!!!!! So i want to make a holdem poker program in black and white that like 6 people can play by going to a web site. Thanks

I would like to create a java poker program that can
be plyed over the internet. I would post the code on
a website and everyone that goes should be able to
play. Someone told me to use a socket but i dont no
how. Also i dont know how to make a program that
many people can use at once. PLEASE HELP
ME!!!!!!!!!!!!!!!!!!!!!!!!! So i want to make a
holdem poker program in black and white that like 6
people can play by going to a web site. ThanksIf you want to use a socket, you're on the wrong board. What does your webhoster support? J2EE? Root access so you can install your own server?

Similar Messages

  • How do I resize the window of pages in the new version? It takes up most of my desktop. I would like to make it tall and narrow, which was possible in the old pages, but I cannot seem to do it in the new version.

    How do I resize the window of pages in the new version? It takes up most of my desktop. I would like to make it tall and narrow, which was possible in the old pages, but I cannot seem to do it in the new version.

    I agree it is a very bad and wasteful design especially for users on small laptop screens.
    You can drag it to whatever shape you want from the bottom left corner.
    Click on the paintbrush to make the Format side panel disappear. However you will need to use that side panel for most formatting.
    Peter

  • When I open a new tab, there are 9 tiles that I am assuming should have 9 sites you've either been to or would like to make as favorites. I can't figure out how

    when I open a new tab, there are 9 tiles that I am assuming should have 9 sites you've either been to or would like to make as favorites. I can't figure out how to drag a favorite into one of the tiles.

    I've done this before. When I drag a bookmark to a new tab , all it does is opens up that book mark on that page , it doesn't place and save
    it in the tile

  • Does Apple make a data plate that can be affixed to the back of the MBP?

    I recently bought a MBP for my college bound daughter.  I know practically, if not all, college kids have laptops these days, not all have MB's.  For ownership purposes, does anyone know if Apple makes a ownership data plate that can be adhered to the back of the MB without interfering with it?  I would like to get something so my daughter can tell her's from others that may be used near her. I really don't want to keep replacing the MBP, like the pc-laptops that came before it.  Any other suggestions would be appreciated.

    eww,
    My daughter spent yesterday moving onto her campus and into her dorm.  I was surprised at the number of MBP's in her dorm, on her floor, in her room.  They seem to out number pc's, but that's just me counting.  At the campus bookstore, MBP's and iPad's seemed to be out selling Windows-based machines 3:1.  Hooray for Apple and the MBP's.
    I bought and installed a security cable at her desk, much like other parents were doing.  It is going to take a while for the freshman class to get used to keeping tabs on their stuff in these new surroundings, I'm sure!  Hope the upper classes help them with their new away from home-life,mom & dad, and their siblings.
    Thanks for the idea of distinctive stickers, she's an Art Major, so your idea is taking hold and she's already designing a few!

  • Wanting to make a 2 player game to play over the internet

    I'm wondering what it would take to create a simple game that could be played by two people over the internet? If you can just explain the process. Would I need to have my own website? Could you point to a link to learn more about the process?
    I'm wanting to make a simple dice game that me and my aunt used to play. Should be a pretty simple game without a lot of graphics. I move around so much that it'd be nice if I could make this game playable anywhere for both of us. Thanks.
    Edited by: davidpmontes on Feb 1, 2009 1:58 AM

    davidpmontes wrote:
    I'm wondering what it would take to create a simple game that could be played by two people over the internet? If you can just explain the process. Would I need to have my own website? Could you point to a link to learn more about the process?
    I'm wanting to make a simple dice game that me and my aunt used to play. Should be a pretty simple game without a lot of graphics. I move around so much that it'd be nice if I could make this game playable anywhere for both of us. Thanks.These are the main things you need to learn.
    Graphics: [http://java.sun.com/docs/books/tutorial/2d/basic2d/index.html]
    Networking: [http://java.sun.com/docs/books/tutorial/networking/index.html]
    And, of course there's Google with some suggestions: [http://www.google.com/search?q=java+games+tutorial]
    Note that although the game may be simple, creating it will probably not be simple. Especially for those not familiar with Java.

  • I would like to make a form where I can type a word and it would replace it in the form

    Hello,
    I am looking to create a coverpage for a  150 page project document. I have the document written already, but would like the ability to make a cover page where I or someone else could fill in the projects location, company name and have those specifics, replace in the generic that I have in the document. I guess the closest discriptor I have would be the find-replace function in Word based on what is typed in the cover page field.
    I hope I am clear on what I am after as I was unable to find anything based on what I was asking. If anyone knows how or what product to use that would be great.
    kindest regards,
    colin

    You can use global data binding. See attached.
    Steve

  • Every time I click on my firefox icon I am asked if I would like to make changes to my hardware as if it is the initial download .

    I have the Firefox icon on my tiles, task bar and start menu. But whenever I click any of them I get the Are you sure you want to make changes to your hardware message box everytime. When I click yes Firefox comes up but why does that require hardware changes?

    Hello Sondralyn, make sure that Firefox isn't set to run as Administrator.
    right-click the Firefox desktop shortcut, choose "Properties" and be sure
    that all items are '''not''' selected in "Compatibility" tab > "Compatibility mode" section > Run this program in compatibility mode [ ].
    thank you

  • How to make a java program, that can be used by c++ application

    I'm developing a Java web application (WEBapp), but I have also a c++ program.
    C++ program must use WEBapp method to communicate on the web.
    How to make a Java public function that accept value, elaborate, then return the resul to c++ application?

    jschell wrote:
    You have C code.
    You have Java code.
    The two must communicate.I have a c++ program, and a Java program.
    C++ program wants to communicate on the web (send text), and I'm trying to add this functionality to it creating a Java program.
    NOW THE PROBLEM? How c++ program can use java-program (in local) to send data on the web?
    You can just JNI to communicate either from java to C++ or from C++ to java. That is direct communication in that there is a single process involved. Thus you will no longer have a java application and a C++ application but rather a single application.I don't know JNI, i found http://java.sun.com/docs/books/jni/ and I think is too difficult to implement?
    You can use files or sockets to communicate. Using sockets allows for any number of additional protocols including the previously mentioned web services. Those methodologies would allow more than one application to exist.I developed yesterday a java-side-interface using socket (in local host 127.0.0.1). So the c++ program must write or read to/from the socket to comunicate to java (then the java program send data on the web).
    Finally it might be the case that you have a C++ application which you cannot modify. In that case then you MUST use whatever input/output mechanism that it supports. There is no choice. And until you have fully determined what those mechanisms are it is pointless to discuss a solution.I can modify the application, but I don't have developed it. The c++ application use a third-part dll (taken from SKYPE) to comunicate on the web: I have to remove the dipendence from this dll, and add the java program: java program must substitute the dll. It must be non-invasive to the c++ program. DLL calls can be "send(data)" or "receive(data)" or similar.
    For this do you think that JNI is a must, or I can use soket on local host?

  • I am using IPhoto and would like to make a dvd of my slideshow.  However, IDVD does not appear on the screen

    I am using IPhoto to make a slideshow.  I would like to burn it to a DVD to be played on a tv.  How can I do this?

    Export the slideshow from iPhoto to the desktop. This will make a QuickTime movie of it.
    Add that to a DVD project you have created in any DVD authoring program  -such as iDVD.
    Regards
    TD

  • How can i create my BC featured product list in to a slide show for multiple products in one row. i have products aligned in a row i just would like to make it a slide show of the multiple (20) products.

    i have products aligned in a row already using custom css.i just would like to make it a slide show of the multiple (20) products in the one row.
    i am using the featured product module from the development section of business catalyst. i would love to display as many new products as possible in one row of products. so i can just click a arrow left button and scroll through the products.
    holy-shippers.businesscatalyst.com is the site i am mentioning.

    Hello,
    Aside from any custom implementations that may be suggested by any other members, you could also consider using some hero-type slider like those found on our new responsive templates, and have each web-app item contain a product.
    Kind Regards,
    Alex Pavelescu

  • HT4009 I would like to make an in app purchase using my $20.00 credit that I have on I tunes. I am using my  i phone5. It does not give me the choice of using the credit that I have, only a credit card. How can I use the credit for the purchase??

    I would like to make an in app purchase using the $20.00 credit that I have on itunes. I am using my i phone5. It does not give me the option of using the credit that I already have, only of using a credit card. How can I use the credt that I already have instead of a credit card?

    Is Settings > General > Restrictions > In-App Purchases: ON (green)?
    Some In-App Purchases works only with credit card.

  • I already have an Apple ID account with 4 devices connected to it but I would like to make a new one with a desperate password for my school iPad. How do I do that?

    I already have an Apple ID account with 4 devices connected to it but I would like to make a new one with a desperate password for my school iPad. How do I do that?

    You can create a new Apple ID and password for the iPad but none of the content downloaded using the Apple ID associated with the four devices will be available on the iPad.
    Create new >   Apple - My Apple ID
    It's not possible to use two passwords with one Apple ID.

  • My iPhoto Library is on an EHD, I would like to make a backup on a second EHD

    My iPhoto Library is stored on an Seagate 1TB external hard drive (which is also my Time Machine or automatic backup), not on my MacBook Air. That means that I always carry the external hard drive wherever I go to access my photos (and to keep backing up my documents). I travel quite a bit so just in case the Seagate stops working, I would like to make a backup of my iPhoto library on a second EHD to leave at home.
    I have another Seagate 500GB which I used in the past on a wifi for my iPad, which also contains some photos straight from my camera (that means they did not get the 'iPhoto treatment' as I don't want to clog up the iPad through Airdrop).
    There is still plenty of room on this Seagate 500GB (300GB free) for an extra iPhoto Library backup. It should be simple enough but so far I have been unable to understand how. Clear steps to how to do it would be much appreciated.
    Many thanks!
    pilot03

    To check how the drive is formatted, connect it and run Disk Utility (in your Utiilty folder). Click on the drive's icon. (You'll see to icons, the top one is the drive itself and will have a name including the manufacturere's name and a second one is indented. Click on the top on. Now look in the bottom right corner of the DU window. WHat you want to see is: Partition Map Scheme : GUID Partition Table
    If you don't the drive should be repartitioned. Click on the partition tab, Click on Current & select 1 partiton, click on options and select GUID. That will erase the drive. Now Click on the indented icon, click on the erase tab and make sure you see MacOS Extended (Journaled) next to the Format label. If not, click on the popup menu and select it. Then erase. Now the disk is ready.
    If it is formatted for Mac already, after mounting the drive select its icon and select Get Info from the File menu. Look at the very bottom of the long dialog box. You should see a list of permissions, your user name should be listed and your permissions should be Read & Write. Or there might be a checkmark next to a label called Ignore Ownership. That should be checkmarked.

  • I would like to make one static copy of Firefox, so I can restore it if I have a hard drive crash, or if I want to upgrade my internal disk, or if I want to have a duplicate on another replacement computer.

    ''dupe of https://support.mozilla.org/en-US/questions/918473''
    I would like to make one static copy of Firefox, so I can restore it if I have a hard drive crash, or if I want to upgrade my internal disk, or if I want to have a duplicate on another replacement computer.

    Hi tchmielewski,
    You should look into [https://support.mozilla.org/en-US/kb/what-firefox-sync Firefox Sync]. I think it will do everything that you are asking for. This will allow you to have all of your Firefox preferences and settings shared across multiple computers.
    You could also create a backup on a USB drive in case of catastrophic failture. I would suggest that you back up your personal information and bookmarks using the article [[Backing up your information]].
    Hopefully this helps!

  • I've got a Iphone 3 G with IOS 4.2.1 .I would like to make an Upgrade to IOS 4.3. or better. How can I o it?

    I've got a Iphone 3 G with IOS 4.2.1 .I would like to make an Upgrade to IOS 4.3. or better. How can I do it?

    The 3G was discontinued almost 3 years ago. 4.2.1 is the end of the line for it.

Maybe you are looking for

  • FF keeps crashing- can someone decipher this errror report?

    My FF has been crashing a ton latley. Trying to pinpoint why. I uninstalled & reinstalled flash & java. The crashes seem to happen mostly when a page is loaded that has a lot of content displayed all at once (photos, embedded videos, etc.). Firefox h

  • HT1751 when I click and drag itunes into a external harddrive all I get is a icon in the harddrive not the files

    when I click and drag itunes to an external harddrive all I get is a shortcut an icon to itunes not the files the music to itunes I am running  windows xp home edition

  • Forms 4.5 Migration to Oracle Forms 10g

    Hi All, I want to know abt migration steps i.e. i 'm doing migration of Oracle Forms 4.5 to Oracle Forms 10g. Then existing forms is on Windows NT based environment and the database is Oracle 8. What is the better way to approach this issue? Whether,

  • A bit of a problem since the 4.0 update...

    I updated my iPhone with the new 4.0 version of the software yesterday and since then, I can't play any music in my car. I have a USB port on my car radio and I've always used it to play music from my phone in my car, but since I got the new software

  • Creating tree from HTTPService

    Hi, I'm new under flex builder and I have a simple (?) problem : I would like to generate a tree from a XML file generate by PHP. I can display items (source) in tree but not subitems (playlist)... Here my XML file generated by PHP : <?xml version="1