English Deutsch Français Italiano Español Português 繁體中文 Bahasa Indonesia Tiếng Việt ภาษาไทย
All categories

Programming & Design - March 2007

[Selected]: All categories Computers & Internet Programming & Design

http://www.vidly.net/video-hi-tech-physics-lesson.html
i want to know the name of the program he used..
or a program similar.

2007-03-09 15:34:23 · 3 answers · asked by Mirosui On 1

Im looking for a programming language that will let me create graphical windows applications and has GUI tools to make the programs.

Visual C++ looks appealing. but as a beginner i read that C++ is too complicated and i should first learn an easier language.
I read everywhere that i should learn Python but i am not interested in it anymore because i see all the programs written with python are scripts to be used in a CLI.

Im neither interested in Visual Basic, as any good programmer says it sucks and better stay away.

I read Java is slow...

So what are good options to start learning and jump to C++ in the future after i gain some knowledge and basics of programming?

Thanks!

2007-03-09 14:43:02 · 4 answers · asked by axo 2

how do you write "bold", resize a font, and other things in HTML?

for example, centered font is < c e n t e r > without the spaces. Any help please??

2007-03-09 14:31:54 · 5 answers · asked by GeTtHeExTrAcReDiTcUzIaM2mUcH4yOu 2

I want to publish some java code on my blog with same style as eclipse editor (With proper keyword highlights and indentations) Can someone shed some light on this?. I don't want to create an image of the source and also I don't want spend writing too much html. Just want to copy past somehow.

Example: The following website shows some code which exactly what I want to achieve.
http://www.java2s.com/Code/JavaAPI/java.text/newSimpleDateFormatddMMMyyyyhhmmsszzz.htm

Thanks and appreciate your reply!

2007-03-09 14:26:02 · 2 answers · asked by Muthu 1

2007-03-09 13:30:49 · 3 answers · asked by wisconsins_bad 1

or can i animate another type of file?

2007-03-09 13:19:20 · 2 answers · asked by Anonymous

example..
enter a number: 5

factorial of 5 is::::
1
2
6
24
120

but this codes only displays 120... what is mistake here??

import java.io.*;
public class Factorial
{
// Evaluate n!
public static long factorial( int n )
{
if( n <= 1 ) // base case
return 1;
else
return n * factorial( n - 1 );
}

// Simple test program
public static void main( String [ ] args )throws Exception
{
int num=0;

BufferedReader keith=new BufferedReader(new InputStreamReader(System.in));
System.out.print("Enter a number:");
num=Integer.parseInt(keith.readLine());
System.out.println(factorial(num));

}
}

2007-03-09 13:17:18 · 4 answers · asked by forest 1

I'm clueless when it comes to this stuff

2007-03-09 13:15:47 · 4 answers · asked by Anonymous

log(2) = ln(2)/ln(10)
So, ln(2) = log(2) x ln(10)
or ln(2) = log(2) x 2.303
Just remember this multiplying factor '2.303'.
* For converting ln to log, divide ln(x) by 2.303
* For converting log to ln, multiply log(x) by 2.303
--------
>where's that 2.303 came from?
>kindly explain further. tnx
:D

2007-03-09 13:10:47 · 2 answers · asked by nem24 1

Due to legal requirements I have to number the lines in a document with two digits. I found no way of doing that in OpenOffice,org. What I would like is to have a template that I could reuse every time I write a new document.

2007-03-09 13:06:54 · 2 answers · asked by Paulo A 1

myspace graffics

2007-03-09 12:59:29 · 3 answers · asked by L B 1

I have some basic idea about programming. Im interested in learning one. I used to code a little ASP web applications long time ago.

C++ looks very attractive to me after reading about different programming languages but looks like it is so difficult that someone would start writing useful stuff after at least 2 years of studying it.

So python is one of the recommended ones for a beginner. But here is my concern.
If Python and C++ are different languages then why learning the easier one would be a step so later it becomes easier to learn the other?
I mean.. if they have different ways to write the code, then why it becomes easier in the future to learn the more complex one? How much code do they have in common so you can jump to the other in a better position than if you would be learning C++ from the beginning?
"The syntax C++ is more difficult than Python" ok.. but i would have to learn the new syntax anyway when i decide to make the jump, right?. So whats the point?

2007-03-09 12:58:36 · 12 answers · asked by axo 2

I have been unable to access the website for the television program The View. Please give me the website address. Thanks.

2007-03-09 12:34:41 · 3 answers · asked by Anonymous

I have a new computer, and the pictures on one web site wont work they show a little red x, ive tried the microsoft support and did every thing they said but it still wont work. I have zone alarm pro, but i dont think that would be the problem because every other web site it will show the pictures, and the web is not broken because i can see the pictures on other computers!
the web site is ikfkickboxing.com and the pictures are jpg and my computer accepts those images. I dont know what to do please help!!

