No one has voted on any posts yet. Votes from other community members are used to determine a member's reputation amongst their peers.
2 Posted Topics
Greetings... I am trying to get a 2-d vector filled with a records form a dataset. this is what I have: [code] int StudentNum = 1, rflds; TDataSet *Students = DSet; String stu; rflds = Students->FieldCount; //Number of fields in the dataset vector< vector<String> > dataset(Students->RecordCount, vector<String>()); while (StudentNum <= …
simply define your variables on form1 and then redefine then with the extern parameter on form2. like this... <form1> int kids = 2, dogs = 1; <form2> extern int kids; extern int dogs; Label1->Caption = IntToStr(dogs); Label2->Caption = IntToStr(kids); That should solve your issue in BCB2006 [URL="http://www.sscnet.ucla.edu/geog/gessler/borland/windows.htm"]http://www.sscnet.ucla.edu/geog/gessler/borland/windows.htm[/URL] Also if you …
The End.
MrGobroski