- Strength to Increase Rep
- +5
- Strength to Decrease Rep
- -1
- Upvotes Received
- 5
- Posts with Upvotes
- 4
- Upvoting Members
- 5
- Downvotes Received
- 6
- Posts with Downvotes
- 5
- Downvoting Members
- 5
- PC Specs
- Learn C++
Re: For those who want to develop OS's(like me) [url=http://wiki.osdev.org/Main_Page]OS Dev Wiki[/url] is a good place to start. | |
Hello, I'm starting on Assembly and i want to know how i can clear the screen in Assembly, because of my OS. When i run it in Bochs, that boot messages are there and i want to clear they, for a better visual of my OS. Thanks, Nathan Paulino Campos | |
Re: In my opinion, Delphi is more easy to learn and it's more flexible in OS's term, like Lazarus project, you can compile apps to Linux and Mac, Kylix just to Linux. | |
I was looking at a page called [URL="http://blog.sarathonline.com/2009/02/javascript-convert-strings-to-binary.html"]Javascript: Convert Strings to Binary (and representing in a nerdy way!)[/URL] where you can convert a [icode]String[/icode] into binary dots using Javascript and I loved that, but how I can do that? Since the code isn't for making that grid... | |
Hello, My friend gave me a code to try a bit. What it does is that it gets a text and format it. Here it is: [code]function boldAndItalicize(text) { return text.replace(/&/g, '&').replace(/</g, '<') .replace(/(\*+)([^*]{1,1024})(\*+)/g, function (whole, open, content, close) { if (open.length === close.length) { switch (open.length) { case 1: … | |
Hello, I'm building a program that gets the value of a [b]TextField[/b], concatenate with some other [b]Strings[/b] and then display them on a [b]TextBox[/b] when the [b]ScreenCommand[/b] is clicked, the problem is that it's calling a [b]NullPointerException[/b]. My code is like this(of course it has a lot more stuff): [code=java]/* … | |
Re: Hello, In my opinion you can install MinGW and install Eclipse, but if you want to use NetBeans or other IDE you need to have MinGW. | |
I'm trying to adapt the opensource code from the page [url=http://tlrobinson.net/iphone/lighttable/]Drag and Drop in MobileSafari[/url], here is a snippet of the code I've changed from: [code] function jsonFlickrApi(data) { for (var i = 0; i < data.photos.photo.length; i++) { var p = data.photos.photo[i], img = document.createElement("img"); img.src = 'http://farm'+p.farm+'.static.flickr.com/'+p.server+'/'+p.id+'_'+p.secret+'_m.jpg'; img.className … | |
Hello, I'm learning C++ and trying to build my own file zipper, because i like very much to work with zip files, but now i want to build my own zipper and it's so hard to find good resources to start. As you can see in my previous posts i … | |
Re: Nooooooooo! Now DaniWeb is like StackOverflow! :( With this reputation! | |
Re: I don't know how to do this in Tasm, but i wrote a article at CodeProject some time ago using MASM32, take a look: [url]http://www.codeproject.com/KB/DLL/intro_to_dlls_in_masm.aspx[/url] Hope this helps! | |
Re: I'm going o add you, my Skype is ubuntu-nathan, if someone want to add me too, i will be very happy, but remember that i'm learning C++. Thanks For The Future Help! | |
Hello, I'm learning C# and i want to know how i can add a item in a ListBox like this, the user click in a button, then it creates a item in the ListBox and in the ListBox the user digits what he want in that field, when the user … | |
Hello, I use Nasm as my default Assembler, but with a couple days i was testing MASM and now i want to know how many users here use this Assembler. Thanks, Nathan Paulino Campos | |
Hello, I'm a brazilian, but my friend is chinese and he buyed a notebook here in Brazil(Don't have chinese support installed) and my Windows XP CD don't have all that files to install the language pack, then [b]how i can get the language pack?[/b] Thanks, Nathan Paulino Campos | |
Re: Only one comment for you codeguru_2009: please put the code highlighting in your code, using this tags: [ code=asm ] ... [ /code=asm ], without spaces, it's just to for the best comprehension of the code. Thanks! | |
Hello, I'm really starting in Assembly, but i want to know if it's possible to develop for ARM devices like those who run Windows CE, because i have an Jornada 720 and i want to develop to it, i'm already a Java developer, but Assembly will be another language that … | |
Hello, I'm starting in the development under PocketC and i want to know if here in DaniWeb we have other users that are using the same software. Regards, Nathan Paulino Campos | |
Re: Tom Gunn is right, and another thing, please put the code highlighting, like this: [ code=cplusplus ] ... [ /code ], but without spaces. Thanks! | |
Hello, At this times i need to decide something that will chage my life forever, it is: Continue with C++ and the possibility to compile my programs at my HP Jornada 720(Handheld PC) and in my [b]PC only and NOT for my j720[/b], or learn C and start my mobile … | |
Re: Don't use [b]<pre> and </pre>[/b]!, use the code tags: [b][ code=cplusplus ]...[ /code ][/b], without spaces! Thanks! | |
Re: Other things, please put better descriptions as Salem says and this isn't the right forum to talk about C, use the C forum here in DaniWeb! Thanks! | |
Re: Don't put this dirty words in your title, put better titles and that explain what you need! Thanks! | |
Hello, Because of my new and the most of the future projects, i'm needing to learn C and use Windows, but because of this, i don't know how to use the Windows API, then i'm asking for an example of using DeleteFile function. Thanks, Nathan Paulino Campos | |
Hello, I'm learning Assembly and i want to know the tools that the other persons use to develop, things like: Nasm, emu8086, WinHex... All the things that you use that are related with Assembly and what the do. Only for improve my tools and my learning. Thanks, Nathan Paulino Campos | |
Re: huh, very interesting, i'm going to write a program like this! | |
Hello, I'm developing an simple OS, as you can see in my previous posts, but now i have a file that is too big for the boot sector(510 bytes), then i want to split it in two files, one that will be in the boot sector of the floppy and … | |
Hello, I'm trying to write my OS to an floppy disk, but when i try to boot up, Bochs says that i don't have any OS on that floppy, here is the command that i'm using to write: #1 Try: [code]C:\Assembly> DEBUG os.asm -w 100 0 0 1 -q[/code] #2 … |