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

well i have been working on my program and i have some books on c++ and stuff.


I have made my program but the button dos not work and i put the Functional code in but it did not work.

i want my program to Generate random letters and numbers
a-z and 0 - 9

its a Random Key Generator ( 4 numbers and 14 letters )

e.g : 1GEN-6HKE-8IJC-0FOE

my program ( without the Functional code my program works fine but the button and the text boxes dos notting lol)

so can you help me make my code or do you have some tips or links i can have ect


note:

My program has no Functional code for the button to make A key code Generator coz the Funcitonal codes in my college books dont work lol + i tryed to edit it to get it to work.

2007-03-23 16:34:09 · 4 answers · asked by lonewolfy92 1

When they say that a good program has good architechture, what exactly do they mean.

I know about .NET and classes and object oriented technology, but before I write code, what makes the program have a good design and well thought out architechture?

Is it breaking up the program into the right classes, having the right access levels for class member, having the right interfaces and public function signatures? All the above? Anything else?

2007-03-23 16:18:50 · 2 answers · asked by michmounty 2

what is the best web site that you can edit pictures for free....

2007-03-23 16:17:19 · 4 answers · asked by Anonymous

The actual Error I received is

" ERROR 1064 (00000) at line 21: You have an error in your SQL syntax. Check the manual that corresponds to your MySQL server version for the right syntax to use near 'DEFAULT CHARSET=latin1' at line 15"

From what research I have done it seems I need to re-save the .sql file to be compatible with version 5. However this was a server switch and I no longer have access to the original host account this message board was on.

So it seems I need a SSH? server to upload and execute a dump that included a compatibility change. However .. I don't know where I can Go to do this or how to go about it. Can some one Please help me solve this problem?!

This is a message board I have had for a while and I do not want to loose the members already signed up for it, nor do I want to loose their posts.

2007-03-23 16:09:42 · 3 answers · asked by xvijadedragonivx 1

How to design a generic test plan that describes the testing for an imaginary system?

I have never done this before and have no clue how to design one and I have no clue where to start or how to start one. Please help.

2007-03-23 15:33:34 · 3 answers · asked by mohotbabe 2

He has played on the WPT.

2007-03-23 15:21:57 · 3 answers · asked by Ralphie 1

i need helps in creating hyperlink for my assignment but the problem is that i dont have any basic knowledge in creating websites and i dont have any idea on how to create one.
Please explain to me on how to create a hyperlink.
I want to create hyperlink that link to another page that i've created.
Im using microsoft frontpage 2003 ( dont ask why im using this, i got it from my friends)
can anyone please send me any links that teach us on how to create hyperlink?
Thanks!
I really need help here because the deadline is around the corner.

2007-03-23 15:15:10 · 2 answers · asked by Dark SOuL 2

i want to know if there is a REAL myspace tracker not those stupid things that people post everywhere and it actually doesn't work so u wasted time.

2007-03-23 15:10:42 · 3 answers · asked by Anonymous

Ok I have downloaded a file (screensavers) and I put them in My Documents the file is ziped whatever that means, now I want to get them to open and use them for screen savers or pictures on my computer how do you do that?? I know I'm a dum dum with computers!! Pleeeze Helllppp meee! Step by step instuctions please.

2007-03-23 14:51:57 · 7 answers · asked by classyladyonly 2

Ok I need to know a software that teaches you how to learn Html. I dont want like any like dreamweaver kind of software..Only softwares that teach html.

2007-03-23 14:49:22 · 3 answers · asked by Man0fWzdom 3

I know how to make a clickable link, but how do you make it a different color, Centered, and a bigger font all at the same time?

2007-03-23 14:42:18 · 6 answers · asked by Anonymous

so i could put them into codes and on my site
any websites wheere i could do that?

2007-03-23 14:23:50 · 2 answers · asked by hrrrrrrlhghglhghgghbhgb 1

Account
-balance: double
+getBalance(): double
+charge(sale: double): void
+makePayment(payment: double) : void
+printStatement(): void
+Account()

a. Use the class above to write a few lines of code that will create a new
account, with a zero balance (this is what the default constructor will do).
b. Charge three sales to your account created in a) for $25.13, $43.98, and
$5.00.
c. Make a $50 payment to your account in a).
d. Print out a statement for your account in a) if the account has a balance of
over $1.

2007-03-23 14:17:18 · 3 answers · asked by Anonymous

Like turn a whole movie into just alot of pics.? Please help me with this!

2007-03-23 14:13:51 · 1 answers · asked by Ana Semphrey 2

