Posts
 
Reputation
Joined
Last Seen
0 Reputation Points
100% Quality Score
Upvotes Received
8
Posts with Upvotes
8
Upvoting Members
1
Downvotes Received
0
Posts with Downvotes
0
Downvoting Members
0
~3K People Reached
About Me

IT intern

Interests
pc gaming, sports
Favorite Tags

14 Posted Topics

Member Avatar for hoosier23

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? [CODE] MessageBox.Show("Name:", BName, MessageBoxButtons.OK, MessageBoxIcon.Information) [/CODE] When I run this, BName does not show the name. BName is a name from a textBox BName.

Member Avatar for Rakesh jack
0
546
Member Avatar for hoosier23

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 (MSOffice, Acrobat, WinZip etc.) to install. When compiling the program, what code can I use that will insert a time …

Member Avatar for Gopher2011
0
697
Member Avatar for hoosier23

I'm having trouble reversing a string. Me thinks I've stared at this too long. [CODE] Private Sub btnReverse_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles btnReverse.Click Dim strOrgText As String Dim strRevText As String Dim array As Array strOrgText = Me.txtTheString.Text array = strOrgText.ToCharArray() strRevText = array.Reverse 'Here is …

Member Avatar for mhovidz
0
209
Member Avatar for hoosier23

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 cost option, how would I go about doing that? I have heard …

Member Avatar for iamthwee
0
102
Member Avatar for hoosier23

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 someone please help? [code] #include <iostream> using namespace::std; int V; struct node { int v; …

Member Avatar for hoosier23
0
352
Member Avatar for hoosier23

If I were to overload the subscript operator, aka '[]', it would probably look something like this: [code] int &operator[](int); [/code] If I filled this array with 10 digits.. 1.2.3.4, etc... How could I return the largest digit, and then the next largest digit? etc... I'm not sure if a …

Member Avatar for iamthwee
0
190
Member Avatar for saqib

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.

Member Avatar for saqib
0
282
Member Avatar for hoosier23

any idea what i am doing wrong? [quote] Error 3 error LNK2001: unresolved external symbol "private: static float SavingsAccount::annualInterestRate" (?annualInterestRate@SavingsAccount@@0MA) Savings.obj [/quote] SavingsAccount.h [code] #ifndef SAVINGSACCOUNT1_H #define SAVINGSACCOUNT1_H using namespace std; class SavingsAccount { private: static float annualInterestRate; float savingsBalance; public: SavingsAccount() { annualInterestRate = 0.03; savingsBalance= 2000; } float …

Member Avatar for Salem
1
189
Member Avatar for hoosier23

This is a simple Rectangle calculator that uses classes. Ok, so I keep getting errors like. [quote] Error 1 error C2660: 'rectangle::getLength' : function does not take 0 arguments Error 2 error C2660: 'rectangle::getWidth' : function does not take 0 arguments Error 3 error C2660: 'rectangle::getLength' : function does not …

Member Avatar for hoosier23
0
366
Member Avatar for hoosier23

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 [CODE]#ifndef PLAYER_H #define PLAYER_H using namespace std; class player { private: char* name; int bankroll = …

Member Avatar for iamthwee
1
171
Member Avatar for skwalker112
Member Avatar for FireSBurnsmuP
1
136
Member Avatar for hoosier23

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? [CODE]#include <iostream> using namespace::std; int main() { char thedeck[13]={'2','3','4','5','6','7','8','9','0','J','Q','K','A'}; char deck[260]; for (int i=0;i<20;i++) { for (int j=0;j<13;j++) { thedeck[j]; } } …

Member Avatar for iamthwee
1
125
Member Avatar for hoosier23

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. to breeze through and automate the stupid installation wizards. The macro program that I use creates an .exe …

0
78
Member Avatar for hoosier23

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. to breeze through and automate the stupid installation wizards. The macro program that I use creates an .exe …

0
28

The End.