Posts
 
Reputation
Joined
Last Seen
0 Reputation Points
Unknown Quality Score

No one has voted on any posts yet. Votes from other community members are used to determine a member's reputation amongst their peers.

0 Endorsements
~236 People Reached
Favorite Forums
Favorite Tags
Member Avatar for lola_fcis

i was make aproject with desktop application and make the form but i cant to connect the form with my code thanx

Member Avatar for Stefano Mtangoo
0
73
Member Avatar for lola_fcis

i want to know how connect a microsoft access using java and i want how to call this data base thanx:)

Member Avatar for jwenting
0
86
Member Avatar for lola_fcis

[code]void Delete(TreeNode* tree, ItemType item) { if (item.ComparedTo (tree->info)==LESS) Delete(tree->left, item); else if (item.ComparedTo( tree->info)==GREATER) Delete(tree->right, item); else DeleteNode(tree); // Node found } void GetPredecessor(TreeNode* tree, ItemType& data) // Sets data to the info member of the right-most node in tree. { while (tree->right != NULL) tree = tree->right; data …

Member Avatar for Narue
0
77