Forum: JavaScript / DHTML / AJAX Nov 16th, 2008 |
| Replies: 1 Views: 1,232 add this function to your javascript
function reloadPage(){
location.reload(true)
}
then edit your handleResponse script
function handleResponse() {
if(http.readyState == 4){
... |
Forum: JavaScript / DHTML / AJAX Nov 16th, 2008 |
| Replies: 3 Views: 4,154 try using the visibility property.
to make it visible:
document.getElementById ("divid").style.visibility="visible";
to make it back to hidden:
document.getElementById... |
Forum: PHP Nov 16th, 2008 |
| Replies: 3 Views: 6,449 try inserting the inclusion in department_list.php:
<?php
include_once('catalog.php');
// Manages the departments list
class DepartmentsList
{
Regards,
ivanceras |
Forum: JavaScript / DHTML / AJAX Aug 14th, 2006 |
| Replies: 2 Views: 5,931 here is the code.... just for a simple chat program..
the chat message will be display at the div class:'chit'
the chat message has an id 'chat'... which will be diplayed on the screen..
chat.js... |
Forum: JavaScript / DHTML / AJAX Aug 12th, 2006 |
| Replies: 8 Views: 21,902 Hi Deacon J,
Im pretty sure that you are an expert about div.....
how about my problem..?
with css <div> {overflow:scroll/auto} controls...
when the page is reloaded.. the default... |
Forum: JavaScript / DHTML / AJAX Aug 12th, 2006 |
| Replies: 2 Views: 5,931 Hi everyone,
Does anybody knows how to position the scroll bar of the code generated by the
css div{overfolw:scroll}?..
The default position of the scroll bar is on the top.. now,... |
Forum: Assembly Jul 22nd, 2006 |
| Replies: 10 Views: 8,924 ok... thanks guys.... i have figured it out... thanks a lot to all who posted their idea here...(^--^) |
Forum: Assembly Jun 17th, 2006 |
| Replies: 10 Views: 8,924 got some questions about .com and .exe files
Whats the main difference between the two file types?
When two files of the same file name one with .com extension.. the other .exe why does windows... |
Forum: PHP May 25th, 2006 |
| Replies: 3 Views: 1,080 well just keep on reading the best site of it php.net :) |
Forum: C May 25th, 2006 |
| Replies: 17 Views: 6,985 a sophisticated,convoluted code any other programmer make proud of .... is a bad programming practice... why not keep it simple and readable... <dietel & dietel books..> |
Forum: C May 24th, 2006 |
| Replies: 2 Views: 1,106 im confused with your explaination of your problem.....
maybe you mean ... the index of alpha will be the value of buffer[0]..
then use..
x=buffer[0];
printf("%d",apha[x]); |
Forum: C May 24th, 2006 |
| Replies: 9 Views: 1,224 Also why integer is limited to -32767 TO +32767?
>> integer value is 16 bit in size which yields a maximum of 65,536 ( from 2^16) combinations.... and it has different attributes (such as... |
Forum: C May 24th, 2006 |
| Replies: 6 Views: 1,419 [quote]
C.... code.. its up for you to translate to C++
and correct other situations.. like no string is entered....
#include<stdio.h>
#include<string.h>
#define MAX_LEN_WORD 80
#define... |
Forum: C++ May 24th, 2006 |
| Replies: 6 Views: 4,834 |
Forum: C May 23rd, 2006 |
| Replies: 3 Views: 1,057 char string[80];
int index;
printf("Enter a string:");
scanf("%s",&string);
START:
printf("where to start display");
scanf("%d",&index); |
Forum: C May 23rd, 2006 |
| Replies: 7 Views: 3,110 well... all symbols are assigned from 0 to 255... why not create an array of counter which count the number of ascii value which is the same as it index.. and in the same time the index is the ascii... |
Forum: C May 23rd, 2006 |
| Replies: 3 Views: 997 Hi jazzz.. those code are too advance to be understand... those are optimized code which enable the machine to execute efficiently faster... why just start from the basic.... |
Forum: C May 23rd, 2006 |
| Replies: 13 Views: 14,069 i think you should develop a sequence tracking algortihm. my example algorith...
char string[100] = "string of ABC and so on.. and ABC so forth.."
char tracker[3] = "ABC"
char buffer[40]="";
... |
Forum: C++ May 23rd, 2006 |
| Replies: 4 Views: 4,974 Hi TIA... it is good that you are maximizing your capability not just in one aspect... i appreciated that... :)
back to your question, about char data type....actually a char data type is just... |