--- In cprogramming2@yahoogroups.com, "Marvin Hunkin" <startrekcafe@...> wrote:
>
> hi.
> how do i associate a variable of string called name;
> and then read the contents.
> developed a application with a gui form.
> where you enter any name, and then the text box.
> then click display.
> and then you see the name in the console window.
> only have done it with my name.
> but if i try to do it with any other name.
> does not change.
> so how to do this.
> also did a another gui project.
> how can i adshort cuts in a gui form, like text boxes, radio buttons,
> buttons, etc.
> cheers Marvin. keyboard d
>
Use tab order in the View menu
Create the shortcut key in label box . when u press the shotcut key next tab
order control will be focused
My English is very bad pls don't mistake me
hi.
how do i associate a variable of string called name;
and then read the contents.
developed a application with a gui form.
where you enter any name, and then the text box.
then click display.
and then you see the name in the console window.
only have done it with my name.
but if i try to do it with any other name.
does not change.
so how to do this.
also did a another gui project.
how can i adshort cuts in a gui form, like text boxes, radio buttons,
buttons, etc.
cheers Marvin. keyboard d
I have the following assignment in my one class for the week and a major part of
my grade for the term. I have to interview someone that works within the
Programming field. I was wondering if I could interview a professional
programmer from within this group. I will except interviews with several people
and choose the best one.
The project is due next Tuesday. Any assistance will be highly appreciated.
Thank You
James A Gauntner
Interview questions:
1. What is your title?
2. What are your responsibilities?
3. What kinds of skills do you need to perform your job?
4. Describe what you do during a typical day.
5. What other jobs have you held that might have helped prepare you for this
position?
6. Do you have people who work for you, and what do they do?
7. What is one of the most challenging things about the work you do?
8. What time management tips could you suggest?
9. How do you balance your family, job, work, and leisure time?
10. What advice would you give to someone interested in this career?
Additional information shared, or other interviewer notes (not required):
They usually have categories specifically for positions specifically in the computer field
Good Luck! Kiandra
Kiandra Plummer Internet Research & Marketing Professional Email: kpsourcerqueen@... Let's Stay Connected http://www.linkedin.com/in/kiandra
From: Paul Herring <pauljherring@...> To: cprogramming2@yahoogroups.com Sent: Sun, November 22, 2009 7:02:42 PM Subject: Re: [C Programming] Re: Work from Home opportunity
On Sun, Nov 22, 2009 at 10:44 PM, the_black_angel13
<the_black_angel13@ yahoo.com> wrote:
>
> Is there any proof this is real? I'm a student and would be great but I've never actually seen a work at home program thats real.
Sorry that I haven't seen this stupid spam message early enough.
I have removed this person from the forum and will continue to do so in the
future.
These spam posts are the reason why I've set every new member of this board to
Moderated status. Sad to see that sometimes I miss one or the other. Sorry for
that.
Regards,
Nico
Sad to say these are generally just spams. I tend to be wary of any who ignore
the lists topics lie that. You're more likely to end up with even more spam
by replying to it and prob more virii sent your way. You'll note there's no
mention of the company looking to hire. That's so you can't check up on it
James
On Monday 23 November 2009 08:44:34 the_black_angel13 wrote:
> Is there any proof this is real? I'm a student and would be great but I've
> never actually seen a work at home program thats real.
>
> --- In cprogramming2@yahoogroups.com, anil_jupiter <no_reply@...> wrote:
> > Work from Home opportunity...........Only for serious people .....
> >
> > Ideal for Homemakers, students or people with spare time in day .....
> >
> > Please complete this form
> >
> > http://spreadsheets.google.com/viewform?formkey=dE5ET3l5eW5rS3RsQUdNUzF1Z
> >GVST1E6MA
Is there any proof this is real? I'm a student and would be great but I've never
actually seen a work at home program thats real.
--- In cprogramming2@yahoogroups.com, anil_jupiter <no_reply@...> wrote:
>
> Work from Home opportunity...........Only for serious people .....
>
> Ideal for Homemakers, students or people with spare time in day .....
>
> Please complete this form
>
>
http://spreadsheets.google.com/viewform?formkey=dE5ET3l5eW5rS3RsQUdNUzF1ZGVST1E6\
MA
>
I am not able to understand the output of following C program :
unsigned char x; x = 300; printf("%d",x);
int x,y; x = 5; y = 10; printf("%d\t%d\t%d\t%d\t",x++,y++,++x,++y);
Following is the C++ Program giving error:
#include<iostream> using namespace std;
class furniture { protected: char *color; int width, height; };
class shelf:public furniture { int no_of_shelves; public: shelf(char *c, int w, int h, int s) { color = c; width =
w; height = h; no_of_shelves = s; }
void print() { cout << "Colour is: " << color << endl; cout << "Width is: " << width << endl; cout << "Heigth is: " << height << endl; cout << "No of Shelves is: " << no_of_shelves << endl; }
};
int main() { char *col; int width, height, no_of_shelf; cout << "Enter the colour of Shelf: "; cin >> col; cout << "Enter the
width of shelf: "; cin >> width; cout << "Enter the heigth of shelf: "; cin >> height; cout << "Enter the number of shelf: "; cin >> no_of_shelf;
Hi,
I am not able to understand the output of the following:
unsigned char x;
x = 300;
printf("%d",x);
int x,y;
x = 5;
y = 10;
printf("%d\t%d\t%d\t%d\t",x++,y++,++x,++y);
void printdata() { cout << "The title is: " << title << endl; }
};
class sales {
protected:
float *no_of_three_months_sales[3];
public: void getdata() { cout << "Enter the sales of three months: "; for(int i=0; i < 3; i++) cin >> no_of_three_months_sales[i]; }
void printdata() { for(int i=0; i < 3; i++) cout << "The sales for " << i + 1 << "month is " << no_of_three_months_sales[i] << endl; }
};
class book:public publisher, sales { float price; int pages;
public: void getdata() {
publisher::getdata(); cout << "Enter the price of book: "; cin >> price; cout << "Enter the no. of pages: "; cin >> pages; sales::getdata(); }
void printdata() { publisher::printdata(); cout << "The price of the book is: " << price << endl; cout << "The no. of pages is: " << pages << endl; sales::printdata(); } };
class tape:public publisher, sales { float
time; float price;
public: void getdata() { publisher::getdata(); cout << "Enter the playing time: "; cin >> time; cout << "Enter the price of the tape: "; cin >> price; sales::getdata(); }
void printdata() { publisher::printdata(); cout << "The playing is: " << time << endl; cout << "The price of the tape is: " << price << endl;
sales::printdata(); }
};
int main() { book b; tape t; b.getdata(); t.getdata(); b.printdata(); t.printdata();
On Sun, 2009-11-15 at 16:38 -0800, Rob Keister wrote:
>
> Well there you go. As a newbie it didn't occur to me that of course
> there would multi-lingual programmers.
> On Nov 12, 2009, at 6:18 AM, cprogramming2@yahoogroups.com wrote:
>
> > On Sun, Nov 8, 2009 at 8:04 PM, rskeister <rkeister@...>
> > wrote:
> > > Hello Group!
> > >
> > > I was wondering what the breakdown of the group members is
> > regarding using c versus c++?
> > > Just a ballpark figure. c/c++. 50/50? 90/10?
> > 10/90? 1/99? 99/1?
> >
> > You appear to be missing the group that uses both.
> >
> > > I also am a devoted Mac person, but am starting to think that c++
> > is not a good choice for the Mac.
> >
> > I'm sure modern versions of FruitOS come with gcc.
>
>
Actually, the example you provided does show both.
c/c++ -> 50/50 -> uses c 50% of the time and c++ 50% of the time
c/c++ -> 90/10 -> 90% 10%
c/c++ -> 10/90 -> 10% 90%
reid
On Sun, Nov 8, 2009 at 8:04 PM, rskeister <rkeister@zippnet.net> wrote: > Hello Group! > > I was wondering what the breakdown of the group members is regarding using c versus c++? > Just a ballpark figure. c/c++. 50/50? 90/10? 10/90? 1/99? 99/1?
You appear to be missing the group that uses both.
> I also am a devoted Mac person, but am starting to think that c++ is not a good choice for the Mac.
I'm sure modern versions of FruitOS come with gcc.
On some groups you can create a poll but I don't see how to do it here. Right
now I use C for embedded and C++ and C# (these 2 for consumer apps) and VB for
my own utilities.
BasicPoke
--- In cprogramming2@yahoogroups.com, "rskeister" <rkeister@...> wrote:
>
> Hello Group!
>
> I was wondering what the breakdown of the group members is regarding using c
versus c++?
> Just a ballpark figure. c/c++. 50/50? 90/10? 10/90? 1/99?
99/1?
>
> I am learning c++. strictly recreational. I am most familiar with BASIC, but
figured it's time to learn something used in this century. I am using "C++
Primer Plus" (Stephen Prata) as a text.
>
> I also am a devoted Mac person, but am starting to think that c++ is not a
good choice for the Mac.
>
> Rob Keister
> ____________________________________
> Can vegetarians eat animal crackers?
>
I have a programming project that i need help with. I have to do the C program
then dram the flowchart. I have already done the program but i have problem
doing the flowchart can someone help me
--- On Tue, 10/11/09, kumraki <kumraki@...> wrote:
From: kumraki <kumraki@...> Subject: [C Programming] XOR the bits in a word To: cprogramming2@yahoogroups.com Date: Tuesday, 10 November, 2009, 1:01 PM
Hi Folks,
I need some help in XOR the bits in a byte 8 bits.
flag bit = b1 xor b2 xor b3 xor b4 xor b5 xor b6 xor b7 xor b8
I want to do this with minimal operations in C.
thanks.
Add whatever you love to the Yahoo! India homepage. Try now!
On Sun, 2009-11-08 at 20:04 +0000, rskeister wrote:
>
> Hello Group!
>
> I was wondering what the breakdown of the group members is regarding
> using c versus c++?
> Just a ballpark figure. c/c++. 50/50? 90/10? 10/90? 1/99? 99/1?
>
> I am learning c++. strictly recreational. I am most familiar with
> BASIC, but figured it's time to learn something used in this century.
> I am using "C++ Primer Plus" (Stephen Prata) as a text.
>
> I also am a devoted Mac person, but am starting to think that c++ is
> not a good choice for the Mac.
>
I do a lot of C, I do no C++.
Mac -> native is mostly Objective-C I think.
I imagine that if Apple's compiler doesn't handle C, that gcc would be
available for OSX.
http://developer.apple.com/mac/library/documentation/cocoa/Conceptual/ObjectiveC\
/Introduction/introObjectiveC.html
The Objective-C language is a simple computer language designed to
enable sophisticated object-oriented programming. Objective-C is defined
as a small but powerful set of extensions to the standard ANSI C
language. Its additions to C are mostly based on Smalltalk, one of the
first object-oriented programming languages. Objective-C is designed to
give C full object-oriented programming capabilities, and to do so in a
simple and straightforward way.
On Sun, Nov 8, 2009 at 8:04 PM, rskeister <rkeister@...> wrote:
> Hello Group!
>
> I was wondering what the breakdown of the group members is regarding using c
versus c++?
> Just a ballpark figure. c/c++. 50/50? 90/10? 10/90? 1/99?
99/1?
You appear to be missing the group that uses both.
> I also am a devoted Mac person, but am starting to think that c++ is not a
good choice for the Mac.
I'm sure modern versions of FruitOS come with gcc.
--
PJH
http://shabbleland.myminicity.com/http://www.chavgangs.com/register.php?referer=9375http://www.kongregate.com/?referrer=Shabble
Hello Group!
I was wondering what the breakdown of the group members is regarding using c
versus c++?
Just a ballpark figure. c/c++. 50/50? 90/10? 10/90? 1/99?
99/1?
I am learning c++. strictly recreational. I am most familiar with BASIC, but
figured it's time to learn something used in this century. I am using "C++
Primer Plus" (Stephen Prata) as a text.
I also am a devoted Mac person, but am starting to think that c++ is not a good
choice for the Mac.
Rob Keister
____________________________________
Can vegetarians eat animal crackers?