Use j2me to develop a chinese chess game

Hi, i am new to J2ME but i have some experience on J2SE.
Until now i still have no idea how to develop a j2me system. i already install j2me tool kit but dunno how to use and also installed Forte. The forte is just like a java builder and i now is working on it.
Can anyone help me with this programming? I have a project to do and the project title is Developing a Chinese Chess Game in PDA using J2ME.
Pls help me and give me some references or some sample coding of j2me.

Alot of stuff online. Here's some to get you started:
wireless toolkit tutorial -
http://developers.sun.com/techtopics/mobility/midp/articles/wtoolkit/
sample codes and articles-
http://developers.sun.com/techtopics/mobility/allsamples/
http://developers.sun.com/techtopics/mobility/allarticles/
http://developers.sun.com/techtopics/mobility/allttips/
Hope this helps. Good Luck.

Similar Messages

  • How to create chess game using Adobe flash CS3

    I want to develop a web application that when a user is login the game will automatically search for oppents onlinethat are accessing the same website. I want to design a chess game that does not contain any AI programming. What I want is that a simple chess setup that online user can only play.

    use google to search for tutorials.  that's a very complex undetaking so unless you feel you have advanced programming skills, you would be better served starting with a simpler game like tic-tac-toe.

  • Yahoo chess games I get a sudden black screen I use winxp sp3 any suggestion ?

    I get sudden black screen at yahoo chess games.
    I appreciate your suggestions thank you

    Quote
    I don't need Your assistance now
    Quote
    First, You did not answer to my problem.
    No one here is in your debt...
    We will answer you if and when we can.
    Quote
    (as You can see from my post which You banned-erased from forum).
    Then, today You banned my new post.
    Your other topic was removed, because was full of bashing MSI, insulting forum and moderators out of no where..
    + We also don't allow people to open new topics for the same subject.
    >>Please read and comply with the Forum Rules.<<
    Quote
    Now You want to cover up your insolence and want to help.
    To cover my insolence? We have nothing to cover..
    You are the person who shows impressive insolence...
    Quote
    All of You are really shameless persons.
    You earned your BAN right away!
    Quote
    Please, erase this thread to.
    No need. Good luck with your issue.

  • How to use a select statement with chinese characters?

    I am currently developing a java servlet<using tomcat 4.x> which allows me to use select statement to retrieve results from the Microsoft SQL Server 2000 database. I am using a simple form to get the parameter for querying. The main problem i'm facing is that there are chinese information in the SQL database, but i can't retrieve it through the sql statement with the chinese characters input<thru the form with the help of NJ STAR>in the WHERE condition. When i execute the statement, it returns me no results even though the rows are present in the database.
    Does anyone have the solution to using chinese words in the WHERE clause of the select statement to retrieve results with columns which contains chinese characters? Please help me. Thanks everyone. :)
    PS: when i cut and paste those characters in the sql database and paste onto java.. it is ??? in questionmarks.. but when i paste them into excel 2000.. its shown as chinese chars again..
    please heelppp~~

    Greetings,
    PS: when i cut and paste those characters in thesql
    database and paste onto java.. it is ??? in
    questionmarks.. but when i paste them into excelThis is why the SELECT is not returning any results.
    You need to set the character encoding set on your
    statement and parameters for the characters to be
    properly translated. Refer to the charsetName
    parameter in the String class constructor in your API
    docs and also to
    $JDK_DOCS/guide/intl/encoding.doc.html in your JDK
    documentation.
    2000.. its shown as chinese chars again..Because Office programs are performing the same kind
    of character translation with the appropriate MS APIs.
    please heelppp~~Regards,
    Tony "Vee Schade" Cookis it possible for you to show me some coding examples? i don't really understand what is to be done in order to set the char set and what does it really do.. tried reading up but still dun understand.. :(
    pardon my shallow knowledge of java..
    ok..
    The thing is when i used an insert statement with chinese characters of GBK format hardcoded into the java servlet and then i use the insert statement to insert the chars into the database, it cannot be seen as a chinese word when i off the NJStar. and then it can be searched out with my current form of servlet.. below is my coding of the servlet..
    note: i've set my html file to charset = GBK
    //prototype of Search engine...
    //workable for GBK input and output...
    import java.io.*;
    import java.io.OutputStream;
    import java.io.IOException;
    import javax.servlet.http.*;
    import javax.servlet.ServletException;
    import java.util.*;
    import java.sql.*;
    import java.nio.charset.Charset;
    public class SearchBeta extends HttpServlet {
         private Vector musicDetails = new Vector();
         private String query = "";
         public void service (HttpServletRequest req, HttpServletResponse res) throws IOException, ServletException, UnsupportedEncodingException {
              query = req.getParameter ("T1");
              System.out.println("before:"+query);
              String type = req.getParameter ("D1");//type
              query = req.getParameter ("T1");
              //query = "������";
              System.out.println("after:"+query);
              getResults(type,query);
              System.out.println("locale = :"+req.getLocale());
              res.setContentType ("text/html;charset=GBK");
              PrintWriter out = res.getWriter();
              out.println("<html>");
              out.println("<head>");
              out.println("<body bgcolor = \"black\">");
              out.println("<font face = \"comic sans ms\" color=\"Cornsilk\">");
              if (query.length()==0)
                   out.println ("Please key in your search query.");
              else if (musicDetails.size()==0)
                   out.println ("Sorry, no results matching your search can be found.");
              else {
                   out.println("<center>");
                   out.println("<table cellspacing = \"50\">");
                   int i = 0;
                   //Display the details of the music
                   while (i<musicDetails.size()) {
                        Results details = (Results)musicDetails.get(i);
                        String dbArtist = "";
                        String dbAlbum = "";
                        String dbTitle = "";
                        String dbCompany = "";
                        dbAlbum = details.getAlbum();
                        dbTitle = details.getTitle();
                        dbCompany = details.getCompany();
                        dbArtist = details.getArtist();
                        try{
                             dbAlbum = new String(dbAlbum.getBytes("ISO-8859-1"),"GBK");
                             dbTitle = new String(dbTitle.getBytes("ISO-8859-1"),"GBK");
                             dbCompany = new String(dbCompany.getBytes("ISO-8859-1"),"GBK");
                             dbArtist = new String(dbArtist.getBytes("ISO-8859-1"),"GBK");//correct translation.
                        catch(UnsupportedEncodingException e){
                             System.out.print(e);
                             e.printStackTrace();
                        String dbImage_loc = details.getImage();
                        out.println("<tr>");
                             out.println("<td><table>");
                                  out.println("<img src=C:\\Program Files\\Apache Group\\Tomcat 4.1\\webapps\\examples\\ThumbNails\\"+dbImage_loc+">");
                             out.println("<tr>");
                                  out.println("<th><font color=\"violet\"> Artist: </font></th>");
                                  out.println("<td><font color=\"Cornsilk\">"+dbArtist+"</font></td>");
                             out.println("</tr>");
                             out.println("<tr>");
                                  out.println("<th><font color=\"violet\"> Title: </font></th>");
                                  out.println("<td><font color=\"Cornsilk\">"+dbTitle+"</font></td>");
                             out.println("</tr>");
                             out.println("<tr>");
                                  out.println("<th><font color=\"violet\"> Company: </font></th>");
                                  out.println("<td><font color=\"Cornsilk\">"+dbCompany+"</font></td>");
                             out.println("</tr>");
                             System.out.println("album: "+ dbAlbum);
                             out.println("<tr>");
                                  out.println("<th><font color=\"violet\"> Album: </font></th>");
                                  out.println("<td><font color=\"Cornsilk\">"+dbAlbum+"</font></td>");
                             out.println("</tr>");
                             System.out.println("company: "+ dbCompany);
                             out.println("</table></td>");
                        out.println("</tr>");
                        i++;
                   out.println("</table>");
                   out.println("</center>");
              out.println("</font>");
              out.println("</body>");
              out.println("</head>");
              out.println("</html>");
              out.close();
              //to remove all the elements from the Vector
              musicDetails.removeAllElements();
         //get Searched Music Details and store in Results object which is stored in musicDetails vector
         public void getResults (String type, String searchQuery) {
              try {
                   Class.forName ("com.microsoft.jdbc.sqlserver.SQLServerDriver");
                   Connection con = DriverManager.getConnection("jdbc:microsoft:sqlserver://localhost:1433;DatabaseName=music","sa","kokkeng");
                   Statement stmt = con.createStatement();
                   String query = "SELECT * FROM MusicDetails WHERE "+type+" = '"+searchQuery+"'";
                   ResultSet rs = stmt.executeQuery(query);
                   while (rs.next()) {
                        String artist = rs.getString("Artist");
                        String title = rs.getString("Song");
                        String company = rs.getString("Company");
                        String album = rs.getString("Album");
                        String image_loc = rs.getString("Image");
                        Results details = new Results (artist,title,company,album,image_loc);
                        musicDetails.add(details);
                   stmt.close();
                   con.close();
              catch (Exception e) {
                   System.out.println(e.getMessage());
                   e.printStackTrace();
    with the above servlet i created, i can search out the data in the database which i've inserted through the insert statement. I still can't search for things i've keyed into the database directly using NJStar..
    thank you so much for helping.. really hope any one else who knows the answer to this will reply too... thank you all so much...
    -KK

  • Need help with developing a small pool game

    Hi,
    I want to develop a small pool game ....Im using the netbeans ide and ....what I have so far is 2 classes ......Pool and GUI
    Basically the main method is in the Pool class.......withing main I created a new GUI object .....which in turn creates a frame.
    I now want to custom code a rectangle and make it a container for the pool table and also colour it......the thing is can I do animations in a frame and by using independant classes rather than using an applet?
    I know this may be innefficient but I want to create a standalone pool game that uses custom objects and classes for the various tasks. I was just wandering if it was possible to do drawings the way i am saying without using an applet? Its just all the tutorials I see .....well all the code seems messy and lumped together in the one place ....and I basically want things such as a independant ball class and perhaps a painter custom interface that colours rectangles.
    Any advice would be appreciated
    David

    Thanks for the advice .....The thing is I understand pretty well what is needed .....and I have programmed small applications that take bookings for a hotel and and a library ....Im am familiar with references, arraylists and the alike and im also reading about the java collections interface ......I have also coded a simplistic program in the past that basically a ball was bouncing of the sides of a container and made a sound when it hit the edge(this used threads i believe). However it has been a while ......and although I am happy with some of the concepts of java........we did not do any java graphics programming at college. In all fairness though I learned the importance of using classes properly and in a way thats why im finding it so difficult to code even basic graphic movement that Im happy with as the tutorials Ive seen have everything lumped in one place(as mentioned) and trying to make them more modular can be difficult. As far as I know from coding some basic applets they are generated on the client side to enable everyone with different platforms to view stuff over the web. I dont want applets as I dont at this time want to distribute any of my meager programs over the web :-)). It is good to know that I can use threads and such independent of the applet class........I know my question may be naive but 100% of the tutorials I saw invoked the applet class in some way and emplied in a way that it was essential.......I thought there would be a way to do it without using applets but was not 100% sure which is why I asked.
    I will just need to try and find one guide now that actually shows me how to do what im asking:-)
    Cheers
    David
    I also have 3 java books.......each of which concentrate on graphics by use of applets ....im going to look them out again as they might contain something useful .....to be honest though they were a bit of a waste of money lol(well 2 of them were)

  • Programming a Chess-game - Design Tips

    Hello,
    I'm definatly not new to programming, but I'm a beginner at Java. Now I'm trying to program a little chess-game, which should teach me some OOP-techniques and to get some experience with Java.
    Well, I have some ideas for the game in mind and already realized a few things, but I want to do it the right way and get some advice from you.
    - The chess board:
    Currently, I have a class handling the drawing of the board, getting the screen-coordinates, etc.. The class "GameBoard" extends a JPanel and I overwrite the "paintComponent"-method to draw the board.
    I have a second class "Field" that stores informations of one field: What color the field is, which piece is placed on this field and which player "owns" it. Also, each one of these "Field" is getting passed its coordinates on the screen from "GameBoard". This helps me later, when I want to decide, if the field is clicked or not.
    Now, is this a good way to implement the board and the fields? I have another option, which would be, that I throw out the class "GameBoard" and instead have a "FieldHandler" class. Now, the class "Field" would extend JPanel, overwrite "paintComponent" and draw a square on the screen. "FieldHandler" gives each "Field" the information, if it should be black or white. "FieldHandler" would also calculate the x- and y-coordinates for each field.
    Is this method better? I don't really know performance wise, because I have to add 64 JPanels to the contentPane, which means, that all 64 Panels need to be drawn seperately. I don't know if this is a good way, but maybe it doesn't really matter. One advantage would be, that I could change the color of a field easily, for example when I click or hover it, which is not that nercassary, but still nice.
    Maybe there is an even better way?
    - The Pieces:
    Well, I don't really have a clue how to draw the pieces on the board. I could also make them extend JPanel and then draw the image onto some coordinates. But that doesn't seem too right. What about BufferedImage? I don't really know how to use it, neither when it is appropriate to use. I think I get more advantage of this, when I have animations, but that's definatly not my intention.
    The only thing I know is, that I can show an image on the screen with:
    ImageIcon test = new ImageIcon("Test.gif");
            public void paintComponents(Graphics g) {
                test.paintIcon(this, g, 100, 100);
            }But is this right or even way to do it? I'm somehow unsure, if an "ImageIcon" is right for a chess-piece. Any other ways of doing this?
    The "Piece"-class itself is just an interface that the classes "Knight", "King", etc. extend. It draws the piece onto the screen, set the owning player, sets the coordinates of a piece (with the help of the "Field"-class; The Field doesn't know it's exact coordinates, just "A7", "E3", etc.) and some other functions. All pieces are handled by a "PieceHandler", which could provide functions for counting all pieces on the field, initialising every piece and maybe some more things.
    Anybody got some advice on this approach?
    This should be enough for now. I would be very thankful for any kind help, I really want my first project to be as good as possible, since I want to learn OOP and Java better.

    - The chess board:
    Currently, I have a class handling the drawing of the
    board, getting the screen-coordinates, etc.. The
    class "GameBoard" extends a JPanel and I overwrite
    the "paintComponent"-method to draw the board.
    I have a second class "Field" that stores
    informations of one field: What color the field is,
    which piece is placed on this field and which player
    "owns" it. Also, each one of these "Field" is getting
    passed its coordinates on the screen from
    "GameBoard". This helps me later, when I want to
    decide, if the field is clicked or not.
    Now, is this a good way to implement the board and
    the fields? I have another option, which would be,
    that I throw out the class "GameBoard" and instead
    have a "FieldHandler" class. Now, the class "Field"
    would extend JPanel, overwrite "paintComponent" and
    draw a square on the screen. "FieldHandler" gives
    each "Field" the information, if it should be black
    or white. "FieldHandler" would also calculate the x-
    and y-coordinates for each field.
    Is this method better? I don't really knowWhat I'd do: just paint a chessboard pattern from a static image. Can be loaded from a file, or can be generated once dynamically. Don't care at all about fields.
    Have some pixel-to-field coordinate mapping somewhere. Should be nothing but a simple multiplication.
    Have a List of chess pieces. Have those know what they look like (maybe using a delegate object which contains an image), have those know where they are and where they can go. When painting, iterate over the list, transform the coordinates to pixels, get the UI delegate and paint its image. Why bother calculating 64 fields if all you have are 32 pieces or less? And whether a field is black or white doesn't matter to the game.
    When the user clicks onto the board, get the coordinates of the click and transform them to the field coordinates, that you can then look up in the list of figures. If you find one, you can still paint a marker onto the board and underneath the piece image.
    This is what I'd do. Other approaches might make sense as well..

  • LOCATION FINDING without using GPS using J2ME (in gsm network)

    I was wondering if it is possible for me to obtain the ID (name) of the tower my phone is communicating with using J2ME (in a GSM network). I`m developing for T610. The cell info display shows the name of the tower. Is there any way i can get that text into my java program? I`ve seen Nokia apps do it, but they are C++ apps.. Is the same thing possible with J2ME?

    Hi,
    Yes it is possible. Try to use receive CBS messages it will give you the location name. And moreover there are some handset model specific that you have to use. I was successful in doing the same for motorola devices.
    System.getProperty("IMSI")
    System.getProperty("CellID")
    System.getProperty("LocAreaCode")
    This will give you imsi, cellid and location area code and then try to receive cbs messages that will give you the location.
    It has been successfully implemented on motorola device
    Bye
    Sunil

  • Is airdrop is avaiable on iphone4g n how to use airplay ... n something playing game like sufers subways its get stuck middle .. y is it so .. help me out..

    is airdrop is avaiable on iphone4g n how to use airplay ... n something playing game like sufers subways its get stuck middle .. y is it so .. help me out..
    n which is best app to saver battery life... n how to make ma phone run smootly..
    pls help me >>>
    <Email Edited by Host>

    Hi ChrisBell,
    my Pixi shows me the missed calls in a list of its own? I don't have many, so maybe I'm missing something. But I agree with your half-ranting to some degree. As a long-time Palm-user (my last phone was a Treo 680, terrible form factor, good UI), I am really disappointed with the standard software on this phone. Memos and Tasks, which AFAIK were there and useful even on the first Newton's, have regressed beyond the point of usefulness now (solution: Toodledo and Done!, at least for now).
    But ChrisBell: if you feel up for it, you could start tinkering. Many people love these phones so much they have started developing patches to solve the obvious problems skimmed over by developers. Try looking up "webosquickinstall" and "preware", and you will find over 300 patches and a lot of free software to help you out. I am not a computer wizard myself, but I am not scared of them either, and I have been able to make good use of all these extras made available by the community.
    just a thought, might help you out on a few of your half-rants

  • How to create custom signal/battery bar using j2me?

    first of all im trying to create the symbian UI from scratch .... but j2me comes with a fixed signal bar ... can i change it ???
    second is it possible 2 create the UI using j2me ??
    thank u

    Hi,
    the top bar management is always under the operating system control. You can use full screen mode to cover full screen, however some diveces can still show the bar. Another option is to use Game Canvas instead of Canvas which might on some devices utilize even "more full" screen mode.
    Some manufacturers add special .jad properties to utilize really full screen.
    Summary: this is really manufacturer/device dependent.
    Of course you can build your own UI completely - simply using the Canvas and paint it on your own. There are several UIs available for Java ME. However the most comprehensive and free is probably the LWUIT supported directly by Oracle. See: [http://lwuit.java.net/|http://lwuit.java.net/] and/or [http://www.oracle.com/technetwork/java/javame/javamobile/download/lwuit/index.html|http://www.oracle.com/technetwork/java/javame/javamobile/download/lwuit/index.html]
    Rada

  • Chess game

    I need guidance on how to model a chess game that involves two human players. Since this a Java oriented game and I am a new user as well as a learner, I need to be guided on the number of classes that can be incorporated in this game as well as the substantial roles of each class. I have tried examining some of the classes to involve the Board class, Piece class, legal move checker which extends board as well as the GUI on which the entire game shall be run. I need guidance on how I can join all the classes as well as some hints on attributes and operations that shall be involved in these classes.
    I have been thinking of sub classifying the piece class into sliding pieces and the non sliding pieces as well as representing pieces as images on the board. In my game, Enpassant rule is not operational, the pawn piece does not become updated at the end of the board and the castling rule does not apply too.
    I need to have my players on the same computer not on different computers or the Internet.

    As a new user/learner, you should try something a little less ambitious like checkers, and if thats too hard, Tic Tac Toe. It may sound like im joking about your abilitys, but creating Tic Tac Toe using classes for X's O's and the Board, will give you the basic understanding of how classes interact with each other, and how to design a basic object oriented game.
    It's only a small step from Tic Tac Toe, to Chess IMHO since chess only adds more game logic rules, but the class scenario is going to function pretty much the same, only more methods and rules to follow. Once you reach the point of creating the chess game, it's only a matter of creating a basic piece thats extended by all the various piece types who define their own movement rules.
    -Adam

  • Chess game programming

    I have to create a text-based chess game between uppercase and lowercase letters against each other using a two-dimensional arrays.
    1. I have to create the board and initialize the position of the letters.
    2. I have to give the output of the initial state of the game, showing the board and the first positions of the letters.
    3. I have to create the moves.(Meaning that i have to create an input to perform the entering moves)
    And i have to make sure that with every bad input the program will to repeat the input....
    If anybody of you have programmed a chess game like this before, i would appreciate any kind of help....
    Edited by: 812599 on Nov 17, 2010 8:26 AM

    mario.beka wrote:
    meacod wrote:
    812599 wrote:
    I have to create a text-based chess game between uppercase and lowercase letters against each other using a two-dimensional arrays.
    1. I have to create the board and initialize the position of the checkers.Just to give you a nudge - are you familiar with chess? What's the size of the board? How might that affect the structure you store your 'pieces' in? How will you represent pawns as opposed to kings, queens, rooks, and so forth?
    Scratch out some ideas on paper,
    Turn that into some pseudocode,
    Write some Java,
    Then come back to us if you have a specific question.Yeah that's the problem, cuz i have never played chess in my life....I'm just reading around now for the rules and movements of this game...in that case, don't bother.
    A decent chess program requires in-depth knowledge of the game, knowledge only gained through years of playing it at competition level.
    I've a small library of books about chess, have played it for going on 30 years, plus 15 years experience using Java professionally, and I'd not consider writing a chess playing program in Java as something I'd undertake on my own (and yes, I've studied the possibility of writing just that in a variety of languages I know about over the years, and even made a start a few times only to abandon it when the project became too big for me to handle).
    If you're only looking to make a digital chessboard, that's a much simpler task and one that you can certainly attempt even without knowing the game (except maybe the starting positions and accepted icons for the pieces and the size and nomenclature for the board and its fields).
    Start with that, then add rules validation as players move pieces. Start with large rules (like enforcing that pieces can only move legally, in itself a somewhat daunting task as there are several pitfalls and special rules depending on piece positions).
    At this stage there's still no AI, no computer player option. That's where the real work sits, and it's very much a non-trivial task.

  • Chess Game On Oracle Form 6i

    Hi Friends
    I have created chess game on Oracle Developer Form 2000 6i & my problem is that i have created some function for moving of Bishops, Kings, Queen, Knight etc. on Push Button and my Function of Knight is ..
    FUNCTION check_move_knight(p_from in varchar2, p_to in varchar2) RETURN BOOLEAN IS
    BEGIN
    If
              abs(substr(p_from, 2,1) - substr(p_to, 2,1)) = 2     and
              abs(substr(p_from, 4,1) - substr(p_to, 4,1)) = 1
              or
                        abs(substr(p_from, 2,1) - substr(p_to, 2,1)) = 1     and
              abs(substr(p_from, 4,1) - substr(p_to, 4,1)) = 2
    then
              return true;
    else
              return false;
         END IF;
    END;
    I want to write Function of King and Queen please tell me which type of function i can write on form ... :)
    Thanks & Regards
    Adeel

    You are playing with a 8*8 matrix.
    I suppose that you have an in memory PL/SQL table to simulate this matrix, with 1 if there is an item else 0.
    The King (exept the special move he can do only once - castling ?) can move only one square around, so X and Y can be -1 or +1
    The Queen can move like a pawn, a bishop and a tower.
    Francois

  • Chess game email

    Can anyone tell me why I open many emails, they are wmv and all I receive is a chess game?

    Hello Sandbayrr:
    Without more information, it is not possible to make constructive suggestions. You mentioned E-mail - what mail platform are you using? Are the E-mails from the same sender? The problem does not, on the surface, appear to be a browser related issue.
    Barry

  • Chess Game Complete

    Hi Everyone
    I have finally completed the first launch of my AFCS chess game.
    Hopefully it will turn out to be a worthy example of what is possible with AFCS.
    Please have a try at http://www.happydaygames.com.au ( offcourse you might need to source an opponent as there are probably no players at the moment ). If you can't source an opponent there is also an example of a single-player Sudoku game I have developed on the site.

    Thanks Aponnusa
    It's great to have some positive feedback!
    I have put a new feature in which allows you to challenge a player that is not online. An email is sent to the player for acceptance. Hopefully this makes it easier to find a game.
    There are now two lobby tabs - one for online players (on click an AFCS challenge Alert is sent) and another for offline players (on click an email is sent)
    Enjoy!
    Oliver

  • Locking the phone using J2me codes

    I am working these day to develop and application using J2me , that has the ability to lock the phone using it is own password.
    but i am asking is it possible to lock the phone using J2me commands??

    Thank you for your response
    but do you know what libraries (API) to use if using C++ with mobile phones.

Maybe you are looking for

  • Playing sounds one at a time

    I'm making ebooks, designing in InDesign, exporting as PDF, opening the PDF in Acrobat and embedding sounds. In the resulting files if I click on one sound, say a three minute mp2 song, and then click on the next sound, the first one is still playing

  • Preview, export, and upload web photo galleries

    This question was posted in response to the following article: http://help.adobe.com/en_US/lightroom/using/WSA20E5E2B-1F61-4c59-A3F4-13C1AEF9EF56.html

  • Disappearing Application Windows?

    Hi, I am running mac os x 10.5.5 on a 3.06 24inch imac with 4gb ram. recently I have a worsening issue with application windows disappearing. It seems to happen with all applications intermittently & i cant pin down why it is happening. I do use spac

  • Card payments

    Dear experts, we have a process at our client place where the employees will be using purchase cards for procurement. Some times there will be po and LIV as well and some time they would just enter a regular vendor invoice. They wanted to follow the

  • Does the Dual USB iBook have this type of video/audio port?

    I am seeing this cable and connected it to my iBook and all I hear is audio. I will enclose the link in this question. Thanks, Paul Link: http://store.apple.com/1-800-MY-APPLE/WebObjects/AppleStore.woa/6254000/wo/j01NM XSXkghu2JIjd1uHi0kNROp/2.0.19.1