20 Most Recent ArcMedia JavaScript Source Code 3000 Pro (gar448) for PC - Page 5 Questions & Answers

0helpful
1answer

How to block ctrl+c and ctrl+v in opera:java code

function noCTRL(e)
{
var code = (document.all) ? event.keyCode:e.which;
var ctrl = (document.all) ? event.ctrlKey:e.modifiers & Event.CONTROL_MASK;
var msg = "Sorry, this functionality is disabled.";
if (document.all)
{
if (ctrl && code==86) //CTRL+V
{
alert(msg);
window.event.returnValue = false;
}
else if (ctrl && code==67) //CTRL+C (Copy)
{
alert(msg);
window.event.returnValue = false;
}
}
else {
if (ctrl==2) //CTRL key
{
alert(msg);
return false;
}
}
}
2/6/2009 12:14:46 PM • ArcMedia... • Answered on Feb 06, 2009
0helpful
2answers

Java/j2ee source code

See this web site it will help for you

http://www.academictutorials.com/
2/4/2009 5:30:46 AM • ArcMedia... • Answered on Feb 04, 2009
0helpful
1answer

Factorial

Function to calculate factorial would be:

function fact(n){
if (n<=1) return 1;
return fact(n-1);
}

or nonrecursive

function factnr(n)
var f=1;
for(i=n;i>1;i--) f=f*i;
return f;
}

In both cases n must be an integer

2/3/2009 6:13:57 PM • ArcMedia... • Answered on Feb 03, 2009
0helpful
1answer

Can u please send me

here it is. check the example available to see if it suits your needs.
follow the instructions and it will display in your web page.
you can

http://www.java-scripts.net/javascripts/Calendar-Popup.phtml
1/26/2009 3:30:37 PM • ArcMedia... • Answered on Jan 26, 2009
0helpful
1answer

English grammar

Suman likes to read OR sleep when she is free.
1/14/2009 1:40:03 PM • ArcMedia... • Answered on Jan 14, 2009
0helpful
1answer

To print the square root of all the numbers from 1 to 25

#include<stdio.h>
#include<conio.h>
#include<math.h>
void main()
{
int a;
printf("enter no");
scanf("%d",&n);
printf("sqr(n.0.5)");
}
1/12/2009 5:20:03 PM • ArcMedia... • Answered on Jan 12, 2009
0helpful
2answers

Source code for word count

Haha, i wrote one of thee a while ago for a competition. You need to us e the char at function mate :D
Inside a for loop
Ill havea look for you though :D
1/8/2009 1:38:28 PM • ArcMedia... • Answered on Jan 08, 2009
0helpful
1answer

Program in c++

how can i make a program of resume using Visual c++?
12/10/2008 1:08:20 AM • ArcMedia... • Answered on Dec 10, 2008
0helpful
1answer

How to create addon for internet explorer

Same window
11/19/2008 6:17:32 AM • ArcMedia... • Answered on Nov 19, 2008
0helpful
1answer

Student library record






Import java.awt;
Import java.applet;
class Book extends Applet
{ String book name="Handbook";
int Book no=50;
int d.o.s=” ”;}
Type ur required body content here.
}
public static void main(String args[])

{
}

