Posts
 
Reputation
Joined
Last Seen
Ranked #4K
Strength to Increase Rep
+4
Strength to Decrease Rep
-1
100% Quality Score
Upvotes Received
2
Posts with Upvotes
2
Upvoting Members
2
Downvotes Received
0
Posts with Downvotes
0
Downvoting Members
0
2 Commented Posts
~1K People Reached
Favorite Tags
Member Avatar for schmidty169

I've tried various things to get the datagrids to update. If I close the application and reload it then I see the changes to the database. If I do a transactions I don't see them until I reload it. This is where I currently left off. [code] bank_Account_DatabaseDataSet.GetChanges(); bank_Account_DatabaseDataSet.Savings.AcceptChanges(); this.savingsTableAdapter.Fill(this.bank_Account_DatabaseDataSet.Savings); …

Member Avatar for schmidty169
0
129
Member Avatar for schmidty169

Here are my parameters to follow: Every Account at the bank keeps track of a balance. In addition, each Account allows users to deposit and withdraw money. Accounts are subdivided into: SavingsAccount. This type of account has an interest rate associated with it. This rate is used at the end …

Member Avatar for schmidty169
0
263
Member Avatar for schmidty169

This is for a school project: write a GUI application that will generate multiple 3 digit numbers and count how many times each 3 digit number appears. To make the program more useful, provide the following: A label that displays the 10 most common 3 digit numbers and the number …

Member Avatar for LizR
0
104
Member Avatar for chriscox

Hi, Can anyone tell me how to change a thumbnail image into a large image on another part of the page just by a mouseover of the small image, rather than clicking the image for a larger one. Can I do this using tables? Many thanks from a Dreamweaver inadequate.

Member Avatar for stealthmode
0
153
Member Avatar for schmidty169

Ok here is my question. I had a school project where we had to build a website in Flash. So I built this site at purplefrogit.com (I bought the domain name cause I have asperations of some day starting my own business) That whole site is all contained in on …

Member Avatar for GreenDay2001
0
77
Member Avatar for schmidty169

This is what I have to do [COLOR=black][COLOR=black][COLOR=black]We will initialize the tree by hard coding the values illustrated below. You will need to write, test and execute a driver program that will use the complete binary tree implementation. [/COLOR][/COLOR][/COLOR] [COLOR=black][COLOR=black][COLOR=black]// this will initialize the tree node values treenodes[0]=5; treenodes[1]=10; treenodes[2]=2; …

Member Avatar for schmidty169
0
535
Member Avatar for schmidty169

I'm getting error C2109: subscript requires array or pointer type [code]// CPP btree.cpp : Defines the entry point for the console application. // #include "stdafx.h" class TreeNode { public: TreeNode(string str): data(str), left(NULL), right(NULL) {} // Constructor. Make a node containing str. string data; // The data in this node. …

Member Avatar for schmidty169
0
161