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
~8K People Reached
Favorite Forums
Favorite Tags
Member Avatar for edcaryl

Hi, Does anyone have some good examples of ADO.NET code that demonstrates a coded connection to SQL Server such that bound controls bind to retrieve and update data. Thanks

Member Avatar for vinod_10
0
7K
Member Avatar for xcorpionxting

I am building a program requiring making some classes with inheritance. I can't seem to be able to access the members of the class objects. My code looks like this: [CODE]#include <iostream.h> #include <stdlib.h> #include <time.h> class Animal{ public: int number; int legs; Animal(){ number = rand()%9; } }; class …

Member Avatar for xcorpionxting
0
173
Member Avatar for xcorpionxting

I'm working on a small C++ project that requires using classes. I'm supposed to create a super class Animal and the sub classes Fish, Bird and Insect. In the main function, the object of type animal is created. I need that object to 'become' one of the 3 other types …

Member Avatar for xcorpionxting
0
197
Member Avatar for xcorpionxting

I am working on a vb windows form application with several connected forms. Its used to manipulate a MySQL database. One of the sub-forms has the following code snippet: [CODE] 1 myCommand.Connection = conn 2 myCommand.CommandText = SQL1 3 myAdapter.SelectCommand = myCommand 4 myAdapter.Fill(myData1) 5 ComboBox4.DataSource = myData1 6 ComboBox4.DisplayMember …

0
63
Member Avatar for xcorpionxting

I am having a small problem... I can connect to a local MySql Database using: [CODE]SQLConn.ConnectionString = "Data Source=servername;" & _ "Initial Catalog=databasename;" & _ "User ID=username;" & _ "Password=userpassword;" [/CODE] Where servername is "localhost". I need to make a connection to an online database (same data structure). What should …

Member Avatar for xcorpionxting
0
89
Member Avatar for xcorpionxting

I need to write a function in C++ that does the following: -Reads an audio file as input (preferably in Mp3 format). -Calculates the average frequency (Hz) and the tempo (bpm) of that file. -Stores the average frequency and tempo for future use. Any idea on how to write such …

Member Avatar for Nick Evan
0
151