Posts
 
Reputation
Joined
Last Seen
Ranked #4K
Strength to Increase Rep
+0
Strength to Decrease Rep
-0
78% Quality Score
Upvotes Received
3
Posts with Upvotes
2
Upvoting Members
3
Downvotes Received
1
Posts with Downvotes
1
Downvoting Members
1
2 Commented Posts
0 Endorsements
~2K People Reached
Favorite Forums
Favorite Tags
c++ x 16

9 Posted Topics

Member Avatar for sodha125

Try this [CODE] #include <iostream> #include <string> #include <cstring> using namespace std; void stringout(); string input; int main() { cout << "Input a string of characters: " ; cin >> input; cout << "You entered: " << input << endl; stringout(); return 0; } void stringout() { char ch; int …

Member Avatar for KasmIR
0
201
Member Avatar for cangan

Hii, I had an application which suffers from crazy scrollbars. When textboxes are loaded with some array elements their scrollbars scrolls towards to the bottom of the boxxes.So the multiline textboxes looks as if they are empty !!! However, when i open an empty project to see if this situation …

0
112
Member Avatar for cangan

Hi list, Three functions use the following items vector. Where/how should i put the vector to make this possible ? Any reference to related sources will be appreciated. [CODE] vector< vector<int> > items ( 6, vector<int> ( 6 ) ); [/CODE] P.S I tried to make it static but it …

Member Avatar for cangan
0
124
Member Avatar for cangan

Hi, i am adding a few lines to the multiline textBox in a Windows forms Clr application. However each and every time the vertical scrollbar goes to the bottom. How/Can it be stopped ?? [CODE] textBox1->AppendText(array[i]); [/CODE]

Member Avatar for thines01
0
160
Member Avatar for LeaguePlayer

Sorry about the following syntax but you can solve it by this way : int freightId [] = { 1721, 1722, 1723, 1724, 1725, ...} actually means freightId[0]= 1721 freightId[1]= 1722 freightId[2]= 1723 .... Therefore assign your function results into another array . For ex: fnc_results[0] = 500 fnc_results[1] = …

Member Avatar for cangan
0
239
Member Avatar for cangan

Hi people, I need to change return type of a function. So function should return array values.In here, data type of the array values are not int,char or double. The data type of the array values are a kind of custom type. So confused. Please help:scared::idea::( [CODE] [COLOR="Red"]void [/COLOR]DataType_Class::insert_rowData_into_array() { …

Member Avatar for cangan
0
258
Member Avatar for cangan

Hi all, I just need the array type of Person object. So it will be an array object. Please some help. [CODE] void SomeOtherFunction() { MyDataType ^Person = gcnew MyDataType(); // simple Person object (C++/CLI) } [/CODE]

Member Avatar for cangan
0
326
Member Avatar for cangan

Hi gang, I've created an object array from a managed class. [CODE] array<MyDataType_Class^> ^Object = gcnew array <MyDataType_Class^> (3); Object[1] = gcnew MyDataType_Class; Object[1]->id = 1; Object[1]->surnmame = "Formen"; TextBox1->AppendText(ConvertToString(Object[1]->surname)); // Outputs "Formen" + [/CODE] The object works well and outputs expected results. However what i need is : [U]Calling …

Member Avatar for cangan
0
279
Member Avatar for cangan

Hi all, I've created an object array from a managed class. [CODE] array<MyDataType_Class^> ^Object = gcnew array <MyDataType_Class^> (3); Object[1] = gcnew MyDataType_Class; Object[1]->id = 1; Object[1]->surnmame = "Foo"; TextBox1->AppendText(ConvertToString(Object[1]->surname)); // Outputs "Foo" [/CODE] The object works well and outputs expected results. However what i need is : [U]Calling or …

Member Avatar for zeroliken
0
157

The End.