- Upvotes Received
- 3
- Posts with Upvotes
- 2
- Upvoting Members
- 3
- Downvotes Received
- 0
- Posts with Downvotes
- 0
- Downvoting Members
- 0
13 Posted Topics
I have been working on a web application that requires a calendar that will display events along with information about them. I have been using the full calendar API to handle the calendar for me. But I whenever I have an event that spans across multiple days the calendar does … | |
Re: Learning your first computer language will not be easy. There will be days where you cannot find out what you did wrong or when you have started a project that is too advanced for you. The trick is to pick a language and stick with it untill you fully understand … | |
Re: You can download [nova flux](https://sourceforge.net/projects/novafluxlibrary/files/?source=navbar) It has useful tools for playing Ogg Files. You would want to use the OggManager from the audio package to Load the Ogg you would want to say: `OggManager.addOgg("ID","FilePath");` to play the Ogg you would say: `OggManager.playOgg("ID");` The Library is designed to make games but … | |
Re: I learned java by searching for various online tutorials and that worked for me. The nice thing about a book is that they keep that information in one place but once you learn the basics the book is going to become somewhat useless because no book is really going to … | |
Re: http://www.mybringback.com/series/java-2/ this site has some very good video tutorials but always remember that Oracle has java well documented and once you learn the basics you'll be able to find most of your tools there, personally when I run into a problem programming Oracle is my first stop before I think … | |
I downloaded eclipse to my windows 8 computer along with the jdk and when I launch eclipse it tells me that it cannot not find the jre or jdk and that it is not in my current PATH. I have tried setting the path to the jdk folder but it … | |
Re: I have found that the drag and drop interface is hard to use,so i believe near the bottom of the screen there are two tabs that say something like graphical layout and xml layout or something like that. If you click on the xml you can edit things more accurately. … | |
Re: It appears to scroll just fine when I copied your xml code, so I looked at your manifest and you are missing the Intent-filter tag from your manifest along the attributes that follow. I don't think this is the main root of your issue but I dont know how you … | |
Re: Eclipse is by far the best tool right now to use but you should keep an eye on android studio because even though it is still a work in progress it looks like it will be a very promising IDE and similar to eclipse in many ways. http://developer.android.com/sdk/installing/studio.html | |
I don't know if there is a mobile app or mobile version for this site, but I have not seen one. I think it could work great if you could check to see if someone has answered your question from a mobile device or respond to someones answer. although you … | |
Re: Yeah, deceptikon is definitly correct. I would just add that if you need to look over how to convert decimal to binary you should check out [this site](http://www.learncpp.com/cpp-tutorial/37-converting-between-binary-and-decimal/) | |
Re: I might be missunderstanding you but it looks like you are just trying to display a number from a text box into a label so you just do this Private Sub TextBox1_TextChanged(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles TextBox1.TextChanged Label1.Text = TextBox1.Text Label2.Text = TextBox2.Text End Sub | |
This program is supposed to shuffle a Deck of cards and display them so I know it is working correctly. But one of the values displayed is -858993460 which is not possible when it should only be between 1 and 52. Obviously there is some sort of data loss going … |