all groups > dotnet jscript > june 2005
I'm so confuuuused.
Posted by Sam Samnah at 6/29/2005 4:04:41 PM
I get the folling error message:
"Microsoft JScript runtime error:'null' is null or not an object"
the error is referring to the following script:
"function moveCurser(divMenu, hidMenu)
{
var i;
var j;
i=document.getElementById(divMenu);
j=document.getElementById(hidMenu);
j... more >>
Converting String to double
Posted by SergioT at 6/23/2005 6:39:27 PM
Hi
I got this:
var x;
x=0.0;
x = document.Form1.elements['txtNumber'].value;
document.Form1.elements['txtDouble'].value= 2 * x ;
But I always got "NaN" how can I convert a string into a double???
thanks
... more >>
Permission Denied Error
Posted by Robert Manookian at 6/22/2005 6:12:26 PM
Getting error attempting to open notepad.exe from html page. Invoking
JavaScript below:
<script LANGUAGE="JavaScript">
function OpenAppFile()
{
var oShell = new ActiveXObject("Shell.Application");
oShell.ShellExecute("notepad.exe", "", "c:\\Windows\\System32");
}
</script>
... more >>
How to set focus after return a value
Posted by ad at 6/18/2005 12:00:00 AM
I have a javascript function :myFunction, that will take this as parameter
and fill this a value
The useage of myFucntion is like:
<asp:TextBox ID="TextBox1" runat="server"
onclick="myFunction(this);"></asp:TextBox>
But after it return a value to TextBox1, I want to set the focus on TextBox1... more >>
Printing with jscript
Posted by SergioT at 6/16/2005 4:33:15 PM
Hi
I need to build a function that be able to print do you have any example???
How can I send some text to printer, I don't wanna send the whole html page
to the printer only a few lines that are not visible on the html page
thaks
... more >>
emualte a main() function
Posted by miffy900 at 6/16/2005 12:00:00 AM
Is there any way to emualte a main() function like in C#? Im writing a
tracker program to recrod down information from stuff spewed out from
another program i wrote in managed C++ and C#. I need to find a way to
manipulate the console arguments without using the environment class,s ince
its... more >>
How can I separate string into a string array
Posted by ad at 6/15/2005 12:00:00 AM
I have a string like
myString='Tiger,Rabbit,Wolf';
How can I separate this string by comma into a string array?
... more >>
javascript events
Posted by e_yossi at 6/7/2005 8:03:03 AM
can i cause an event to raise from the code (without doing anything) ?
say something like:
<script language="javascript">
function foo()
{
if(...)
raise an event.
}
</script>
thanks.
... more >>
Don't see what you're looking for? Search DevelopmentNow.com.
Editor Help
Posted by kishor at 6/7/2005 12:37:13 AM
Hi,
I have a problem of double LF.. can some one will guide me to solve this
problem
I am using following code for my editor. whenever I press enter I get two
lines .. if I press shift + enter I get only one Line . please let me know
what could be a problem
Kishor
Kpise hotmail
I am... more >>
Editor Question
Posted by kishor at 6/7/2005 12:20:01 AM
Hi,
I have a java script Editor I mean a RTF kind of editor, which is coded
using JavaScript.
This kind of editor is available on hotmail.com or India times.com
I have a small problem with it whenever I type some content in that control
and press enter for next line I get double Line spacing ... more >>
Please help : Add value to dropdownlist using the javascript
Posted by ritskits NO[at]SPAM yahoo.com at 6/6/2005 7:40:14 PM
I have the dropdownlist that is populated when the form is loaded.
I have the button that opens search child window using the
modalwindowdialog and it returns the value that I want to add to the
dropdownlist on the parent window using the javascript as there will
not be any event fired when the ... more >>
How to get the querystring value by using javascript ?
Posted by Kylin at 6/6/2005 12:00:00 AM
as you see that there is a URL like http://localhost/web/index.aspx?tab=1
how can I get the tab's value by using javascript ?
any function in javascript ?
or I must write a function by myself ?
--
FireCrow Studio
Kylin Garden
QQ:462042991
MSN:GaoTianpu@hotmail.com
ICQ:156134382
... more >>
|