2007-03-09 12:33:11 · 3 answers · asked by Nick A 2

I d like to use HTL Codes in my forum, not use the italics, and bold options I want to be able to watch videos play music, center images, align them etc.
Is there a Mode for that and if so where can I get them?

2007-03-09 12:32:56 · 1 answers · asked by Anonymous

If you are using either:

doctument.getElementByID(id).innerHTML

or

document.write

and you need to write something that has both single and double quotes, such as:

2007-03-09 12:24:41 · 2 answers · asked by Anonymous

Developing a database to capture data from a form, where some fields will require visitors to enter essays several pages in length. What's the largest field size for TEXT in MySQL?

2007-03-09 12:11:56 · 3 answers · asked by Mirza Hakimi 1

Write pseudocode to represent the logic of a program that allows the user to enter three values. The first value represents the base salary of an employee who works on commission, the second represents the employee's total sales for this pay period, and the third represents the percentage of sales that the employee earns as a commission. The program multiplies the total sales by the commission rate to get the employee's commission. Then the program adds the commission to the base salary to get the employee's gross pay. The program prints the gross pay.

2007-03-09 12:03:29 · 1 answers · asked by Anonymous

For the life of me, I can't figure this out. I'm trying to link a picture inside of a div, and though the picture shows up, it isn't linked. Even stranger is if i take out the picture disappears.

Please help! (also note that I've changed the code to hide the website)


2007-03-09 11:49:57 · 2 answers · asked by holodoctor1 2

I'm trying to build a television tuner application in VB. I found a MSDN article telling how it's done. They say I need to set a reference to the MS Video Control and Microsoft Tuner. I found the Video Control, but my copy of Windows XP doesn't have the Microsoft Tuner. I've updated my system to SP1 and still nothing.

Please help.

2007-03-09 11:39:25 · 1 answers · asked by blue_prince_of_dallas 2

the site myspace i want to cretea one something like it

2007-03-09 11:33:18 · 4 answers · asked by angelina81777 1

I'm using Excel VBA and I wanted to paste some of my code into yahoo questions. However, when I paste it it into the add details part of the question it looks correct, but then when I preview it I see "..." for longer lines of the text. How can I correct this?

Here's an example:

Public Function ErrorVlookup(zlookupvalue, zrange, zColumnIndex, zLogic) As Single
Dim zVar As String

zVar = WorksheetFunction.vlookup(zlookupvalue, zrange, zColumnIndex, zLogic)

If IsError(zVar) Then ErrorVlookup = 0 Else ErrorVlookup = zVar

End Function

2007-03-09 11:14:19 · 3 answers · asked by jcueland 1

To set my computer to the new time change coming this Sunday Mar. 11, 2007

2007-03-09 11:11:22 · 2 answers · asked by Anonymous

i have to save a file as .gif to upload it on a site and paint makes the pics quality bad

2007-03-09 11:02:14 · 6 answers · asked by Anonymous

how can i host my own domain, i know about yahoo domain godaddy e.t.c but is there any way i can register my own domain for free somehow. how the hell yahoo godaddy register.com and all of them how right to sell domain.. does it cost them??

2007-03-09 10:04:09 · 2 answers · asked by Ma_d3si 1

i want to right a formula that substracts the left cell from the above cell. For example if the active cell is c4, i want the formula to be =c3-a4, the cell above minus the cell to the left. I know I can just do =c3-a4 but is it possible to do something like =[cell above]-[cell left]? is there some special variable to refer to cell above and cell to the left? in this way i can set it up for the entire column

2007-03-09 09:57:59 · 5 answers · asked by Mentiso 3

I want to make a button on a webpage that lets visitors click and edit text on the page. I was thinking of using javascript but was thinking that it wouldn't stay as a permanent change.

Right now I am designing an access database and I am looking at converting it into SQL format. But I was wondering if there was an easier way to do it.

I am new to this stuff, so still learning as I go.

2007-03-09 09:56:04 · 3 answers · asked by Akini 2

I have one context menu and in one of the sub menus i have created a Background Color button. The Background Color button will display the color dialog box and will change the backcolor of the selected text box only. I got it all set up but when i debug it, all the text boxes change to the same color. How do I make it where only the selected text box changes color??


Also im am useing the Microsoft Visual Studios program.

2007-03-09 09:53:55 · 2 answers · asked by refuse2lose_2006 3

With music and a background please answer!!
-

2007-03-09 09:50:20 · 5 answers · asked by Y!A is BACK! 2

fedest.com, questions and answers