/*<applet code=”book” height=500 width=500 ></applet>
this appears to go beyond the scope of troubleshooting



















10/1/2008 6:02:20 PM • ArcMedia... • Answered on Oct 01, 2008
0helpful
1answer

Javascript

You may go to the link below and download javascript

www.java.com/getjava/

If you need further assistance please contact me
9/28/2008 8:15:36 PM • ArcMedia... • Answered on Sep 28, 2008
0helpful
2answers

Help me to insert a java script

what is javascript of a button ceating in flash
8/13/2008 8:13:14 PM • ArcMedia... • Answered on Aug 13, 2008
0helpful
1answer

Auto-Delete in just one click

You need to use the FileSystemObject of the Scripting Runtime library. See here. This library is not part of the standard VB references by default so remember you will have to find it in the "References" list and check it so that it is added to your project; it is under "References" as "Microsoft Scripting Runtime Library". However bear in mind that calls to delete files from a VB app are high-level requests to the O/S, not direct kernel commands. If you have any kind of file lock contention you won't be able to delete a given file.

The best way to blast an entire drive would be use the DOS 'format' command. You cannot run 'format' though on the system drive, and it will take longer to format a drive than to erase all files, though formatting will really do it. You would use the Shell command in VB to execute the DOS command.

See here and here.

You can also use the Shell command to execute the "del" DOS command recursively against the drive. The FileSystemObject is basically doing that under the covers, so it's not too far away. Finally, you can use API code to do it, though I am guessing you are not quite there yet in your experience. But if so, take a look at these articles:

http://allapi.mentalis.org/vbtutor/iapi2.shtml
http://www.devarticles.com/c/a/Visual-Basic/Accessing-the-Windows-API-in-Visual-Basic/2/
4/1/2008 10:19:17 PM • ArcMedia... • Answered on Apr 01, 2008
0helpful
3answers

Which PC game is your favorite and Why?

Apex Legends is my favorite game for now. It's really cool. If you will try it, you will be able to find out why:) I am doing my best to get to this list https://apexstat.net/leaderboards.
8/29/2026 9:22:18 AM • Computers &... • Answered on Aug 29, 2026
0helpful
2answers

How do you test a converter/charger 7400 series 7440 model to see if it works?

First check the input voltage/fuse, then measure the charger's DC output with a multimeter and compare it with the 7440's rated output. If the voltage is correct and stable, the unit is likely working.
8/28/2026 8:57:39 AM • Computers &... • Answered on Aug 28, 2026
0helpful
3answers

What is SEO and how does it work for websites?

SEO (Search Engine Optimization) is the process of improving a website so it appears higher in Google and other search engine results. It helps websites get more visitors organically without paid ads. SEO includes optimizing content, keywords, website speed, backlinks, and mobile friendliness to improve rankings and visibility online.
8/9/2026 2:48:03 PM • Computers &... • Answered on Aug 09, 2026
0helpful
1answer

How much does my shares worth up to now

To check your share value you need 2 things: 1. The company name of the shares 2. How many shares you own Then check current price on Yahoo Finance or Google Finance. Formula: Current Price x Number of Shares = Total Value If you tell me the company name, I can check the current price for you.
8/4/2026 9:58:53 AM • Computers &... • Answered on Aug 04, 2026
0helpful
1answer

What document required for gst registration?

For GST registration you will need these documents: 1. PAN Card of business/owner 2. Aadhaar Card 3. Address Proof like Electricity Bill 4. Bank Account Statement 5. Business Registration Certificate 6. Passport size photo You can apply online at gst.gov.in. Let me know if you need help with the process.
8/4/2026 9:50:13 AM • Computers &... • Answered on Aug 04, 2026
0helpful
1answer

I want to open showmax on my tv using wifi ethernet

Step 1: Connect your TV to WiFi or Ethernet cable. Go to TV Settings > Network > Connect to your home WiFi or plug in Ethernet cable. Step 2: Download the Showmax app from your TV's app store. On Smart TV go to Apps > Search "Showmax" > Install. Step 3: Open Showmax app and Login with your email and password. If you don't have account, sign up on showmax.com first. Step 4: Once logged in, you can stream Showmax on your TV using WiFi or Ethernet. Make sure internet speed is at least 5 Mbps for HD. Let me know your TV brand if you need exact steps.
8/4/2026 9:30:55 AM • Computers &... • Answered on Aug 04, 2026
Not finding what you are looking for?
ArcMedia JavaScript Source Code 3000 Pro (gar448) for PC Logo

129 questions posted

Ask a Question

Usually answered in minutes!

Top ArcMedia Computers & Internet Experts

Rob Hill
Rob Hill

Level 3 Expert

1483 Answers

Anonymous

Level 2 Expert

214 Answers

Dax Estorioso
Dax Estorioso

Level 2 Expert

162 Answers

Are you an ArcMedia Computer and Internet Expert? Answer questions, earn points and help others

Answer questions

Manuals & User Guides

View Most Popular

ArcMedia Computers & Internet

  • ArcMedia Computers & Internet

Most Popular Question

java not working

  • Computers & Internet
Loading...