Forum: VB.NET Apr 23rd, 2007 |
| Replies: 4 Views: 7,323 |
Forum: VB.NET Apr 22nd, 2007 |
| Replies: 4 Views: 7,323 I'm having trouble reversing a string. Me thinks I've stared at this too long.
Private Sub btnReverse_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles... |
Forum: VB.NET Jan 31st, 2007 |
| Replies: 7 Views: 4,029 I found the syntax.
MessageBox.Show("Name: " & BName)
Sorry iamthwee, you were right.
I had a comma after "Name: " that was throwing me off!!!!!! |
Forum: VB.NET Jan 29th, 2007 |
| Replies: 7 Views: 4,029 The & operator is used for string concatenation. And the & operator would work in the instance you show it in for C languages, not VB.NET:-| |
Forum: VB.NET Jan 29th, 2007 |
| Replies: 7 Views: 4,029 I'm retarded and can't find this on the net.
How do I pass data that i've stored in a variable via a textbox into a MessageBox?
MessageBox.Show("Name:", BName, MessageBoxButtons.OK,... |
Forum: VB.NET Jan 25th, 2007 |
| Replies: 1 Views: 1,056 I have a spreadsheet that has many rows and columns of data. Also, 20 fields need to be evaluated with around 15 variables. If I were to create a program that filters this data and finds the lowest... |
Forum: C++ Nov 16th, 2006 |
| Replies: 3 Views: 1,652 That defines the problem to a "T". Thanks Ancient Dragon. |
Forum: C++ Nov 15th, 2006 |
| Replies: 3 Views: 1,652 This program is supposed to show the adjacency lists that are built given the input pairs::
0-2, 1-4, 2-5, 3-6, 0-4, 6-0, and 1-3
I am having trouble with the syntax of my code. Could... |
Forum: C++ Oct 6th, 2006 |
| Replies: 7 Views: 2,887 Yes, it has been explicity stated that I must overload this operator so... definitionally, the operator must be a member function, because [] is being used.
Maybe it would look like this?
... |
Forum: C++ Oct 6th, 2006 |
| Replies: 7 Views: 2,887 i don't see that their response has anything to do with overloading operators |
Forum: C++ Oct 6th, 2006 |
| Replies: 7 Views: 2,887 If I were to overload the subscript operator, aka '[]', it would probably look something like this:
int &operator[](int);
If I filled this array with 10 digits.. 1.2.3.4, etc... How could I... |
Forum: C++ Sep 29th, 2006 |
| Replies: 5 Views: 2,658 I had to make this static as if it were a fixed interest rate that a person is locked into. What is the logic behind using
float SavingsAccount::annualInterestRate = 0;
right before my main? I... |
Forum: C Sep 29th, 2006 |
| Replies: 10 Views: 2,279 Are you trying to write this program in C or C++? Have you tried to write the program yet? Show us what you have so far. |
Forum: C++ Sep 29th, 2006 |
| Replies: 5 Views: 2,658 any idea what i am doing wrong?
SavingsAccount.h
#ifndef SAVINGSACCOUNT1_H
#define SAVINGSACCOUNT1_H
using namespace std; |
Forum: C++ Sep 29th, 2006 |
| Replies: 6 Views: 4,599 Excellent work. Praise be to andor.
Thanks buddy. Viehlen Danke! |
Forum: C++ Sep 29th, 2006 |
| Replies: 6 Views: 4,599 also.. i have changed the class.h and now receive only 2 errors
does anyone have any suggestions?
#ifndef CLASS_H
#define CLASS_H
using namespace std; |
Forum: C++ Sep 29th, 2006 |
| Replies: 6 Views: 4,599 i believe you can set the data type to zero in this instance, unless my book is wrong...
they have..
class Time {
public:
Time(int = 0, int = 0, int = 0); //default constructor... |
Forum: C++ Sep 29th, 2006 |
| Replies: 6 Views: 4,599 This is a simple Rectangle calculator that uses classes.
Ok, so I keep getting errors like.
What am I not doing?
class.cpp
#include <iostream>
#include "class.h" |
Forum: C++ Sep 23rd, 2006 |
| Replies: 1 Views: 972 i'm very much a newbie, so pardon me if i am breaking programmer ettiquette, but could someone debug this, please? i could use a lift after 8+ hours workin on this...
this is
player.h
... |
Forum: C++ Sep 22nd, 2006 |
| Replies: 3 Views: 1,257 you need
#include <iostream> at the top of your program |
Forum: C++ Sep 22nd, 2006 |
| Replies: 5 Views: 1,576 I tried this, but it does not see to get me anywhere. The code compiles what I like to call "a bunch 'o crapply-ola"
#include <iostream>
using namespace::std;
int main()
{
char... |
Forum: C++ Sep 22nd, 2006 |
| Replies: 5 Views: 1,576 I am trying to create a blackjack deck of cards (blackjack uses five decks... 5*52 = 260) Suit is irrelevant in blackjack.
How do I create my deck?
#include <iostream>
using... |
Forum: Windows NT / 2000 / XP Jun 30th, 2006 |
| Replies: 0 Views: 3,401 I am creating a VB.NET program that will automate several installation programs with the click of one button. In creating the program, I am utilizing macro's to record mouse movements, clicks, etc.... |
Forum: IT Professionals' Lounge Jun 30th, 2006 |
| Replies: 0 Views: 1,576 I am creating a VB.NET program that will automate several installation programs with the click of one button. In creating the program, I am utilizing macro's to record mouse movements, clicks, etc.... |
Forum: VB.NET Jun 13th, 2006 |
| Replies: 4 Views: 18,336 I am creating a program that will install multiple programs, because I build new computer quite often. For example "MyInstallProgram" will launch and allow the user to select which programs... |