Register
FAQ
Calendar
Search
Today's Posts
Rules
Guidelines
SMS enable your application
via Clickatell’s fast, simple and reliable API's, built to integrate with any system.
Click here
to learn more.
Flash Website Builder
- Trendy Site Builder is a Flash Site Building tool that helps users build stunning websites.
Check Out Custom
Custom Logo Design
by LogoBee. Website Design and Free Logo Templates available.
CodingForums.com
>
Search Forums
Search Results
User Name
Remember Me?
Password
Before you post, read our:
Rules
&
Posting Guidelines
Page 1 of 2
1
2
>
Showing results 1 to 25 of 46
Search took
0.33
seconds.
Search:
Posts Made By:
JygzIsHere
Forum:
JavaScript programming
08-12-2010, 07:03 AM
Replies:
3
checked attribute
Views:
695
Posted By
JygzIsHere
instead: document.Simple.Subject[q].checked...
instead:
document.Simple.Subject[q].checked = true;
try this:
document.Simple.Subject[q].setAttribute("checked","checked");
Forum:
PHP
06-02-2009, 02:51 AM
Replies:
1
Cerrar ventana PDF
Views:
1,335
Posted By
JygzIsHere
Hola, Haga esto: 1. Crear una página en...
Hola,
Haga esto:
1. Crear una página en la que acepta una cadena de consulta. El valor de esta cadena de consulta será la ubicación del PDF generado.
2. En la página creada, crear un iframe...
Forum:
JavaScript programming
05-30-2009, 03:05 AM
Replies:
2
read contents of table cell
Views:
1,403
Posted By
JygzIsHere
<script type='text/javascript'...
<script type='text/javascript' language='javascript'>
var objTbl = document.getElementById('tbl');
var data = "";
for (i=0; i < objTbl.rows.length; i++)
{
var tmpCell =...
Forum:
JavaScript programming
05-30-2009, 02:57 AM
Replies:
2
read contents of table cell
Views:
1,403
Posted By
JygzIsHere
Hi, Try This One: <table id='tbl'...
Hi, Try This One:
<table id='tbl' width=100% align=center border=0 cellspacing=2 cellpadding=2>
<tr>
<td align=center><font size="1" >
<a...
Forum:
HTML & CSS
05-13-2009, 03:24 AM
Replies:
4
What is the difference between .header or #header in CSS
Views:
1,533
Posted By
JygzIsHere
"." points to a class "#" points to an id ...
"." points to a class
"#" points to an id
example:
<div id="header">
Header ID DIV
</div>
<div class="header">
Forum:
JavaScript programming
05-02-2009, 09:00 AM
Replies:
10
Focus question
Views:
852
Posted By
JygzIsHere
yeah, i think putting each submit button in...
yeah, i think putting each submit button in different forms is a better way...
Forum:
JavaScript programming
05-02-2009, 08:40 AM
Replies:
10
Focus question
Views:
852
Posted By
JygzIsHere
ok let's find something else.
ok let's find something else.
Forum:
JavaScript programming
05-02-2009, 08:22 AM
Replies:
10
Focus question
Views:
852
Posted By
JygzIsHere
Hi, try this again: <script> function...
Hi, try this again:
<script>
function Submitt(e)
{
var keyCode = (e.keyCode)?e.keyCode:e.which;
if (keyCode==13){
document.reports.submitt.click();
Forum:
JavaScript programming
05-02-2009, 07:58 AM
Replies:
10
Focus question
Views:
852
Posted By
JygzIsHere
Or, you can assign a keypress function to the...
Or, you can assign a keypress function to the text field like this:
<script>
function Submitt(e)
{
var keyCode = (e.keyCode)?e.keyCode:e.which;
if (keyCode==13){
Forum:
JavaScript programming
05-02-2009, 07:51 AM
Replies:
10
Focus question
Views:
852
Posted By
JygzIsHere
Maybe you can do it something like this: ...
Maybe you can do it something like this:
<SCRIPT>
function submitFunction(i) {
if (i==1) document.theForm.action = "<?=$_SERVER['PHP_SELF']?>";
if (i==2) document.theForm.action = ...
Forum:
JavaScript programming
05-02-2009, 07:33 AM
Replies:
10
Focus question
Views:
852
Posted By
JygzIsHere
Could you please post your code?
Could you please post your code?
Forum:
Computer Programming
04-02-2009, 02:01 AM
Replies:
1
Automatic Detection of Mail Status in Outlook using MAPI
Views:
1,229
Posted By
JygzIsHere
I find a solution: ...
I find a solution:
Outlook.Application objO = new Outlook.Application();
Outlook.NameSpace objNS = objO.GetNamespace("mapi");
objNS.Logon("PROFILENAME",...
Forum:
Computer Programming
04-01-2009, 04:26 AM
Replies:
0
.NET Interop Outlook Filter mails with attachment/s
Views:
1,241
Posted By
JygzIsHere
.NET Interop Outlook Filter mails with attachment/s
Hi,
I want to retrieve all items from outlook inbox that has one or more attachments.
My current code is:
Outlook.Application objO = new Outlook.Application();
...
Forum:
Computer Programming
04-01-2009, 01:08 AM
Replies:
1
Automatic Detection of Mail Status in Outlook using MAPI
Views:
1,229
Posted By
JygzIsHere
Automatic Detection of Mail Status in Outlook using MAPI
Hi To All,
Is there a way in MAPI or others to detect that the mail status is changed, like read or unread.
I want to make a program that runs as a service and a portion of a code will get...
Forum:
JavaScript programming
01-13-2009, 01:30 AM
Replies:
1
Variable issues
Views:
460
Posted By
JygzIsHere
This code: var GlobeTodoArray = new array(); ...
This code:
var GlobeTodoArray = new array();
Should be changed to:
var GlobeTodoArray = new Array();
<script type='text/javascript' language='javascript'>
var GlobeTodoArray = new...
Forum:
JavaScript programming
12-06-2008, 04:42 AM
Replies:
30
page scroll - how to stop it?
Views:
3,316
Posted By
JygzIsHere
var i; // interval object var speed=1; // 1...
var i; // interval object
var speed=1; // 1 pixel per update
var currentpos=0;
function scrollwindow() {
currentpos = (document.all) ? document.body.scrollTop+speed :...
Forum:
ASP.NET
12-03-2008, 03:46 AM
Replies:
8
Form with steps
Views:
1,473
Posted By
JygzIsHere
Use Multiview, it contains different Views. So...
Use Multiview, it contains different Views. So each step would be a view.
Forum:
PHP
11-28-2008, 03:52 AM
Replies:
4
Looking for the reverse of pow()
Views:
2,146
Posted By
JygzIsHere
Sorry.. Actually I haven't tested it..ehehehe ...
Sorry.. Actually I haven't tested it..ehehehe
This is the update. It works to me:
<?php
function ABC($num, $base)
{
Forum:
PHP
11-27-2008, 12:23 AM
Replies:
4
Looking for the reverse of pow()
Views:
2,146
Posted By
JygzIsHere
I think its log: http://www.php.net/log ...
I think its log: http://www.php.net/log
<?php
function ABC($num, $base)
{
$a = log($num) / log($base);
if($a - intval($a) == 0) //if($a % 1 == 0)
Forum:
JavaScript programming
11-25-2008, 09:53 PM
Replies:
6
Change background color of textfield if value changes
Views:
5,190
Posted By
JygzIsHere
<html> <head> <title>Change </title> ...
<html>
<head>
<title>Change </title>
<script type="text/javascript" language="javascript">
function checkIfChanged(elem, originalvalue)
{
if(elem.value != originalvalue)
{...
Forum:
PHP
10-21-2008, 04:39 AM
Replies:
12
I need a help creating a registeration form (Signup)
Views:
874
Posted By
JygzIsHere
wahehehe... i passed the whole sql statement in...
wahehehe... i passed the whole sql statement in mysql_escape_string function.. should be the posted data not the sql statement.. thankz rangana..
Forum:
JavaScript programming
10-21-2008, 04:33 AM
Replies:
2
Disable the "Select All" Checkbox if None of the Rows on the Page Has a Checkbox
Views:
2,649
Posted By
JygzIsHere
hi.. assign same name for each checkbox.. then...
hi.. assign same name for each checkbox.. then count the checkboxes with same name using javascript's document.getElementsByName.. if the count is less than 1 then hide the Select All checkbox.
...
Forum:
PHP
10-21-2008, 12:54 AM
Replies:
13
login problem
Views:
1,056
Posted By
JygzIsHere
try to put ob_start(); at the top of your code ...
try to put ob_start(); at the top of your code
and ob_end_flush(); at the bottom part of your code
<?php
ob_start();
// Connects to your Database
Forum:
HTML & CSS
10-21-2008, 12:37 AM
Replies:
3
Text Formatting
Views:
540
Posted By
JygzIsHere
apply css inline display in the div ...
apply css inline display in the div
<div>Lorem
<div style='display:inline;color:dodgerblue'>ipsum</div> dolor....
</div>
Forum:
PHP
10-21-2008, 12:09 AM
Replies:
12
I need a help creating a registeration form (Signup)
Views:
874
Posted By
JygzIsHere
fogot the $ sign of the variable strCheckUserSQL ...
fogot the $ sign of the variable strCheckUserSQL
<?
// this where you get your privet info to be here! and work with your script
$conn = mysql_connect("localhost","root","pass");
// this...
Showing results 1 to 25 of 46
Page 1 of 2
1
2
>
Forum Jump
User Control Panel
Private Messages
Subscriptions
Who's Online
Search Forums
Forums Home
:: Client side development
JavaScript programming
DOM and JSON scripting
Ajax and Design
JavaScript frameworks
Post a JavaScript
HTML & CSS
XML
Flash & ActionScript
Adobe Flex
Graphics and Multimedia discussions
General web building
Site reviews
Building for mobile devices
:: Server side development
Apache configuration
Perl/ CGI
PHP
Post a PHP snippet
MySQL
Other Databases
Ruby & Ruby On Rails
ASP
ASP.NET
Java and JSP
Other server side languages/ issues
ColdFusion
Python
:: Computing & Sciences
Computer Programming
Computer/PC discussions
Geek News and Humour
Web Projects and Services Marketplace
Web Projects
Small projects (quick fixes and changes)
Medium projects (new script, new features, etc)
Large Projects (new web application, complex features etc)
Unknown sized projects (request quote)
Vacant job positions
Looking for work/ for hire
Project collaboration/ partnership
Paid work offers and requests (Now CLOSED)
Career, job, and business ideas or advice
Domains, Sites, and Designs for sale
Domains for sale
Websites for sale
Design templates and graphics for sale
:: Other forums
Forum feedback and announcements
All times are GMT +1. The time now is
12:42 PM
.
Web Hosting UK
|
Dedicated Server Hosting
|
Shareware Junction
|
Software Geek
|
Flash file uploader
|
Cloud Server
|
Web Hosting Australia
Home
-
Contact Us
-
Archives
-
Link to CF
-
Resources
-
Top
Powered by vBulletin®
Copyright ©2000 - 2013, Jelsoft Enterprises Ltd.