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

i want to download foxpro database (not visual) for windows for free .give me good links plzz
i will give you 10 points

2007-03-14 22:48:20 · 2 answers · asked by parashaan 1

As far as i know to become linux programmer we should learn linux programming.Perl, PHP, Phython, Ruby.
But what actually is linux programming.what we should leran in this? Now a days any one using Perl. Is it worth to learn. Give a good info and provide some excellent books on all these topics.

2007-03-14 22:39:02 · 3 answers · asked by Girish G 1

2007-03-14 22:36:05 · 1 answers · asked by roselleetta 1

what will be the php in another 10 years??

2007-03-14 22:20:22 · 1 answers · asked by Kandavel M 1

According ANSI/Iso C99 standard it includes 24-25 header files.I'm aware about all those header files and the functions in thsoe files. But i don't know ANSI/ISO C++ 97 standard contains how many header files.According go ANSI standard( Not related to any compiler specific.)Can any one of u provide a list of all ANSI/ISO C99 standard header files.And suggest me a compiler which supports this standard.If u know any book which explains functions in all these header files.

2007-03-14 22:16:03 · 1 answers · asked by Girish G 1

Im a yr 12 student doing an assignment on VB. I have a text box for people to type things into and then they click on a command button to save it as a variable. What do i need to do to save it when they press enter instead of haveing to click the command button? Something to do with ASCCI enter?

2007-03-14 22:15:25 · 3 answers · asked by B-rad 3

my purpose is to find out if a key word or phrase is frequently used by users in the web's major search engines.

2007-03-14 22:14:46 · 1 answers · asked by LT54 1

People,
Can anyone provide me with a tutorial that i can use to study Macromedia Flash? the tutorial provided by the program is too detailed to give someone like me who is new to the program a good, simple and basic introduction to the programme.

2007-03-14 22:08:44 · 4 answers · asked by Anonymous

Enter/return button. Can any1 tel me the ASCII number for it plz?

2007-03-14 21:59:07 · 6 answers · asked by B-rad 3

The website is http://tsa-clan.co.nr

2007-03-14 21:47:23 · 4 answers · asked by death_taru1 3

plzzzzzzz provide the site name

2007-03-14 21:30:05 · 9 answers · asked by love4u_virus 1

I want to know is there any other way so that we can run java programs without installing java software... i came to know that if we have class libraries then we can run java programs in the e editor. Is any one there who can help me out plz. thanks

2007-03-14 21:17:18 · 7 answers · asked by sudheer k 2

i have a presentation on marketing,it should be anything ,,it is on microsoft power point,,,i m confuse about to select the topic on which i have to present,,,can anyone help me,,and if you have ready made power point slide lease sent it to me by mail....thnx

2007-03-14 20:26:29 · 9 answers · asked by Anonymous

i want the java source code for super marke(project)t......
plz give me if anybody have it................

2007-03-14 20:26:23 · 4 answers · asked by shannu 2

Lets say you are doing a count on people in the different categories of their district. Districts are from 1 to 22. How would you code it (VB). I know you have to set array to 0, but when counting the people in each group, what statement would be needed. take for instance: num cenDistrict, num citizen
num count[23] all =0
mainloop()
count[district] = count[district] + 1 I am hoping this statement is counting the districts

finishup()

count = 1
while count <=22 then
print count, count[district]
count = count + 1

My question: am I counting citizens in any of these statements

2007-03-14 20:04:05 · 1 answers · asked by Anastacia 2

I have got my product, and want that it is only executable on some specific machine, how can i do that, any hint.

2007-03-14 20:02:12 · 2 answers · asked by Mushi 1

2007-03-14 19:59:52 · 1 answers · asked by puneeth m 1

value should be displayed as soon as form is loaded,
Front-end JSP,java
Back-End MS Access

2007-03-14 19:27:53 · 3 answers · asked by ritu s 1

Create an interger array called 'final and initialize with elements {10,20,30,40,50,60,70.80,90,100,.Display the Total, Product and Average of 3rd, 6th and 9th element of the final array.

2007-03-14 18:50:04 · 2 answers · asked by Steven B 1

0

In the following lines of C# code what are the values of all variables at the end (after all 7 lines of code are executed)?

int a, b, c, d ;
d = - 6 ;
a = 3* 4+ 2 ;
b = 3 + 4* 5;
c = (3+4) * 5 ;
c = a + b ;
d = - d ;

2007-03-14 17:40:55 · 1 answers · asked by TheOne 1

I'm not used to using character values in my loops. For some reason it goes a little while. It may not be infinite, I never waited long.

#include
#include

using namespace std;

char builder_name[35];
char choice;

void add_builder()
{

while(choice != 'N' || choice != 'n')
{

ofstream builders;
builders.open ("builders.txt", ios::app);

cout << " Enter the name of a builder: ";
cin.get(builder_name, 35);
cin.ignore();

builders << builder_name << endl;

builders.close();

cout << " Would you like to add another builder? (enter (Y) or (N): ";
cin >> choice;

};

}

int main ()
{

add_builder();

return 0;

}

2007-03-14 17:40:54 · 4 answers · asked by blueice_1820 2

1

How do I solve this program????I tried a lot but was unsuccessful....could anybody solve it for me??

PROGRAM:Read odd numbers into an array till the user enters 0.Store all prime numbers in "prime" array and non-prime numbers in a separate array.Display the total number of numbers and prime numbers entered.

2007-03-14 17:34:54 · 3 answers · asked by kri91-16 2

Full code , simple needed please help

2007-03-14 17:02:44 · 3 answers · asked by jayapen 1

2007-03-14 16:19:50 · 2 answers · asked by sunil s 1

In my program there r 6 text boxes for subject scores and 6 labels to display grades for the scores.

eg txtMaths for Maths score and lblMaths for maths grade etc

In the program I only want the user to be able to input numbers between 0 and 100 inclusive.Else an error message appears.I have the following code that works fairly well

Private Sub txtMaths_Change()

On Error Resume Next
If CInt(txtMaths)<0 Then txtMaths = " "
If CInt(txtMaths)>100 Then txtMaths =" "

Select Case CInt(txtmaths)
Case 0 To 39:lblMaths="D"
etc
End select
End Sub.

My questions are
1.How do I get the error sg to appear
2. How EXACTLY can I get this code repeated for the otrher subjects without typing it for each subject? .
What about a control array and a loop ? will that work?
Can you give me the code to do this.

2007-03-14 16:17:54 · 3 answers · asked by candy 1

2007-03-14 16:09:17 · 1 answers · asked by Andrew 4

I am trying to run a simple program and I've installed Borland C++ compiler for free on my computer. The code is supposed to simply write Hello World, on the screen in the command prompt box. The book I have tells me to type in bcc32 hello.cpp into the command prompt box to run the program, but I get the error message. It recognizes the bcc32 command, but then runs the E2194 message. I had to change the path in environment variables first since the bcc32 was not recognized at first, but after changing the path, this works. I have also created the two necessary text files bcc32.cfg and ilink32.cfg. The path is c:\Borland\Bcc55\Bin. I have the hello.cpp program in what I think is the right spot, but it seems to not be able to find it. Can anyone help me. I need to know how to tell the computer or program where to "look" for this file.

2007-03-14 15:59:10 · 1 answers · asked by Mtech 3

2007-03-14 15:44:25 · 3 answers · asked by najee 1

fedest.com, questions and answers