In term of learning curve what field should I start learning??
Programming ASP.NET with C#?? Or Learning Linux administration? What matters for me is the time frame to learn these technologies??

2007-03-23 14:03:48 · 3 answers · asked by Roland 1

What is the value in result at the end of execution of each of these lines of
code? Each part is independent.
int x = 5;
int y = 7;
int z = 9;
int result = 0;

a. if (x < y)
result = z;

b. if (x==y)
result = z;
else
result = y;

c. if (z < x && x != y)
result = x;

d. if (z < x || x != y)
result = x;

e. if ( ! ( z >= x && y ==z)
result = x;

2007-03-23 14:01:31 · 2 answers · asked by Anonymous

its ment to have the user input a fraction and return simplified or mixed fraction.


#include
using namespace std;

void mixedFraction (int w, int n, int d);

void main ()
{
int w = -1, n = -1,d = -1;

mixedFraction ( w, n, d );
cout << w << n << '/' << d << endl;

mixedFraction (w, n, d );
cout << w << n << '/' << d << endl;

mixedFraction (w, n, d );
cout << w << n << '/' << d << endl;

mixedFraction (w, n, d );
cout << w << n << '/' << d << endl;

return;
}



void mixedFraction (int w, int n, int d)
{
cout << "Enter numerator";
cin >> n;
cout << "Enter denominator";
cin >> d;

cout << "Enter whole number";
cin >> w;

int wholeNumber = 0;
cin >> w;

cout << "Enter numerrator (>= 0)";
cin >> n;

cout << "Enter denominator";
cin >> d;

}

2007-03-23 13:43:19 · 2 answers · asked by Peter G 1

Using a database is faster than manually searching for information?

2007-03-23 13:29:18 · 3 answers · asked by Anonymous

Im still a bit confused about the (=) and the (==) can somebody help out.

2007-03-23 13:09:40 · 4 answers · asked by Anonymous

2007-03-23 13:07:25 · 4 answers · asked by dtiplov 2

hi

i have two work sheets on my excel system, one of them is for customer information entry, and other one is to save information there. i designled entry work sheet like a form and it has a save button , when i press save button i want the information on the cells to go to my customer worksheet , is there a way to do this without VBA

thank you

2007-03-23 12:44:10 · 3 answers · asked by Anonymous

Server Error in '/' Application.
Runtime Error
Description: An application error occurred on the server. The current custom error settings for this application prevent the details of the application error from being viewed remotely (for security reasons). It could, however, be viewed by browsers running on the local server machine.
Details: To enable the details of this specific error message to be viewable on remote machines, please create a tag within a "web.config" configuration file located in the root directory of the current web application. This tag should then have its "mode" attribute set to "Off".





Notes: The current error page you are seeing can be replaced by a custom error page by modifying the "defaultRedirect" attribute of the application's configuration tag to point to a custome

this is exactly it!

2007-03-23 12:43:48 · 6 answers · asked by Killacam 3

2007-03-23 12:36:32 · 3 answers · asked by Anonymous

Using Java 5., can I write a program in which I would input a word and it would search dictionary.com and give me the definition of the word and the part of speech. I would like to know how to do so either in a program or in peices, ie what needs to be imported becuase I might do a little work too.

2007-03-23 12:20:06 · 3 answers · asked by mikeduptwo 6

I am designing it for a Baptist association, so it is informational more than commercial. I have already designed one but it's two years old so... it's getting a little old already. I would like to know tips from fellow webmasters. What is some advice for successfully designing a easy-to-navigate, quick-to-load, and overall INTERACTIVE website. Please limit yourself to using HTML, CSS, Javascript, and some Flash. Thanks in advance.

2007-03-23 12:19:47 · 4 answers · asked by Siervocal 4

How do I find out the url for one of MY pictures??

I'm curious.

Thanks

2007-03-23 12:07:55 · 2 answers · asked by Anonymous

It's a computer question

2007-03-23 12:02:52 · 1 answers · asked by jennyfurr1985 3

pp only accepts AVI and Mpeg but I cant find anything on blackberry and even when I find a clip with avi it just looks like text and shows nothing. How can i down load a clip to my computer and then put it into my presentation?

2007-03-23 11:56:20 · 2 answers · asked by JUDAS RAGE 4

I am writing form information to an access database. This information is sensitive and I do not want it to get out on the web. If my .mdb file is in the /fpdb folder in my webspace can someone else access it? The way I get it is just through ftp. I want the info to be safe.

2007-03-23 11:41:46 · 1 answers · asked by Hambone 2

fedest.com, questions and answers