Posts
 
Reputation
Joined
Last Seen
Ranked #1K
Strength to Increase Rep
+3
Strength to Decrease Rep
-0
100% Quality Score
Upvotes Received
4
Posts with Upvotes
4
Upvoting Members
3
Downvotes Received
0
Posts with Downvotes
0
Downvoting Members
0
1 Commented Post
0 Endorsements
~3K People Reached
About Me

A jong, inquisitive informatics student likes stucture and hates to do half work.

Interests
Swimming, Anime, Occasualy Gaming, Reading/learing, ICT.
PC Specs
Laptop: HP8510p - Intel Core 2 Duo T7500 (2.2 GHz, 4 MB L2-Cache, 800 MHz FSB) - 2 GB DDR2 RAM (667…
Favorite Tags
Member Avatar for snb
Member Avatar for AbberLine

Hi, I would like to make a blok of text appear when the user clicks a hyperlink. Therefor I created a test file in html: [CODE=HTML] <html> <head> <title>InnerHTML - Test</title> <meta http-equiv="content-type" content="text/html;charset=UTF-8" /> <script type="text/javascript"> function writeEvent(txt){ document.getElementById("infoOut").innerHTML = makeEvent(txt); } function makeEvent(text){ var output return "<table style='border:solid …

Member Avatar for AbberLine
0
215
Member Avatar for jianwu_chen

When you define a variable name same as an IFRAME name, I.E won't be able to get back the iframe. See following example: [code=html] <html> <body> <iframe id='ifLoan' name='ifLoan'> </iframe> </body> </html> <script> var ifLoan=frames['ifLoan']; alert(ifLoan); </script> [/code] In IE, it will display undefined. In firefox, it's fine. So you …

Member Avatar for AbberLine
0
137
Member Avatar for Arch_Bytes

I know this is pretty simple but I can't find the answer for it.. say you have an link that you want to connect to.. [url]http://example.com/example1/example2/final.com[/url] and you don't want it hard coded cause you have many other links that will use that path.. say.. [url]http://example.com/example1/example2/final1.com[/url] [url]http://example.com/example1/example2/final2.com[/url] how can i …

Member Avatar for AbberLine
0
79
Member Avatar for AbberLine

For this question I would like to reffer to my previous thread: about my game project for school: [URL="http://www.daniweb.com/forums/thread102003.html"]http://www.daniweb.com/forums/thread102003.html[/URL]. I would like to execute a function every few miliseconds. Say every 5 miliseconds. [QUOTE=invisal;495957] This part should call every 5 miliseconds. [code=cplusplus] bool Render() { // Render all the 20 …

Member Avatar for AbberLine
0
1K
Member Avatar for AbberLine

Hi This question gives me a weird feeling, actually I'm not really sure if this is relevant. Anyway, here we go: I'm (still) busy coding my first game in C. The goal is simple: the player is a fisherman and needs to catch all the fish in the water. If …

Member Avatar for AbberLine
0
385
Member Avatar for AbberLine

Hi Recently I started programming C (not C++) in borland 4.5 at school. Now my teammate and I have to make a small game. Therefor I will use an two-dimensional array, the field (a table, rows and colmnes). This two-dimensional array holds chars ("X", "|", "J", "-" and " "). …

Member Avatar for AbberLine
1
194