|
Chami.com Html-Kit. It directly integrates to PHP Online help and PHP Syntax Coloring.
|
|
|
|
|
|
I'm used to the old BeginMethod and EndMethod,
Im workin on VS 2005 it does not have those methods...
It has MethodAsync and event handler...
How do I use this?
_____________________________________________________
Yea! I could be wrong...
|
|
|
|
|
saud_a_k wrote: How do I use this?
They hide that information in the documentation[^]
led mike
|
|
|
|
|
what is the difference between procedures like--->
sub ish()
public sub ish()
private sub ish()
protected sub ish()
----> please diffenentiate in details...
assume that i don't know c/c++;P
Ish Kumar Kapila
|
|
|
|
|
In C++, public, private and protected access to fields and methods come into play during inheritance.
Public: Everyone has access.
Protected: Only parent and descendant children have access.
Private: Only the parent has access.
|
|
|
|
|
Hello,
I want client side validation of time in which it should be in hh:mm:ss format
Thanks for seeing my question
|
|
|
|
|
Use regualr expressions.
edit: also note that you must always perform server side validation!
--------------------------------------------------------
My portfolio & development blog
Q:What does the derived class in C# tell to it's parent?
A:All your base are belong to us!
|
|
|
|
|
try this code in the regular expression validator control
checks time format --->
(^([0-9]|[0-1][0-9]|[2][0-3])([0-5][0-9])(\s{0,1})([AM|PM|am|pm]{2,2})$)|(^([0-9]|[1][0-9]|[2][0-3])(\s{0,1})([AM|PM|am|pm]{2,2})$)
Ish Kumar Kapila
|
|
|
|
|
for emample: if havn't data series,model,sfx in database then insert new row
series model sfx
avan zze-deli A1
then insert new series,model,sfx again and already in database
series model sfx
avan zze-deli A1
avan zze-deli A1
then put character in english desc z,y,x put back sfx
series model sfx
avan zze-deli A1
avan zze-deli A1Z
avan zze-deli A1Y
what should I do for code
Preaw
|
|
|
|
|
i was reading this lightbox script and it contains lines like this
Object.extend(Element, {
getWidth: function(element) {
element = $(element);
return element.offsetWidth;
}
i wonder what $(element) has to do here. anyone got any idea?
btw, i have seen a lot of $(....) stuff going on recently. is that a new method of javascript1.x?
|
|
|
|
|
Element usually refers to any HTML tag such as <div> or <img>.
|
|
|
|
|
|
Sorry, I was in a hurry when I tried to answer your question.
First of all, variable names in javascript follow this standard:
A JavaScript identifier must start with a letter, underscore (_), or dollar sign ($); subsequent characters can also be digits (0-9).
Since a function in javascript is actually a variable, it follows the same rules. Thus, there is a function created somewhere like:
<br />
function $() {<br />
...<br />
{<br />
or
<br />
function $(object) {<br />
...<br />
}<br />
Regards
|
|
|
|
|
Search for "function $" in your code, and you will find it.
---
b { font-weight: normal; }
|
|
|
|
|
what are the basic difference b/w javascript & vbscript
please also refer me some article or site about it.
thanx
Ish Kumar Kapila
|
|
|
|
|
vbscript only works in IE where as javascript works in almost any browser.
They have a different syntrax and different API.
--------------------------------------------------------
My portfolio & development blog
Q:What does the derived class in C# tell to it's parent?
A:All your base are belong to us!
|
|
|
|
|
VbScript can also be used as a computer script. Javascript can't.
|
|
|
|
|
Incorrect. WSH, which executes stand-alone VBS scripts, can also execute JS, with pretty much the same capabilities.
every night, i kneel at the foot of my bed and thank the Great Overseeing Politicians for protecting my freedoms by reducing their number, as if they were deer in a state park. -- C hris L osinger, Online Poker Players?
|
|
|
|
|
I have a one big problem , Using the Internet Explorer to view my site its working fine but with firefox it doesnot give the proper result , all the formatting and alignments get worst with firefox but with internet explorer its working fine. can u tell me what changes i should to view the best result with both the browser.
demane
|
|
|
|
|
|
what do sub & endsub mean in vbscript ?/
give full details...
Ish Kumar Kapila
|
|
|
|
|
Start and end of a function that does not return a value.
--------------------------------------------------------
My portfolio & development blog
Q:What does the derived class in C# tell to it's parent?
A:All your base are belong to us!
|
|
|
|
|
hi
this code is quite nice for me except if the text box is at the edge of my modal dialog page, it auto drop down with page scrollbar out where i set my modal dialog page size without scrollbar exists.
so wat should i do?
chu
|
|
|
|
|
I use the script:
function oedjsSetObjectValue( obj, strValue )
{
var _oedjsObjS=document.getElementById( obj );
if( _oedjsObjS != null )
_oedjsObjS.value = strValue;
}
then I have a textbox
echo "";
and call this in PHP:
echo "";
but the input named 'strFormText[0]' want not set the value to '2'
|
|
|
|