|
More site info...
Codemasters | Forum profile
|
|
Forum profile page for Codemasters on http://lowyat.net.
This report page is the aggregated overview from a single forum: Codemasters, located on the Message Board at http://lowyat.net.
This forum profile page summarizes the general forum statistics such as: Users Activity, Forum Activity, and Top Authors, which are reported in either a table or graph below for a given reporting time period.
Additional forum profile information for "Codemasters" on the Message Board at http://lowyat.net is also shown in the following ways:
1) Latest Active Threads
2) Hot Threads for Last Week
Warning: These statistics are generated using 'best efforts' and can experience delays and reporting errors at times. Please note that such statistics do not constitute a forum's popularity and/or exact posting volumes at any given reporting period.
|
|
|
|
|
Posting activity on Codemasters:
|
|
Week
|
Month
|
3 Months
|
|
Threads:
|
115
|
370
|
1,084
|
|
Post:
|
318
|
981
|
2,764
|
|
|
Codemasters Posting activity graph:
|
Top authors during last week:
user's latest post:
PHP, how do i get started?
Published (2009-12-04 19:36:00)
hey, i use the same code like urs, but when i press the link, show me welcome, i don see any Hello World at another page... can any1 help me
user's latest post:
Need help?
Published (2009-12-01 15:38:00)
Yuppers....that would be a hell of a work just to get football scores
user's latest post:
how to parse a page?
Published (2009-12-04 13:56:00)
Unless there is a bug that you can exploit to fool the server into giving you the source codes, that's not going to happen. The only way you can get your hands on the source code via HTTP is by extreme luck or using non-HTTP channels - like logging into the server via Network Neighborhood as an administrator and copy the files, which falls into the illegal category unless you have permission.
user's latest post:
PHP Selection Dialog
Published (2009-12-04 12:10:00)
OH~ that is what you means... lol. It not too complicated but still not too easy. Because you might need help from JavaScript and AJAX too (so the page no need to refresh, just pop out another dialog using JS/AJAX). By using AJAX, things will get hell lot smoother (i not means easier... lol) - click search -> pass data to PHP using AJAX - if string is empty, PHP generate a list of data from database - PHP pass back the list to AJAX by...
user's latest post:
html javascript problem
Published (2009-12-04 22:27:00)
make sure you understand the process,how to manipulate array,object.. thats it.
user's latest post:
SQL Server 2000 Crashed
Published (2009-12-02 10:46:00)
if you want to read the transaction log, can download SQL Log Rescue to view it
user's latest post:
C++ Software Developer Facebook...
Published (2009-12-04 01:14:00)
C++ Software Developer! come join us at C++ Software Developer Facebook Group let's share our passion.. This post has been edited by azam3d : Today, 01:21 AM
user's latest post:
Anyone here on Google Wave ?
Published (2009-12-02 16:42:00)
QUOTE(chibiheroes @ Nov 28 2009, 01:44 AM) I use wave to chat and post designs and code to programming team members! I think it a great tool for collaborations especially for programming...
user's latest post:
html javascript problem
Published (2009-12-04 22:20:00)
QUOTE(puaka_astro @ Dec 4 2009, 10:06 PM) phewww.... just finished the sample code .. Dude test this... you'll get the idea » Click to show Spoiler - click again to hide... « CODE <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD /xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml">...
|
|
|
|
Latest active threads on Codemasters::
Started 1 day, 21 hours ago (2009-12-04 22:29:00)
by Azriq007
marquee text?.. for desktop application or web?
Started 2 days, 3 hours ago (2009-12-04 17:07:00)
by nyem
(
You need to learn JSON format to better organise your variables. Be careful when using CODE arrItemPrice[0] = "199.00"; as Javascript treats the value as string, not number. While I understand what you want to do, I can't really understand your codes. Here's a quick rewrite of your codes: CODE <script> // ,// list of items // ,var items = [ Â { Â Â Â desc...
Started 2 days, 12 hours ago (2009-12-04 07:45:00)
by LancerDragoon
Pretty much, yeah. But with Windows Forms, you're actually using the library that Microsoft provides to you that allows you to create the GUI applications. With GUI applications you need to be careful to separate your GUI tasks and actual task-intensive functions, or otherwise your GUI will start to hang. Multithreading concepts are usually needed when you're working with GUIs. I ...
Started 2 days, 8 hours ago (2009-12-04 11:49:00)
by M1X
You means show a list of data from database, select one and POST it to PHP? show_list.php CODE <form method='post' action='store.php'> <select name='items'> <?php // connect to your databse and table first before proceed // $query = sql("select * from my_table"); while($row = mysql_fetch_array($query)){ extract($row); echo"<option value='$id'>$item_name</option>"; // example ...
Started 2 days, 23 hours ago (2009-12-03 20:12:00)
by puaka_astro
what do want really ? is it the return filename ? ok lets start this.. begin tracing on complete event for uplodify : CODE function onComplete(event, queueId, fileObj, response, data) { /* event: The event object. queueID: The unique identifier of the file that was completed. fileObj: An object containing details about the file that was selected. ⢠name â The name...
Started 4 days, 3 hours ago (2009-12-02 16:22:00)
by azam3d
simple path: 1. install XAMPP (install in default folder) 2. open it and click start Apache and MySQL 3. create a new text file and start coding eg: <?php echo "Hello PHP"; ?> 4. save it as "filename.php" in C:\xampp\htdocs 5. open it in the browser. eg: http://localhost/filename.php 6. done
Started 2 days, 2 hours ago (2009-12-04 17:49:00)
by calvinfc
Started 3 days, 6 hours ago (2009-12-03 13:52:00)
by ExpZero
1)What is update panel? 2)you load your page ajax like facebook? If you just update your page with ajax, the browser won't conclude it as "new page", thus you won't have back button.
|
|
Hot threads for last week on Codemasters::
Started 6 days, 8 hours ago (2009-11-30 11:42:00)
by larry
is your dataset in a DB? If it was, then you can just sort according in your SQL query.
Started 4 days, 3 hours ago (2009-12-02 16:22:00)
by azam3d
simple path: 1. install XAMPP (install in default folder) 2. open it and click start Apache and MySQL 3. create a new text file and start coding eg: <?php echo "Hello PHP"; ?> 4. save it as "filename.php" in C:\xampp\htdocs 5. open it in the browser. eg: http://localhost/filename.php 6. done
Started 2 days, 3 hours ago (2009-12-04 17:07:00)
by nyem
(
You need to learn JSON format to better organise your variables. Be careful when using CODE arrItemPrice[0] = "199.00"; as Javascript treats the value as string, not number. While I understand what you want to do, I can't really understand your codes. Here's a quick rewrite of your codes: CODE <script> // ,// list of items // ,var items = [ Â { Â Â Â desc...
Started 1 week ago (2009-11-29 15:45:00)
by williamku87
me just a newbie in the asp.net.
this is one i need to get.
after i adding the script my textbox is display like a html. me just need the data don want the header or body. Who has an idea? I really appreciate if can you all help me. Thanks below is my entire code aspx CODE <%@ Page Language="vb" AutoEventWireup="false" CodeBehind="Default.aspx.vb" Inherits="...
Started 4 days, 9 hours ago (2009-12-02 10:20:00)
by lokohotkoko
yes u can make GUI, library and so on. if u ever notice when u create ur new project in ur compiler, u have the choice to select what can kind of program do u want to make. see it from there and u'll know it's not limited to command-line or console application only. i dont understand what do u mean by ur .txt reading program. but if i'm writing a simple cmd-line program that read ...
Started 1 week, 5 days ago (2009-11-24 19:42:00)
by GiveMeA`Break
QUOTE(birdbirdie @ Nov 22 2009, 11:50 AM) Hi guys, I'm a newbie in html but I've tried to learn php, java and some css codes part time online. I've just created a facebook application: UTAR CGPA Calculator This application is used for utar students to calculate their target cgpa and required gpa to achieve that. Please tell you where to improve after you've tried it....
Started 6 days ago (2009-11-30 20:07:00)
by wKkaY
You need to know 1) what units those numbers are in, and 2) what datum they're referenced to.
Started 1 week, 4 days ago (2009-11-25 11:57:00)
by stan001
Anyone here on Google Wave ?? It's a good collaboration tools ....
Started 2 days, 18 hours ago (2009-12-04 01:14:00)
by M1X
Reusable codes ( wrote myself): CODE function file_upload($file, $type, $path = '', $unique = false){ $unique = $unique == null ? false : $unique; $type = is_array($type) ? clear_dot($type) : explode(",", clear_dot($type)); // we convert text to array, if user send in a text-list $name = $unique == true ? date("U") . '_' . $file["name"] : $file["name"]; // generate filename ...
Started 3 days, 5 hours ago (2009-12-03 14:50:00)
by silvestrelsl
When you clear or reassign the data source, did you call DataBind() method or not?
|
|