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

Managed C++/CLI

 
GeneralRe: DirectX9 with C++.Net Pin
apferreira26-Feb-04 9:43
apferreira26-Feb-04 9:43 
GeneralXML in C++ Pin
adarsh_sebiz24-Feb-04 19:06
adarsh_sebiz24-Feb-04 19:06 
GeneralRe: XML in C++ Pin
Selvam R26-Feb-04 19:57
professionalSelvam R26-Feb-04 19:57 
Generalinstall software from remote system to client without user interaction Pin
jillellamudi23-Feb-04 19:21
jillellamudi23-Feb-04 19:21 
GeneralWhy it is very slow to start a application with VS.net Pin
wg2620-Feb-04 9:22
wg2620-Feb-04 9:22 
GeneralRe: Why it is very slow to start a application with VS.net Pin
jillellamudi23-Feb-04 19:26
jillellamudi23-Feb-04 19:26 
Generalarray size of 4294967296 Pin
lyn19-Feb-04 19:36
lyn19-Feb-04 19:36 
GeneralRe: array size of 4294967296 Pin
Russell Morris1-Mar-04 11:46
Russell Morris1-Mar-04 11:46 
lyn wrote:
how to declare array to the size of 2 to the power of 32 (4294967296)? if it's not possible, how to make the max array size to 65535? eg:

char input[65535][65535];



How about:

char *input = malloc(sizeof(char) * 4294967296);


BTW:

Unless your computer has 4 gigabytes of RAM, you'll really need to redesign your data input code Smile | :)

--
Russell Morris

"So, broccoli, mother says you're good for me... but I'm afraid I'm no good for you!" - Stewy
GeneralHelp please, with TextOut fonts Pin
GrahamRounce17-Feb-04 2:02
GrahamRounce17-Feb-04 2:02 
Generalconversion form String type to int type Pin
adarsh_sebiz16-Feb-04 21:23
adarsh_sebiz16-Feb-04 21:23 
GeneralRe: conversion form String type to int type Pin
bollwerj19-Feb-04 3:26
bollwerj19-Feb-04 3:26 
Generalerror MIDL2025: syntax error, please help! Pin
adarsh_sebiz16-Feb-04 19:39
adarsh_sebiz16-Feb-04 19:39 
GeneralMCppCodeDomParser Error...cant graphically edit form Pin
FocusedWolf15-Feb-04 16:18
FocusedWolf15-Feb-04 16:18 
Generalinfinite loop Pin
4ize14-Feb-04 10:50
4ize14-Feb-04 10:50 
GeneralRe: infinite loop Pin
leppie14-Feb-04 20:06
leppie14-Feb-04 20:06 
QuestionHow can I read a number from a text file? Pin
chinaskf14-Feb-04 4:01
chinaskf14-Feb-04 4:01 
GeneralXML SAX in C++ Pin
adarsh_sebiz13-Feb-04 18:01
adarsh_sebiz13-Feb-04 18:01 
GeneralRe: XML SAX in C++ Pin
Ravi Bhavnani13-Feb-04 18:06
professionalRavi Bhavnani13-Feb-04 18:06 
Generalhelp me Pin
don7cry13-Feb-04 16:59
don7cry13-Feb-04 16:59 
QuestionAnyway to make code auto-format like it does in c#, and a few other c# formatting things? Pin
FocusedWolf13-Feb-04 16:19
FocusedWolf13-Feb-04 16:19 
GeneralReading/Writing file probs Pin
Tank_Aviator11-Feb-04 8:45
Tank_Aviator11-Feb-04 8:45 
GeneralRe: Reading/Writing file probs Pin
dj_oden14-Feb-04 1:05
dj_oden14-Feb-04 1:05 
GeneralRe: Reading/Writing file probs Pin
Nik Vogiatzis18-Feb-04 16:52
Nik Vogiatzis18-Feb-04 16:52 
GeneralRe: Reading/Writing file probs Pin
Nik Vogiatzis19-Feb-04 12:44
Nik Vogiatzis19-Feb-04 12:44 
GeneralCalling Convention Trouble Pin
Pazzuzu10-Feb-04 23:54
Pazzuzu10-Feb-04 23:54 

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.