Click here to Skip to main content
15,900,378 members
Home / Discussions / Managed C++/CLI
   

Managed C++/CLI

 
GeneralExecuting Application Pin
Rich Wright24-Dec-04 4:51
Rich Wright24-Dec-04 4:51 
GeneralRe: Executing Application Pin
Christian Graus5-Jan-05 11:47
protectorChristian Graus5-Jan-05 11:47 
GeneralHelp required on clustering Pin
proteas20-Dec-04 0:01
proteas20-Dec-04 0:01 
GeneralManaged .NET DLL with c++ Pin
BeerFizz19-Dec-04 7:04
BeerFizz19-Dec-04 7:04 
GeneralRe: Managed .NET DLL with c++ Pin
ursus zeta21-Dec-04 12:33
ursus zeta21-Dec-04 12:33 
GeneralRe: Managed .NET DLL from UnManaged c++ Pin
BeerFizz24-Dec-04 0:45
BeerFizz24-Dec-04 0:45 
GeneralSorry, Holidays. Pin
ursus zeta4-Jan-05 12:47
ursus zeta4-Jan-05 12:47 
Generaldeclaring arrays in function (please help) Pin
Toximus19-Dec-04 6:06
Toximus19-Dec-04 6:06 
The following code compiles fine with Linux g++ compiler but in Visual .Net
generates errors: C2057: expected constant expression

void Sample2(int lenght)
{
char tab[lenght+1]; //C2057
}

void Sample(int lenght)
{
const int size = lenght+1;
char tab[size]; //C2057 ???
}

Is it imposible to declare arrays in function without using new opperator?

Toximus
GeneralRe: declaring arrays in function (please help) Pin
Christian Graus20-Dec-04 9:31
protectorChristian Graus20-Dec-04 9:31 
Generalwant the source code of this riddle! Pin
babur khan18-Dec-04 22:03
babur khan18-Dec-04 22:03 
GeneralRe: want the source code of this riddle! Pin
SteveKing27-Dec-04 5:56
SteveKing27-Dec-04 5:56 
GeneralNetwork related Pin
Rawshid18-Dec-04 20:24
Rawshid18-Dec-04 20:24 
Generalsingle words Pin
Johny Smith18-Dec-04 8:14
Johny Smith18-Dec-04 8:14 
GeneralCombo box item - using variable values Pin
Rich Wright16-Dec-04 22:24
Rich Wright16-Dec-04 22:24 
GeneralNET syntax takes some getting used to Pin
ursus zeta18-Dec-04 11:06
ursus zeta18-Dec-04 11:06 
GeneralRe: NET syntax takes some getting used to Pin
Rich Wright24-Dec-04 4:15
Rich Wright24-Dec-04 4:15 
GeneralC++ and Oracle Pin
jithen_dt16-Dec-04 20:17
jithen_dt16-Dec-04 20:17 
GeneralRe: C++ and Oracle Pin
Christian Graus17-Dec-04 19:38
protectorChristian Graus17-Dec-04 19:38 
GeneralConverting int to Hex String Pin
MKlucher16-Dec-04 8:49
MKlucher16-Dec-04 8:49 
GeneralRe: Converting int to Hex String Pin
wwwhb200016-Dec-04 17:11
wwwhb200016-Dec-04 17:11 
GeneralRe: Converting int to Hex String Pin
VKatti17-Dec-04 2:18
VKatti17-Dec-04 2:18 
GeneralRe: Converting int to Hex String Pin
MKlucher17-Dec-04 20:32
MKlucher17-Dec-04 20:32 
GeneralRe: Converting int to Hex String Pin
wb18-Dec-04 9:41
wb18-Dec-04 9:41 
GeneralRe: Converting int to Hex String Pin
MKlucher19-Dec-04 10:56
MKlucher19-Dec-04 10:56 
GeneralRe: Converting int to Hex String Pin
S. Senthil Kumar27-Dec-04 7:34
S. Senthil Kumar27-Dec-04 7:34 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.